You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::S3Control::Types::S3BucketDestination

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing S3BucketDestination as input to an Aws::Client method, you can use a vanilla Hash:

{
  format: "CSV", # required, accepts CSV, Parquet
  output_schema_version: "V_1", # required, accepts V_1
  account_id: "AccountId", # required
  arn: "S3BucketArnString", # required
  prefix: "Prefix",
  encryption: {
    sses3: {
    },
    ssekms: {
      key_id: "SSEKMSKeyId", # required
    },
  },
}

A container for the bucket where the Amazon S3 Storage Lens metrics export files are located.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The account ID of the owner of the S3 Storage Lens metrics export bucket.

Returns:

  • (String)

    The account ID of the owner of the S3 Storage Lens metrics export bucket.

#arnString

The Amazon Resource Name (ARN) of the bucket. This property is read-only and follows the following format: arn:aws:s3:us-east-1:example-account-id:bucket/your-destination-bucket-name

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the bucket.

#encryptionTypes::StorageLensDataExportEncryption

The container for the type encryption of the metrics exports in this bucket.

Returns:

#formatString

Possible values:

  • CSV
  • Parquet

Returns:

  • (String)

#output_schema_versionString

The schema version of the export file.

Possible values:

  • V_1

Returns:

  • (String)

    The schema version of the export file.

#prefixString

The prefix of the destination bucket where the metrics export will be delivered.

Returns:

  • (String)

    The prefix of the destination bucket where the metrics export will be delivered.