Class: Aws::S3::Types::InventoryS3BucketDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::InventoryS3BucketDestination
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass InventoryS3BucketDestination data as a hash:
{
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
-
#account_id ⇒ String
The ID of the account that owns the destination bucket.
-
#bucket ⇒ String
The Amazon resource name (ARN) of the bucket where inventory results will be published.
-
#encryption ⇒ Types::InventoryEncryption
Contains the type of server-side encryption used to encrypt the inventory results.
-
#format ⇒ String
Specifies the output format of the inventory results.
-
#prefix ⇒ String
The prefix that is prepended to all inventory results.
Instance Attribute Details
#account_id ⇒ String
The ID of the account that owns the destination bucket.
4273 4274 4275 4276 4277 4278 4279 4280 |
# File 'lib/aws-sdk-s3/types.rb', line 4273 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix, :encryption) include Aws::Structure end |
#bucket ⇒ String
The Amazon resource name (ARN) of the bucket where inventory results will be published.
4273 4274 4275 4276 4277 4278 4279 4280 |
# File 'lib/aws-sdk-s3/types.rb', line 4273 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix, :encryption) include Aws::Structure end |
#encryption ⇒ Types::InventoryEncryption
Contains the type of server-side encryption used to encrypt the inventory results.
4273 4274 4275 4276 4277 4278 4279 4280 |
# File 'lib/aws-sdk-s3/types.rb', line 4273 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix, :encryption) include Aws::Structure end |
#format ⇒ String
Specifies the output format of the inventory results.
4273 4274 4275 4276 4277 4278 4279 4280 |
# File 'lib/aws-sdk-s3/types.rb', line 4273 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix, :encryption) include Aws::Structure end |
#prefix ⇒ String
The prefix that is prepended to all inventory results.
4273 4274 4275 4276 4277 4278 4279 4280 |
# File 'lib/aws-sdk-s3/types.rb', line 4273 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix, :encryption) include Aws::Structure end |