Class: Aws::S3::Types::AnalyticsS3BucketDestination

Inherits:
Struct
  • Object
show all
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",
}

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The Amazon resource name (ARN) of the bucket to which data is exported.

Returns:

  • (String)


346
347
348
349
350
351
352
# File 'lib/aws-sdk-s3/types.rb', line 346

class AnalyticsS3BucketDestination < Struct.new(
  :format,
  :bucket_account_id,
  :bucket,
  :prefix)
  include Aws::Structure
end

#bucket_account_idString

The account ID that owns the destination bucket. If no account ID is provided, the owner will not be validated prior to exporting data.

Returns:

  • (String)


346
347
348
349
350
351
352
# File 'lib/aws-sdk-s3/types.rb', line 346

class AnalyticsS3BucketDestination < Struct.new(
  :format,
  :bucket_account_id,
  :bucket,
  :prefix)
  include Aws::Structure
end

#formatString

The file format used when exporting data to Amazon S3.

Returns:

  • (String)


346
347
348
349
350
351
352
# File 'lib/aws-sdk-s3/types.rb', line 346

class AnalyticsS3BucketDestination < Struct.new(
  :format,
  :bucket_account_id,
  :bucket,
  :prefix)
  include Aws::Structure
end

#prefixString

The prefix to use when exporting data. The exported data begins with this prefix.

Returns:

  • (String)


346
347
348
349
350
351
352
# File 'lib/aws-sdk-s3/types.rb', line 346

class AnalyticsS3BucketDestination < Struct.new(
  :format,
  :bucket_account_id,
  :bucket,
  :prefix)
  include Aws::Structure
end