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",
      },
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#data_exportTypes::StorageClassAnalysisDataExport

A container used to describe how data related to the storage class analysis should be exported.



9487
9488
9489
9490
# File 'lib/aws-sdk-s3/types.rb', line 9487

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