2017/09/14 - AWS Service Catalog - 2 new api methods
Changes Update servicecatalog client to latest version
Describes the status of the specified copy product operation.
See also: AWS API Documentation
Request Syntax
client.describe_copy_product_status( AcceptLanguage='string', CopyProductToken='string' )
string
The language code.
en - English (default)
jp - Japanese
zh - Chinese
string
[REQUIRED]
The token returned from the call to CopyProduct that initiated the operation.
dict
Response Syntax
{ 'CopyProductStatus': 'SUCCEEDED'|'IN_PROGRESS'|'FAILED', 'TargetProductId': 'string', 'StatusDetail': 'string' }
Response Structure
(dict) --
CopyProductStatus (string) --
The status of the copy product operation.
TargetProductId (string) --
The ID of the copied product.
StatusDetail (string) --
The status message.
Copies the specified source product to the specified target product or a new product.
You can copy the product to the same account or another account. You can copy the product to the same region or another region.
This operation is performed asynchronously. To track the progress of the operation, use DescribeCopyProductStatus.
See also: AWS API Documentation
Request Syntax
client.copy_product( AcceptLanguage='string', SourceProductArn='string', TargetProductId='string', TargetProductName='string', SourceProvisioningArtifactIdentifiers=[ { 'string': 'string' }, ], CopyOptions=[ 'CopyTags', ], IdempotencyToken='string' )
string
The language code.
en - English (default)
jp - Japanese
zh - Chinese
string
[REQUIRED]
The Amazon Resource Name (ARN) of the source product.
string
The ID of the target product. By default, a new product is created.
string
A name for the target product. The default is the name of the source product.
list
The IDs of the product versions to copy. By default, all provisioning artifacts are copied.
(dict) --
(string) --
(string) --
list
The copy options. If the value is CopyTags, the tags from the source product are copied to the target product.
(string) --
string
[REQUIRED]
A token to disambiguate duplicate requests. You can use the same input in multiple requests, provided that you also specify a different idempotency token for each request.
This field is autopopulated if not provided.
dict
Response Syntax
{ 'CopyProductToken': 'string' }
Response Structure
(dict) --
CopyProductToken (string) --
A unique token to pass to DescribeCopyProductStatus to track the progress of the operation.