Class: Aws::S3::Types::InventoryDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::InventoryDestination
- Defined in:
- gems/aws-sdk-s3/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
},
},
},
}
Specifies the inventory configuration for an Amazon S3 bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket_destination ⇒ Types::InventoryS3BucketDestination
Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.
Instance Attribute Details
#s3_bucket_destination ⇒ Types::InventoryS3BucketDestination
Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.
6950 6951 6952 6953 6954 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 6950 class InventoryDestination < Struct.new( :s3_bucket_destination) SENSITIVE = [] include Aws::Structure end |