AWS Data Exchange 2017-07-25
- Client: Aws\DataExchange\DataExchangeClient
- Service ID: dataexchange
- Version: 2017-07-25
This page describes the parameters and results for the operations of the AWS Data Exchange (2017-07-25), and shows how to use the Aws\DataExchange\DataExchangeClient object to call the described operations. This documentation is specific to the 2017-07-25 API version of the service.
Operation Summary
Each of the following operations can be created from a client using
$client->getCommand('CommandName')
, where "CommandName" is the
name of one of the following operations. Note: a command is a value that
encapsulates an operation and the parameters used to create an HTTP request.
You can also create and send a command immediately using the magic methods
available on a client object: $client->commandName(/* parameters */)
.
You can send the command asynchronously (returning a promise) by appending the
word "Async" to the operation name: $client->commandNameAsync(/* parameters */)
.
- CancelJob ( array $params = [] )
This operation cancels a job.
- CreateDataSet ( array $params = [] )
This operation creates a data set.
- CreateJob ( array $params = [] )
This operation creates a job.
- CreateRevision ( array $params = [] )
This operation creates a revision for a data set.
- DeleteAsset ( array $params = [] )
This operation deletes an asset.
- DeleteDataSet ( array $params = [] )
This operation deletes a data set.
- DeleteRevision ( array $params = [] )
This operation deletes a revision.
- GetAsset ( array $params = [] )
This operation returns information about an asset.
- GetDataSet ( array $params = [] )
This operation returns information about a data set.
- GetJob ( array $params = [] )
This operation returns information about a job.
- GetRevision ( array $params = [] )
This operation returns information about a revision.
- ListDataSetRevisions ( array $params = [] )
This operation lists a data set's revisions sorted by CreatedAt in descending order.
- ListDataSets ( array $params = [] )
This operation lists your data sets.
- ListJobs ( array $params = [] )
This operation lists your jobs sorted by CreatedAt in descending order.
- ListRevisionAssets ( array $params = [] )
This operation lists a revision's assets sorted alphabetically in descending order.
- ListTagsForResource ( array $params = [] )
This operation lists the tags on the resource.
- StartJob ( array $params = [] )
This operation starts a job.
- TagResource ( array $params = [] )
This operation tags a resource.
- UntagResource ( array $params = [] )
This operation removes one or more tags from a resource.
- UpdateAsset ( array $params = [] )
This operation updates an asset.
- UpdateDataSet ( array $params = [] )
This operation updates a data set.
- UpdateRevision ( array $params = [] )
This operation updates a revision.
Paginators
Paginators handle automatically iterating over paginated API results. Paginators are associated with specific API operations, and they accept the parameters that the corresponding API operation accepts. You can get a paginator from a client class using getPaginator($paginatorName, $operationParameters). This client supports the following paginators:
Operations
CancelJob
$result = $client->cancelJob
([/* ... */]); $promise = $client->cancelJobAsync
([/* ... */]);
This operation cancels a job. Jobs can be cancelled only when they are in the WAITING state.
Parameter Syntax
$result = $client->cancelJob([ 'JobId' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[]
Result Details
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
-
The request couldn't be completed because it conflicted with the current state of the resource.
CreateDataSet
$result = $client->createDataSet
([/* ... */]); $promise = $client->createDataSetAsync
([/* ... */]);
This operation creates a data set.
Parameter Syntax
$result = $client->createDataSet([ 'AssetType' => 'S3_SNAPSHOT', // REQUIRED 'Description' => '<string>', // REQUIRED 'Name' => '<string>', // REQUIRED 'Tags' => ['<string>', ...], ]);
Parameter Details
Members
- AssetType
-
- Required: Yes
- Type: string
The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
- Description
-
- Required: Yes
- Type: string
A description for the data set. This value can be up to 16,348 characters long.
- Name
-
- Required: Yes
- Type: string
The name of the data set.
- Tags
-
- Type: Associative array of custom strings keys (__string) to strings
A data set tag is an optional label that you can assign to a data set when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to these data sets and revisions.
Result Syntax
[ 'Arn' => '<string>', 'AssetType' => 'S3_SNAPSHOT', 'CreatedAt' => <DateTime>, 'Description' => '<string>', 'Id' => '<string>', 'Name' => '<string>', 'Origin' => 'OWNED|ENTITLED', 'OriginDetails' => [ 'ProductId' => '<string>', ], 'SourceId' => '<string>', 'Tags' => ['<string>', ...], 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- AssetType
-
- Type: string
The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- Description
-
- Type: string
A description of a resource.
- Id
-
- Type: string
A unique identifier.
- Name
-
- Type: string
The name of the model. - Origin
-
- Type: string
A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers). When an owned data set is published in a product, AWS Data Exchange creates a copy of the data set. Subscribers can access that copy of the data set as an entitled data set.
- OriginDetails
-
- Type: OriginDetails structure
- SourceId
-
- Type: string
A unique identifier.
- Tags
-
- Type: Associative array of custom strings keys (__string) to strings
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
-
ServiceLimitExceededException:
The request has exceeded the quotas imposed by the service.
-
Access to the resource is denied.
CreateJob
$result = $client->createJob
([/* ... */]); $promise = $client->createJobAsync
([/* ... */]);
This operation creates a job.
Parameter Syntax
$result = $client->createJob([ 'Details' => [ // REQUIRED 'ExportAssetToSignedUrl' => [ 'AssetId' => '<string>', // REQUIRED 'DataSetId' => '<string>', // REQUIRED 'RevisionId' => '<string>', // REQUIRED ], 'ExportAssetsToS3' => [ 'AssetDestinations' => [ // REQUIRED [ 'AssetId' => '<string>', // REQUIRED 'Bucket' => '<string>', // REQUIRED 'Key' => '<string>', ], // ... ], 'DataSetId' => '<string>', // REQUIRED 'Encryption' => [ 'KmsKeyArn' => '<string>', 'Type' => 'aws:kms|AES256', // REQUIRED ], 'RevisionId' => '<string>', // REQUIRED ], 'ImportAssetFromSignedUrl' => [ 'AssetName' => '<string>', // REQUIRED 'DataSetId' => '<string>', // REQUIRED 'Md5Hash' => '<string>', // REQUIRED 'RevisionId' => '<string>', // REQUIRED ], 'ImportAssetsFromS3' => [ 'AssetSources' => [ // REQUIRED [ 'Bucket' => '<string>', // REQUIRED 'Key' => '<string>', // REQUIRED ], // ... ], 'DataSetId' => '<string>', // REQUIRED 'RevisionId' => '<string>', // REQUIRED ], ], 'Type' => 'IMPORT_ASSETS_FROM_S3|IMPORT_ASSET_FROM_SIGNED_URL|EXPORT_ASSETS_TO_S3|EXPORT_ASSET_TO_SIGNED_URL', // REQUIRED ]);
Parameter Details
Members
- Details
-
- Required: Yes
- Type: RequestDetails structure
The details for the CreateJob request.
- Type
-
- Required: Yes
- Type: string
The type of job to be created.
Result Syntax
[ 'Arn' => '<string>', 'CreatedAt' => <DateTime>, 'Details' => [ 'ExportAssetToSignedUrl' => [ 'AssetId' => '<string>', 'DataSetId' => '<string>', 'RevisionId' => '<string>', 'SignedUrl' => '<string>', 'SignedUrlExpiresAt' => <DateTime>, ], 'ExportAssetsToS3' => [ 'AssetDestinations' => [ [ 'AssetId' => '<string>', 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], 'DataSetId' => '<string>', 'Encryption' => [ 'KmsKeyArn' => '<string>', 'Type' => 'aws:kms|AES256', ], 'RevisionId' => '<string>', ], 'ImportAssetFromSignedUrl' => [ 'AssetName' => '<string>', 'DataSetId' => '<string>', 'Md5Hash' => '<string>', 'RevisionId' => '<string>', 'SignedUrl' => '<string>', 'SignedUrlExpiresAt' => <DateTime>, ], 'ImportAssetsFromS3' => [ 'AssetSources' => [ [ 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], 'DataSetId' => '<string>', 'RevisionId' => '<string>', ], ], 'Errors' => [ [ 'Code' => 'ACCESS_DENIED_EXCEPTION|INTERNAL_SERVER_EXCEPTION|MALWARE_DETECTED|RESOURCE_NOT_FOUND_EXCEPTION|SERVICE_QUOTA_EXCEEDED_EXCEPTION|VALIDATION_EXCEPTION|MALWARE_SCAN_ENCRYPTED_FILE', 'Details' => [ 'ImportAssetFromSignedUrlJobErrorDetails' => [ 'AssetName' => '<string>', ], 'ImportAssetsFromS3JobErrorDetails' => [ [ 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], ], 'LimitName' => 'Assets per revision|Asset size in GB', 'LimitValue' => <float>, 'Message' => '<string>', 'ResourceId' => '<string>', 'ResourceType' => 'REVISION|ASSET', ], // ... ], 'Id' => '<string>', 'State' => 'WAITING|IN_PROGRESS|ERROR|COMPLETED|CANCELLED|TIMED_OUT', 'Type' => 'IMPORT_ASSETS_FROM_S3|IMPORT_ASSET_FROM_SIGNED_URL|EXPORT_ASSETS_TO_S3|EXPORT_ASSET_TO_SIGNED_URL', 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- Details
-
- Type: ResponseDetails structure
Details for the response.
- Errors
-
- Type: Array of JobError structures
- Id
-
- Type: string
A unique identifier.
- State
-
- Type: string
- Type
-
- Type: string
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
CreateRevision
$result = $client->createRevision
([/* ... */]); $promise = $client->createRevisionAsync
([/* ... */]);
This operation creates a revision for a data set.
Parameter Syntax
$result = $client->createRevision([ 'Comment' => '<string>', 'DataSetId' => '<string>', // REQUIRED 'Tags' => ['<string>', ...], ]);
Parameter Details
Members
- Comment
-
- Type: string
An optional comment about the revision.
- DataSetId
-
- Required: Yes
- Type: string
- Tags
-
- Type: Associative array of custom strings keys (__string) to strings
A revision tag is an optional label that you can assign to a revision when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to these data sets and revisions.
Result Syntax
[ 'Arn' => '<string>', 'Comment' => '<string>', 'CreatedAt' => <DateTime>, 'DataSetId' => '<string>', 'Finalized' => true || false, 'Id' => '<string>', 'SourceId' => '<string>', 'Tags' => ['<string>', ...], 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- Comment
-
- Type: string
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- DataSetId
-
- Type: string
A unique identifier.
- Finalized
-
- Type: boolean
- Id
-
- Type: string
A unique identifier.
- SourceId
-
- Type: string
A unique identifier.
- Tags
-
- Type: Associative array of custom strings keys (__string) to strings
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
DeleteAsset
$result = $client->deleteAsset
([/* ... */]); $promise = $client->deleteAssetAsync
([/* ... */]);
This operation deletes an asset.
Parameter Syntax
$result = $client->deleteAsset([ 'AssetId' => '<string>', // REQUIRED 'DataSetId' => '<string>', // REQUIRED 'RevisionId' => '<string>', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[]
Result Details
Errors
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request couldn't be completed because it conflicted with the current state of the resource.
DeleteDataSet
$result = $client->deleteDataSet
([/* ... */]); $promise = $client->deleteDataSetAsync
([/* ... */]);
This operation deletes a data set.
Parameter Syntax
$result = $client->deleteDataSet([ 'DataSetId' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[]
Result Details
Errors
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request couldn't be completed because it conflicted with the current state of the resource.
DeleteRevision
$result = $client->deleteRevision
([/* ... */]); $promise = $client->deleteRevisionAsync
([/* ... */]);
This operation deletes a revision.
Parameter Syntax
$result = $client->deleteRevision([ 'DataSetId' => '<string>', // REQUIRED 'RevisionId' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[]
Result Details
Errors
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request couldn't be completed because it conflicted with the current state of the resource.
GetAsset
$result = $client->getAsset
([/* ... */]); $promise = $client->getAssetAsync
([/* ... */]);
This operation returns information about an asset.
Parameter Syntax
$result = $client->getAsset([ 'AssetId' => '<string>', // REQUIRED 'DataSetId' => '<string>', // REQUIRED 'RevisionId' => '<string>', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'Arn' => '<string>', 'AssetDetails' => [ 'S3SnapshotAsset' => [ 'Size' => <float>, ], ], 'AssetType' => 'S3_SNAPSHOT', 'CreatedAt' => <DateTime>, 'DataSetId' => '<string>', 'Id' => '<string>', 'Name' => '<string>', 'RevisionId' => '<string>', 'SourceId' => '<string>', 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- AssetDetails
-
- Type: AssetDetails structure
- AssetType
-
- Type: string
The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- DataSetId
-
- Type: string
A unique identifier.
- Id
-
- Type: string
A unique identifier.
- Name
-
- Type: string
The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.
- RevisionId
-
- Type: string
A unique identifier.
- SourceId
-
- Type: string
A unique identifier.
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
GetDataSet
$result = $client->getDataSet
([/* ... */]); $promise = $client->getDataSetAsync
([/* ... */]);
This operation returns information about a data set.
Parameter Syntax
$result = $client->getDataSet([ 'DataSetId' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[ 'Arn' => '<string>', 'AssetType' => 'S3_SNAPSHOT', 'CreatedAt' => <DateTime>, 'Description' => '<string>', 'Id' => '<string>', 'Name' => '<string>', 'Origin' => 'OWNED|ENTITLED', 'OriginDetails' => [ 'ProductId' => '<string>', ], 'SourceId' => '<string>', 'Tags' => ['<string>', ...], 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- AssetType
-
- Type: string
The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- Description
-
- Type: string
A description of a resource.
- Id
-
- Type: string
A unique identifier.
- Name
-
- Type: string
The name of the model. - Origin
-
- Type: string
A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers). When an owned data set is published in a product, AWS Data Exchange creates a copy of the data set. Subscribers can access that copy of the data set as an entitled data set.
- OriginDetails
-
- Type: OriginDetails structure
- SourceId
-
- Type: string
A unique identifier.
- Tags
-
- Type: Associative array of custom strings keys (__string) to strings
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
GetJob
$result = $client->getJob
([/* ... */]); $promise = $client->getJobAsync
([/* ... */]);
This operation returns information about a job.
Parameter Syntax
$result = $client->getJob([ 'JobId' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[ 'Arn' => '<string>', 'CreatedAt' => <DateTime>, 'Details' => [ 'ExportAssetToSignedUrl' => [ 'AssetId' => '<string>', 'DataSetId' => '<string>', 'RevisionId' => '<string>', 'SignedUrl' => '<string>', 'SignedUrlExpiresAt' => <DateTime>, ], 'ExportAssetsToS3' => [ 'AssetDestinations' => [ [ 'AssetId' => '<string>', 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], 'DataSetId' => '<string>', 'Encryption' => [ 'KmsKeyArn' => '<string>', 'Type' => 'aws:kms|AES256', ], 'RevisionId' => '<string>', ], 'ImportAssetFromSignedUrl' => [ 'AssetName' => '<string>', 'DataSetId' => '<string>', 'Md5Hash' => '<string>', 'RevisionId' => '<string>', 'SignedUrl' => '<string>', 'SignedUrlExpiresAt' => <DateTime>, ], 'ImportAssetsFromS3' => [ 'AssetSources' => [ [ 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], 'DataSetId' => '<string>', 'RevisionId' => '<string>', ], ], 'Errors' => [ [ 'Code' => 'ACCESS_DENIED_EXCEPTION|INTERNAL_SERVER_EXCEPTION|MALWARE_DETECTED|RESOURCE_NOT_FOUND_EXCEPTION|SERVICE_QUOTA_EXCEEDED_EXCEPTION|VALIDATION_EXCEPTION|MALWARE_SCAN_ENCRYPTED_FILE', 'Details' => [ 'ImportAssetFromSignedUrlJobErrorDetails' => [ 'AssetName' => '<string>', ], 'ImportAssetsFromS3JobErrorDetails' => [ [ 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], ], 'LimitName' => 'Assets per revision|Asset size in GB', 'LimitValue' => <float>, 'Message' => '<string>', 'ResourceId' => '<string>', 'ResourceType' => 'REVISION|ASSET', ], // ... ], 'Id' => '<string>', 'State' => 'WAITING|IN_PROGRESS|ERROR|COMPLETED|CANCELLED|TIMED_OUT', 'Type' => 'IMPORT_ASSETS_FROM_S3|IMPORT_ASSET_FROM_SIGNED_URL|EXPORT_ASSETS_TO_S3|EXPORT_ASSET_TO_SIGNED_URL', 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- Details
-
- Type: ResponseDetails structure
Details for the response.
- Errors
-
- Type: Array of JobError structures
- Id
-
- Type: string
A unique identifier.
- State
-
- Type: string
- Type
-
- Type: string
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
GetRevision
$result = $client->getRevision
([/* ... */]); $promise = $client->getRevisionAsync
([/* ... */]);
This operation returns information about a revision.
Parameter Syntax
$result = $client->getRevision([ 'DataSetId' => '<string>', // REQUIRED 'RevisionId' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[ 'Arn' => '<string>', 'Comment' => '<string>', 'CreatedAt' => <DateTime>, 'DataSetId' => '<string>', 'Finalized' => true || false, 'Id' => '<string>', 'SourceId' => '<string>', 'Tags' => ['<string>', ...], 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- Comment
-
- Type: string
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- DataSetId
-
- Type: string
A unique identifier.
- Finalized
-
- Type: boolean
- Id
-
- Type: string
A unique identifier.
- SourceId
-
- Type: string
A unique identifier.
- Tags
-
- Type: Associative array of custom strings keys (__string) to strings
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
ListDataSetRevisions
$result = $client->listDataSetRevisions
([/* ... */]); $promise = $client->listDataSetRevisionsAsync
([/* ... */]);
This operation lists a data set's revisions sorted by CreatedAt in descending order.
Parameter Syntax
$result = $client->listDataSetRevisions([ 'DataSetId' => '<string>', // REQUIRED 'MaxResults' => <integer>, 'NextToken' => '<string>', ]);
Parameter Details
Result Syntax
[ 'NextToken' => '<string>', 'Revisions' => [ [ 'Arn' => '<string>', 'Comment' => '<string>', 'CreatedAt' => <DateTime>, 'DataSetId' => '<string>', 'Finalized' => true || false, 'Id' => '<string>', 'SourceId' => '<string>', 'UpdatedAt' => <DateTime>, ], // ... ], ]
Result Details
Members
- NextToken
-
- Type: string
The token value retrieved from a previous call to access the next page of results.
- Revisions
-
- Type: Array of RevisionEntry structures
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
ListDataSets
$result = $client->listDataSets
([/* ... */]); $promise = $client->listDataSetsAsync
([/* ... */]);
This operation lists your data sets. When listing by origin OWNED, results are sorted by CreatedAt in descending order. When listing by origin ENTITLED, there is no order and the maxResults parameter is ignored.
Parameter Syntax
$result = $client->listDataSets([ 'MaxResults' => <integer>, 'NextToken' => '<string>', 'Origin' => '<string>', ]);
Parameter Details
Result Syntax
[ 'DataSets' => [ [ 'Arn' => '<string>', 'AssetType' => 'S3_SNAPSHOT', 'CreatedAt' => <DateTime>, 'Description' => '<string>', 'Id' => '<string>', 'Name' => '<string>', 'Origin' => 'OWNED|ENTITLED', 'OriginDetails' => [ 'ProductId' => '<string>', ], 'SourceId' => '<string>', 'UpdatedAt' => <DateTime>, ], // ... ], 'NextToken' => '<string>', ]
Result Details
Members
- DataSets
-
- Type: Array of DataSetEntry structures
- NextToken
-
- Type: string
The token value retrieved from a previous call to access the next page of results.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
ListJobs
$result = $client->listJobs
([/* ... */]); $promise = $client->listJobsAsync
([/* ... */]);
This operation lists your jobs sorted by CreatedAt in descending order.
Parameter Syntax
$result = $client->listJobs([ 'DataSetId' => '<string>', 'MaxResults' => <integer>, 'NextToken' => '<string>', 'RevisionId' => '<string>', ]);
Parameter Details
Result Syntax
[ 'Jobs' => [ [ 'Arn' => '<string>', 'CreatedAt' => <DateTime>, 'Details' => [ 'ExportAssetToSignedUrl' => [ 'AssetId' => '<string>', 'DataSetId' => '<string>', 'RevisionId' => '<string>', 'SignedUrl' => '<string>', 'SignedUrlExpiresAt' => <DateTime>, ], 'ExportAssetsToS3' => [ 'AssetDestinations' => [ [ 'AssetId' => '<string>', 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], 'DataSetId' => '<string>', 'Encryption' => [ 'KmsKeyArn' => '<string>', 'Type' => 'aws:kms|AES256', ], 'RevisionId' => '<string>', ], 'ImportAssetFromSignedUrl' => [ 'AssetName' => '<string>', 'DataSetId' => '<string>', 'Md5Hash' => '<string>', 'RevisionId' => '<string>', 'SignedUrl' => '<string>', 'SignedUrlExpiresAt' => <DateTime>, ], 'ImportAssetsFromS3' => [ 'AssetSources' => [ [ 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], 'DataSetId' => '<string>', 'RevisionId' => '<string>', ], ], 'Errors' => [ [ 'Code' => 'ACCESS_DENIED_EXCEPTION|INTERNAL_SERVER_EXCEPTION|MALWARE_DETECTED|RESOURCE_NOT_FOUND_EXCEPTION|SERVICE_QUOTA_EXCEEDED_EXCEPTION|VALIDATION_EXCEPTION|MALWARE_SCAN_ENCRYPTED_FILE', 'Details' => [ 'ImportAssetFromSignedUrlJobErrorDetails' => [ 'AssetName' => '<string>', ], 'ImportAssetsFromS3JobErrorDetails' => [ [ 'Bucket' => '<string>', 'Key' => '<string>', ], // ... ], ], 'LimitName' => 'Assets per revision|Asset size in GB', 'LimitValue' => <float>, 'Message' => '<string>', 'ResourceId' => '<string>', 'ResourceType' => 'REVISION|ASSET', ], // ... ], 'Id' => '<string>', 'State' => 'WAITING|IN_PROGRESS|ERROR|COMPLETED|CANCELLED|TIMED_OUT', 'Type' => 'IMPORT_ASSETS_FROM_S3|IMPORT_ASSET_FROM_SIGNED_URL|EXPORT_ASSETS_TO_S3|EXPORT_ASSET_TO_SIGNED_URL', 'UpdatedAt' => <DateTime>, ], // ... ], 'NextToken' => '<string>', ]
Result Details
Members
- Jobs
-
- Type: Array of JobEntry structures
- NextToken
-
- Type: string
The token value retrieved from a previous call to access the next page of results.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
ListRevisionAssets
$result = $client->listRevisionAssets
([/* ... */]); $promise = $client->listRevisionAssetsAsync
([/* ... */]);
This operation lists a revision's assets sorted alphabetically in descending order.
Parameter Syntax
$result = $client->listRevisionAssets([ 'DataSetId' => '<string>', // REQUIRED 'MaxResults' => <integer>, 'NextToken' => '<string>', 'RevisionId' => '<string>', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'Assets' => [ [ 'Arn' => '<string>', 'AssetDetails' => [ 'S3SnapshotAsset' => [ 'Size' => <float>, ], ], 'AssetType' => 'S3_SNAPSHOT', 'CreatedAt' => <DateTime>, 'DataSetId' => '<string>', 'Id' => '<string>', 'Name' => '<string>', 'RevisionId' => '<string>', 'SourceId' => '<string>', 'UpdatedAt' => <DateTime>, ], // ... ], 'NextToken' => '<string>', ]
Result Details
Members
- Assets
-
- Type: Array of AssetEntry structures
- NextToken
-
- Type: string
The token value retrieved from a previous call to access the next page of results.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
ListTagsForResource
$result = $client->listTagsForResource
([/* ... */]); $promise = $client->listTagsForResourceAsync
([/* ... */]);
This operation lists the tags on the resource.
Parameter Syntax
$result = $client->listTagsForResource([ 'ResourceArn' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[ 'Tags' => ['<string>', ...], ]
Result Details
Errors
There are no errors described for this operation.
StartJob
$result = $client->startJob
([/* ... */]); $promise = $client->startJobAsync
([/* ... */]);
This operation starts a job.
Parameter Syntax
$result = $client->startJob([ 'JobId' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[]
Result Details
Errors
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request couldn't be completed because it conflicted with the current state of the resource.
TagResource
$result = $client->tagResource
([/* ... */]); $promise = $client->tagResourceAsync
([/* ... */]);
This operation tags a resource.
Parameter Syntax
$result = $client->tagResource([ 'ResourceArn' => '<string>', // REQUIRED 'Tags' => ['<string>', ...], // REQUIRED ]);
Parameter Details
Members
Result Syntax
[]
Result Details
Errors
There are no errors described for this operation.
UntagResource
$result = $client->untagResource
([/* ... */]); $promise = $client->untagResourceAsync
([/* ... */]);
This operation removes one or more tags from a resource.
Parameter Syntax
$result = $client->untagResource([ 'ResourceArn' => '<string>', // REQUIRED 'TagKeys' => ['<string>', ...], // REQUIRED ]);
Parameter Details
Result Syntax
[]
Result Details
Errors
There are no errors described for this operation.
UpdateAsset
$result = $client->updateAsset
([/* ... */]); $promise = $client->updateAssetAsync
([/* ... */]);
This operation updates an asset.
Parameter Syntax
$result = $client->updateAsset([ 'AssetId' => '<string>', // REQUIRED 'DataSetId' => '<string>', // REQUIRED 'Name' => '<string>', // REQUIRED 'RevisionId' => '<string>', // REQUIRED ]);
Parameter Details
Members
- AssetId
-
- Required: Yes
- Type: string
- DataSetId
-
- Required: Yes
- Type: string
- Name
-
- Required: Yes
- Type: string
The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.
- RevisionId
-
- Required: Yes
- Type: string
Result Syntax
[ 'Arn' => '<string>', 'AssetDetails' => [ 'S3SnapshotAsset' => [ 'Size' => <float>, ], ], 'AssetType' => 'S3_SNAPSHOT', 'CreatedAt' => <DateTime>, 'DataSetId' => '<string>', 'Id' => '<string>', 'Name' => '<string>', 'RevisionId' => '<string>', 'SourceId' => '<string>', 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- AssetDetails
-
- Type: AssetDetails structure
- AssetType
-
- Type: string
The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- DataSetId
-
- Type: string
A unique identifier.
- Id
-
- Type: string
A unique identifier.
- Name
-
- Type: string
The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.
- RevisionId
-
- Type: string
A unique identifier.
- SourceId
-
- Type: string
A unique identifier.
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request couldn't be completed because it conflicted with the current state of the resource.
UpdateDataSet
$result = $client->updateDataSet
([/* ... */]); $promise = $client->updateDataSetAsync
([/* ... */]);
This operation updates a data set.
Parameter Syntax
$result = $client->updateDataSet([ 'DataSetId' => '<string>', // REQUIRED 'Description' => '<string>', 'Name' => '<string>', ]);
Parameter Details
Members
Result Syntax
[ 'Arn' => '<string>', 'AssetType' => 'S3_SNAPSHOT', 'CreatedAt' => <DateTime>, 'Description' => '<string>', 'Id' => '<string>', 'Name' => '<string>', 'Origin' => 'OWNED|ENTITLED', 'OriginDetails' => [ 'ProductId' => '<string>', ], 'SourceId' => '<string>', 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- AssetType
-
- Type: string
The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- Description
-
- Type: string
A description of a resource.
- Id
-
- Type: string
A unique identifier.
- Name
-
- Type: string
The name of the model. - Origin
-
- Type: string
A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers). When an owned data set is published in a product, AWS Data Exchange creates a copy of the data set. Subscribers can access that copy of the data set as an entitled data set.
- OriginDetails
-
- Type: OriginDetails structure
- SourceId
-
- Type: string
A unique identifier.
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
UpdateRevision
$result = $client->updateRevision
([/* ... */]); $promise = $client->updateRevisionAsync
([/* ... */]);
This operation updates a revision.
Parameter Syntax
$result = $client->updateRevision([ 'Comment' => '<string>', 'DataSetId' => '<string>', // REQUIRED 'Finalized' => true || false, 'RevisionId' => '<string>', // REQUIRED ]);
Parameter Details
Members
- Comment
-
- Type: string
An optional comment about the revision.
- DataSetId
-
- Required: Yes
- Type: string
- Finalized
-
- Type: boolean
Finalizing a revision tells AWS Data Exchange that your changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products.
- RevisionId
-
- Required: Yes
- Type: string
Result Syntax
[ 'Arn' => '<string>', 'Comment' => '<string>', 'CreatedAt' => <DateTime>, 'DataSetId' => '<string>', 'Finalized' => true || false, 'Id' => '<string>', 'SourceId' => '<string>', 'UpdatedAt' => <DateTime>, ]
Result Details
Members
- Arn
-
- Type: string
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
- Comment
-
- Type: string
- CreatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
- DataSetId
-
- Type: string
A unique identifier.
- Finalized
-
- Type: boolean
- Id
-
- Type: string
A unique identifier.
- SourceId
-
- Type: string
A unique identifier.
- UpdatedAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
Dates and times in AWS Data Exchange are recorded in ISO 8601 format.
Errors
-
The request was invalid.
-
An exception occurred with the service.
-
Access to the resource is denied.
-
The resource couldn't be found.
-
The limit on the number of requests per second was exceeded.
-
The request couldn't be completed because it conflicted with the current state of the resource.
Shapes
AccessDeniedException
Description
Access to the resource is denied.
Members
AssetDestinationEntry
Description
The destination for the asset.
Members
AssetDetails
Members
- S3SnapshotAsset
-
- Type: S3SnapshotAsset structure
The S3 object that is the asset.
AssetEntry
Description
An asset in AWS Data Exchange is a piece of data that can be stored as an S3 object. The asset can be a structured data file, an image file, or some other data file. When you create an import job for your files, you create an asset in AWS Data Exchange for each of those files.
Members
- Arn
-
- Required: Yes
- Type: string
The ARN for the asset.
- AssetDetails
-
- Required: Yes
- Type: AssetDetails structure
Information about the asset, including its size.
- AssetType
-
- Required: Yes
- Type: string
The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
- CreatedAt
-
- Required: Yes
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the asset was created, in ISO 8601 format.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this asset.
- Id
-
- Required: Yes
- Type: string
The unique identifier for the asset.
- Name
-
- Required: Yes
- Type: string
The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this asset.
- SourceId
-
- Type: string
The asset ID of the owned asset corresponding to the entitled asset being viewed. This parameter is returned when an asset owner is viewing the entitled copy of its owned asset.
- UpdatedAt
-
- Required: Yes
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the asset was last updated, in ISO 8601 format.
AssetSourceEntry
Description
The source of the assets.
Members
ConflictException
Description
The request couldn't be completed because it conflicted with the current state of the resource.
Members
DataSetEntry
Description
A data set is an AWS resource with one or more revisions.
Members
- Arn
-
- Required: Yes
- Type: string
The ARN for the data set.
- AssetType
-
- Required: Yes
- Type: string
The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
- CreatedAt
-
- Required: Yes
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the data set was created, in ISO 8601 format.
- Description
-
- Required: Yes
- Type: string
The description for the data set.
- Id
-
- Required: Yes
- Type: string
The unique identifier for the data set.
- Name
-
- Required: Yes
- Type: string
The name of the data set.
- Origin
-
- Required: Yes
- Type: string
A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers).
- OriginDetails
-
- Type: OriginDetails structure
If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace.
- SourceId
-
- Type: string
The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is returned when a data set owner is viewing the entitled copy of its owned data set.
- UpdatedAt
-
- Required: Yes
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the data set was last updated, in ISO 8601 format.
Details
Members
- ImportAssetFromSignedUrlJobErrorDetails
-
- Type: ImportAssetFromSignedUrlJobErrorDetails structure
- ImportAssetsFromS3JobErrorDetails
-
- Type: Array of AssetSourceEntry structures
The list of sources for the assets.
ExportAssetToSignedUrlRequestDetails
Description
Details of the operation to be performed by the job.
Members
- AssetId
-
- Required: Yes
- Type: string
The unique identifier for the asset that is exported to a signed URL.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this export job.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this export request.
ExportAssetToSignedUrlResponseDetails
Description
The details of the export to signed URL response.
Members
- AssetId
-
- Required: Yes
- Type: string
The unique identifier for the asset associated with this export job.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this export job.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this export response.
- SignedUrl
-
- Type: string
The signed URL for the export request.
- SignedUrlExpiresAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the signed URL expires, in ISO 8601 format.
ExportAssetsToS3RequestDetails
Description
Details of the operation to be performed by the job.
Members
- AssetDestinations
-
- Required: Yes
- Type: Array of AssetDestinationEntry structures
The destination for the asset.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this export job.
- Encryption
-
- Type: ExportServerSideEncryption structure
Encryption configuration for the export job.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this export request.
ExportAssetsToS3ResponseDetails
Description
Details about the export to Amazon S3 response.
Members
- AssetDestinations
-
- Required: Yes
- Type: Array of AssetDestinationEntry structures
The destination in Amazon S3 where the asset is exported.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this export job.
- Encryption
-
- Type: ExportServerSideEncryption structure
Encryption configuration of the export job.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this export response.
ExportServerSideEncryption
Description
Encryption configuration of the export job. Includes the encryption type as well as the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption type.
Members
- KmsKeyArn
-
- Type: string
The Amazon Resource Name (ARN) of the the AWS KMS key you want to use to encrypt the Amazon S3 objects. This parameter is required if you choose aws:kms as an encryption type.
- Type
-
- Required: Yes
- Type: string
The type of server side encryption used for encrypting the objects in Amazon S3.
ImportAssetFromSignedUrlJobErrorDetails
Members
ImportAssetFromSignedUrlRequestDetails
Description
Details of the operation to be performed by the job.
Members
- AssetName
-
- Required: Yes
- Type: string
The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this import job.
- Md5Hash
-
- Required: Yes
- Type: string
The Base64-encoded Md5 hash for the asset, used to ensure the integrity of the file at that location.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this import request.
ImportAssetFromSignedUrlResponseDetails
Description
The details in the response for an import request, including the signed URL and other information.
Members
- AssetName
-
- Required: Yes
- Type: string
The name for the asset associated with this import response.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this import job.
- Md5Hash
-
- Type: string
The Base64-encoded Md5 hash for the asset, used to ensure the integrity of the file at that location.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this import response.
- SignedUrl
-
- Type: string
The signed URL.
- SignedUrlExpiresAt
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The time and date at which the signed URL expires, in ISO 8601 format.
ImportAssetsFromS3RequestDetails
Description
Details of the operation to be performed by the job.
Members
- AssetSources
-
- Required: Yes
- Type: Array of AssetSourceEntry structures
Is a list of S3 bucket and object key pairs.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this import job.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this import request.
ImportAssetsFromS3ResponseDetails
Description
Details from an import from Amazon S3 response.
Members
- AssetSources
-
- Required: Yes
- Type: Array of AssetSourceEntry structures
Is a list of Amazon S3 bucket and object key pairs.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this import job.
- RevisionId
-
- Required: Yes
- Type: string
The unique identifier for the revision associated with this import response.
InternalServerException
Description
Members
JobEntry
Description
Members
- Arn
-
- Required: Yes
- Type: string
The ARN for the job.
- CreatedAt
-
- Required: Yes
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the job was created, in ISO 8601 format.
- Details
-
- Required: Yes
- Type: ResponseDetails structure
Details of the operation to be performed by the job, such as export destination details or import source details.
- Errors
-
- Type: Array of JobError structures
Errors for jobs.
- Id
-
- Required: Yes
- Type: string
The unique identifier for the job.
- State
-
- Required: Yes
- Type: string
The state of the job.
- Type
-
- Required: Yes
- Type: string
The job type.
- UpdatedAt
-
- Required: Yes
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the job was last updated, in ISO 8601 format.
JobError
Description
Members
- Code
-
- Required: Yes
- Type: string
The code for the job error. - Details
-
- Type: Details structure
- LimitName
-
- Type: string
The name of the limit that was reached.
- LimitValue
-
- Type: double
The value of the exceeded limit. - Message
-
- Required: Yes
- Type: string
The message related to the job error. - ResourceId
-
- Type: string
The unique identifier for the resource related to the error. - ResourceType
-
- Type: string
The type of resource related to the error.
OriginDetails
RequestDetails
Description
The details for the request.
Members
- ExportAssetToSignedUrl
-
- Type: ExportAssetToSignedUrlRequestDetails structure
Details about the export to signed URL request.
- ExportAssetsToS3
-
- Type: ExportAssetsToS3RequestDetails structure
Details about the export to Amazon S3 request.
- ImportAssetFromSignedUrl
-
- Type: ImportAssetFromSignedUrlRequestDetails structure
Details about the import from signed URL request.
- ImportAssetsFromS3
-
- Type: ImportAssetsFromS3RequestDetails structure
Details about the import from Amazon S3 request.
ResourceNotFoundException
Description
The resource couldn't be found.
Members
ResponseDetails
Description
Details for the response.
Members
- ExportAssetToSignedUrl
-
- Type: ExportAssetToSignedUrlResponseDetails structure
Details for the export to signed URL response.
- ExportAssetsToS3
-
- Type: ExportAssetsToS3ResponseDetails structure
Details for the export to Amazon S3 response.
- ImportAssetFromSignedUrl
-
- Type: ImportAssetFromSignedUrlResponseDetails structure
Details for the import from signed URL response.
- ImportAssetsFromS3
-
- Type: ImportAssetsFromS3ResponseDetails structure
Details for the import from Amazon S3 response.
RevisionEntry
Description
A revision is a container for one or more assets.
Members
- Arn
-
- Required: Yes
- Type: string
The ARN for the revision.
- Comment
-
- Type: string
An optional comment about the revision.
- CreatedAt
-
- Required: Yes
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the revision was created, in ISO 8601 format.
- DataSetId
-
- Required: Yes
- Type: string
The unique identifier for the data set associated with this revision.
- Finalized
-
- Type: boolean
To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that your changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products.
Finalized revisions can be published through the AWS Data Exchange console or the AWS Marketplace Catalog API, using the StartChangeSet AWS Marketplace Catalog API action. When using the API, revisions are uniquely identified by their ARN.
- Id
-
- Required: Yes
- Type: string
The unique identifier for the revision.
- SourceId
-
- Type: string
The revision ID of the owned revision corresponding to the entitled revision being viewed. This parameter is returned when a revision owner is viewing the entitled copy of its owned revision.
- UpdatedAt
-
- Required: Yes
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The date and time that the revision was last updated, in ISO 8601 format.
S3SnapshotAsset
Description
The S3 object that is the asset.
Members
ServiceLimitExceededException
Description
The request has exceeded the quotas imposed by the service.
Members
ThrottlingException
Description
The limit on the number of requests per second was exceeded.