Class: Aws::DataExchange::Types::AssetSourceEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::AssetSourceEntry
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
Note:
When making an API call, you may pass AssetSourceEntry data as a hash:
{
bucket: "__string", # required
key: "__string", # required
}
The source of the assets.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The S3 bucket that's part of the source of the asset.
-
#key ⇒ String
The name of the object in Amazon S3 for the asset.
Instance Attribute Details
#bucket ⇒ String
The S3 bucket that's part of the source of the asset.
261 262 263 264 265 266 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 261 class AssetSourceEntry < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The name of the object in Amazon S3 for the asset.
261 262 263 264 265 266 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 261 class AssetSourceEntry < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |