Class: Aws::S3::Types::AnalyticsExportDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AnalyticsExportDestination
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass AnalyticsExportDestination data as a hash:
{
s3_bucket_destination: { # required
format: "CSV", # required, accepts CSV
bucket_account_id: "AccountId",
bucket: "BucketName", # required
prefix: "Prefix",
},
}
Where to publish the analytics results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket_destination ⇒ Types::AnalyticsS3BucketDestination
A destination signifying output to an S3 bucket.
Instance Attribute Details
#s3_bucket_destination ⇒ Types::AnalyticsS3BucketDestination
A destination signifying output to an S3 bucket.
349 350 351 352 353 |
# File 'lib/aws-sdk-s3/types.rb', line 349 class AnalyticsExportDestination < Struct.new( :s3_bucket_destination) SENSITIVE = [] include Aws::Structure end |