Class: Aws::S3::Types::AnalyticsS3BucketDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AnalyticsS3BucketDestination
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass AnalyticsS3BucketDestination data as a hash:
{
format: "CSV", # required, accepts CSV
bucket_account_id: "AccountId",
bucket: "BucketName", # required
prefix: "Prefix",
}
Contains information about where to publish the analytics results.
Instance Attribute Summary collapse
-
#bucket ⇒ String
The Amazon Resource Name (ARN) of the bucket to which data is exported.
-
#bucket_account_id ⇒ String
The account ID that owns the destination bucket.
-
#format ⇒ String
Specifies the file format used when exporting data to Amazon S3.
-
#prefix ⇒ String
The prefix to use when exporting data.
Instance Attribute Details
#bucket ⇒ String
The Amazon Resource Name (ARN) of the bucket to which data is exported.
408 409 410 411 412 413 414 |
# File 'lib/aws-sdk-s3/types.rb', line 408 class AnalyticsS3BucketDestination < Struct.new( :format, :bucket_account_id, :bucket, :prefix) include Aws::Structure end |
#bucket_account_id ⇒ String
The account ID that owns the destination bucket. If no account ID is provided, the owner will not be validated prior to exporting data.
408 409 410 411 412 413 414 |
# File 'lib/aws-sdk-s3/types.rb', line 408 class AnalyticsS3BucketDestination < Struct.new( :format, :bucket_account_id, :bucket, :prefix) include Aws::Structure end |
#format ⇒ String
Specifies the file format used when exporting data to Amazon S3.
408 409 410 411 412 413 414 |
# File 'lib/aws-sdk-s3/types.rb', line 408 class AnalyticsS3BucketDestination < Struct.new( :format, :bucket_account_id, :bucket, :prefix) include Aws::Structure end |
#prefix ⇒ String
The prefix to use when exporting data. The prefix is prepended to all results.
408 409 410 411 412 413 414 |
# File 'lib/aws-sdk-s3/types.rb', line 408 class AnalyticsS3BucketDestination < Struct.new( :format, :bucket_account_id, :bucket, :prefix) include Aws::Structure end |