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
prefix: "Prefix",
}
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.
-
#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.
3490 3491 3492 3493 3494 3495 3496 |
# File 'lib/aws-sdk-s3/types.rb', line 3490 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix) include Aws::Structure end |
#bucket ⇒ String
The Amazon resource name (ARN) of the bucket where inventory results will be published.
3490 3491 3492 3493 3494 3495 3496 |
# File 'lib/aws-sdk-s3/types.rb', line 3490 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix) include Aws::Structure end |
#format ⇒ String
Specifies the output format of the inventory results.
3490 3491 3492 3493 3494 3495 3496 |
# File 'lib/aws-sdk-s3/types.rb', line 3490 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix) include Aws::Structure end |
#prefix ⇒ String
The prefix that is prepended to all inventory results.
3490 3491 3492 3493 3494 3495 3496 |
# File 'lib/aws-sdk-s3/types.rb', line 3490 class InventoryS3BucketDestination < Struct.new( :account_id, :bucket, :format, :prefix) include Aws::Structure end |