Class: Aws::S3::Types::StorageClassAnalysisDataExport

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

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

Container for data related to the storage class analysis for an Amazon S3 bucket for export.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destinationTypes::AnalyticsExportDestination

The place to store the data for an analysis.



16222
16223
16224
16225
16226
16227
# File 'lib/aws-sdk-s3/types.rb', line 16222

class StorageClassAnalysisDataExport < Struct.new(
  :output_schema_version,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end

#output_schema_versionString

The version of the output schema to use when exporting data. Must be ‘V_1`.

Returns:

  • (String)


16222
16223
16224
16225
16226
16227
# File 'lib/aws-sdk-s3/types.rb', line 16222

class StorageClassAnalysisDataExport < Struct.new(
  :output_schema_version,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end