Class: Aws::DataExchange::Types::AssetDestinationEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::AssetDestinationEntry
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
Note:
When making an API call, you may pass AssetDestinationEntry data as a hash:
{
asset_id: "Id", # required
bucket: "__string", # required
key: "__string",
}
The destination for the asset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_id ⇒ String
The unique identifier for the asset.
-
#bucket ⇒ String
The S3 bucket that is the destination for the asset.
-
#key ⇒ String
The name of the object in Amazon S3 for the asset.
Instance Attribute Details
#asset_id ⇒ String
The unique identifier for the asset.
136 137 138 139 140 141 142 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 136 class AssetDestinationEntry < Struct.new( :asset_id, :bucket, :key) SENSITIVE = [] include Aws::Structure end |
#bucket ⇒ String
The S3 bucket that is the destination for the asset.
136 137 138 139 140 141 142 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 136 class AssetDestinationEntry < Struct.new( :asset_id, :bucket, :key) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The name of the object in Amazon S3 for the asset.
136 137 138 139 140 141 142 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 136 class AssetDestinationEntry < Struct.new( :asset_id, :bucket, :key) SENSITIVE = [] include Aws::Structure end |