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
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.
3847 3848 3849 3850 3851 3852 3853 3854 |
# File 'lib/aws-sdk-s3/types.rb', line 3847 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.
3847 3848 3849 3850 3851 3852 3853 3854 |
# File 'lib/aws-sdk-s3/types.rb', line 3847 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.
3847 3848 3849 3850 3851 3852 3853 3854 |
# File 'lib/aws-sdk-s3/types.rb', line 3847 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix, :encryption) include Aws::Structure end |
#format ⇒ String
Specifies the output format of the inventory results.
3847 3848 3849 3850 3851 3852 3853 3854 |
# File 'lib/aws-sdk-s3/types.rb', line 3847 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.
3847 3848 3849 3850 3851 3852 3853 3854 |
# File 'lib/aws-sdk-s3/types.rb', line 3847 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix, :encryption) include Aws::Structure end |