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

Instance Attribute Summary collapse

Instance Attribute Details

#destinationTypes::AnalyticsExportDestination

The place to store the data for an analysis.



9514
9515
9516
9517
9518
# File 'lib/aws-sdk-s3/types.rb', line 9514

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

#output_schema_versionString

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

Returns:

  • (String)


9514
9515
9516
9517
9518
# File 'lib/aws-sdk-s3/types.rb', line 9514

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