Class: Aws::DataExchange::Types::ImportAssetsFromS3RequestDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::ImportAssetsFromS3RequestDetails
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
Note:
When making an API call, you may pass ImportAssetsFromS3RequestDetails data as a hash:
{
asset_sources: [ # required
{
bucket: "__string", # required
key: "__string", # required
},
],
data_set_id: "Id", # required
revision_id: "Id", # required
}
Details of the operation to be performed by the job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_sources ⇒ Array<Types::AssetSourceEntry>
Is a list of S3 bucket and object key pairs.
-
#data_set_id ⇒ String
The unique identifier for the data set associated with this import job.
-
#revision_id ⇒ String
The unique identifier for the revision associated with this import request.
Instance Attribute Details
#asset_sources ⇒ Array<Types::AssetSourceEntry>
Is a list of S3 bucket and object key pairs.
2050 2051 2052 2053 2054 2055 2056 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 2050 class ImportAssetsFromS3RequestDetails < Struct.new( :asset_sources, :data_set_id, :revision_id) SENSITIVE = [] include Aws::Structure end |
#data_set_id ⇒ String
The unique identifier for the data set associated with this import job.
2050 2051 2052 2053 2054 2055 2056 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 2050 class ImportAssetsFromS3RequestDetails < Struct.new( :asset_sources, :data_set_id, :revision_id) SENSITIVE = [] include Aws::Structure end |
#revision_id ⇒ String
The unique identifier for the revision associated with this import request.
2050 2051 2052 2053 2054 2055 2056 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 2050 class ImportAssetsFromS3RequestDetails < Struct.new( :asset_sources, :data_set_id, :revision_id) SENSITIVE = [] include Aws::Structure end |