Class: Aws::S3::Types::InventoryDestination

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

{
  s3_bucket_destination: { # required
    account_id: "AccountId",
    bucket: "BucketName", # required
    format: "CSV", # required, accepts CSV, ORC, Parquet
    prefix: "Prefix",
    encryption: {
      sses3: {
      },
      ssekms: {
        key_id: "SSEKMSKeyId", # required
      },
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucket_destinationTypes::InventoryS3BucketDestination

Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.



4178
4179
4180
4181
# File 'lib/aws-sdk-s3/types.rb', line 4178

class InventoryDestination < Struct.new(
  :s3_bucket_destination)
  include Aws::Structure
end