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",
},
}
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.
267 268 269 270 |
# File 'lib/aws-sdk-s3/types.rb', line 267 class AnalyticsExportDestination < Struct.new( :s3_bucket_destination) include Aws::Structure end |