Class: Aws::InternetMonitor::Types::S3Config
- Inherits:
-
Struct
- Object
- Struct
- Aws::InternetMonitor::Types::S3Config
- 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
-
#bucket_name ⇒ String
The Amazon S3 bucket name.
-
#bucket_prefix ⇒ String
The Amazon S3 bucket prefix.
-
#log_delivery_status ⇒ String
The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.
Instance Attribute Details
#bucket_name ⇒ String
The Amazon S3 bucket name.
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_prefix ⇒ String
The Amazon S3 bucket prefix.
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_status ⇒ String
The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.
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 |