Class: Aws::InternetMonitor::Types::S3Config

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb

Overview

The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3. The configuration includes the bucket name and (optionally) prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ENABLED or DISABLED, depending on whether you choose to deliver internet measurements to S3 logs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

The Amazon S3 bucket name.

Returns:

  • (String)


1728
1729
1730
1731
1732
1733
1734
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 1728

class S3Config < Struct.new(
  :bucket_name,
  :bucket_prefix,
  :log_delivery_status)
  SENSITIVE = []
  include Aws::Structure
end

#bucket_prefixString

The Amazon S3 bucket prefix.

Returns:

  • (String)


1728
1729
1730
1731
1732
1733
1734
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 1728

class S3Config < Struct.new(
  :bucket_name,
  :bucket_prefix,
  :log_delivery_status)
  SENSITIVE = []
  include Aws::Structure
end

#log_delivery_statusString

The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.

Returns:

  • (String)


1728
1729
1730
1731
1732
1733
1734
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 1728

class S3Config < Struct.new(
  :bucket_name,
  :bucket_prefix,
  :log_delivery_status)
  SENSITIVE = []
  include Aws::Structure
end