Class: Aws::S3::Types::StorageClassAnalysis

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 StorageClassAnalysis data as a hash:

{
  data_export: {
    output_schema_version: "V_1", # required, accepts V_1
    destination: { # required
      s3_bucket_destination: { # required
        format: "CSV", # required, accepts CSV
        bucket_account_id: "AccountId",
        bucket: "BucketName", # required
        prefix: "Prefix",
      },
    },
  },
}

Specifies data related to access patterns to be collected and made available to analyze the tradeoffs between different storage classes for an Amazon S3 bucket.

Instance Attribute Summary collapse

Instance Attribute Details

#data_exportTypes::StorageClassAnalysisDataExport

Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.



12058
12059
12060
12061
# File 'lib/aws-sdk-s3/types.rb', line 12058

class StorageClassAnalysis < Struct.new(
  :data_export)
  include Aws::Structure
end