Class: Aws::DataExchange::Types::RequestDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::RequestDetails
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
Note:
When making an API call, you may pass RequestDetails data as a hash:
{
export_asset_to_signed_url: {
asset_id: "Id", # required
data_set_id: "Id", # required
revision_id: "Id", # required
},
export_assets_to_s3: {
asset_destinations: [ # required
{
asset_id: "Id", # required
bucket: "__string", # required
key: "__string",
},
],
data_set_id: "Id", # required
encryption: {
kms_key_arn: "__string",
type: "aws:kms", # required, accepts aws:kms, AES256
},
revision_id: "Id", # required
},
export_revisions_to_s3: {
data_set_id: "Id", # required
encryption: {
kms_key_arn: "__string",
type: "aws:kms", # required, accepts aws:kms, AES256
},
revision_destinations: [ # required
{
bucket: "__string", # required
key_pattern: "__string",
revision_id: "Id", # required
},
],
},
import_asset_from_signed_url: {
asset_name: "AssetName", # required
data_set_id: "Id", # required
md_5_hash: "__stringMin24Max24PatternAZaZ094AZaZ092AZaZ093", # required
revision_id: "Id", # required
},
import_assets_from_s3: {
asset_sources: [ # required
{
bucket: "__string", # required
key: "__string", # required
},
],
data_set_id: "Id", # required
revision_id: "Id", # required
},
}
The details for the request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#export_asset_to_signed_url ⇒ Types::ExportAssetToSignedUrlRequestDetails
Details about the export to signed URL request.
-
#export_assets_to_s3 ⇒ Types::ExportAssetsToS3RequestDetails
Details about the export to Amazon S3 request.
-
#export_revisions_to_s3 ⇒ Types::ExportRevisionsToS3RequestDetails
Details about the export to Amazon S3 request.
-
#import_asset_from_signed_url ⇒ Types::ImportAssetFromSignedUrlRequestDetails
Details about the import from signed URL request.
-
#import_assets_from_s3 ⇒ Types::ImportAssetsFromS3RequestDetails
Details about the import from Amazon S3 request.
Instance Attribute Details
#export_asset_to_signed_url ⇒ Types::ExportAssetToSignedUrlRequestDetails
Details about the export to signed URL request.
1854 1855 1856 1857 1858 1859 1860 1861 1862 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 1854 class RequestDetails < Struct.new( :export_asset_to_signed_url, :export_assets_to_s3, :export_revisions_to_s3, :import_asset_from_signed_url, :import_assets_from_s3) SENSITIVE = [] include Aws::Structure end |
#export_assets_to_s3 ⇒ Types::ExportAssetsToS3RequestDetails
Details about the export to Amazon S3 request.
1854 1855 1856 1857 1858 1859 1860 1861 1862 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 1854 class RequestDetails < Struct.new( :export_asset_to_signed_url, :export_assets_to_s3, :export_revisions_to_s3, :import_asset_from_signed_url, :import_assets_from_s3) SENSITIVE = [] include Aws::Structure end |
#export_revisions_to_s3 ⇒ Types::ExportRevisionsToS3RequestDetails
Details about the export to Amazon S3 request.
1854 1855 1856 1857 1858 1859 1860 1861 1862 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 1854 class RequestDetails < Struct.new( :export_asset_to_signed_url, :export_assets_to_s3, :export_revisions_to_s3, :import_asset_from_signed_url, :import_assets_from_s3) SENSITIVE = [] include Aws::Structure end |
#import_asset_from_signed_url ⇒ Types::ImportAssetFromSignedUrlRequestDetails
Details about the import from signed URL request.
1854 1855 1856 1857 1858 1859 1860 1861 1862 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 1854 class RequestDetails < Struct.new( :export_asset_to_signed_url, :export_assets_to_s3, :export_revisions_to_s3, :import_asset_from_signed_url, :import_assets_from_s3) SENSITIVE = [] include Aws::Structure end |
#import_assets_from_s3 ⇒ Types::ImportAssetsFromS3RequestDetails
Details about the import from Amazon S3 request.
1854 1855 1856 1857 1858 1859 1860 1861 1862 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 1854 class RequestDetails < Struct.new( :export_asset_to_signed_url, :export_assets_to_s3, :export_revisions_to_s3, :import_asset_from_signed_url, :import_assets_from_s3) SENSITIVE = [] include Aws::Structure end |