Execute Provisioned Product Service Action
servicecatalog_execute_provisioned_product_service_action | R Documentation |
Executes a self-service action against a provisioned product¶
Description¶
Executes a self-service action against a provisioned product.
Usage¶
servicecatalog_execute_provisioned_product_service_action(
ProvisionedProductId, ServiceActionId, ExecuteToken, AcceptLanguage,
Parameters)
Arguments¶
ProvisionedProductId
[required] The identifier of the provisioned product.
ServiceActionId
[required] The self-service action identifier. For example,
act-fs7abcd89wxyz
.ExecuteToken
[required] An idempotency token that uniquely identifies the execute request.
AcceptLanguage
The language code.
jp
- Japanesezh
- Chinese
Parameters
A map of all self-service action parameters and their values. If a provided parameter is of a special type, such as
TARGET
, the provided value will override the default value generated by Service Catalog. If the parameters field is not provided, no additional parameters are passed and default values will be used for any special parameters such asTARGET
.
Value¶
A list with the following syntax:
list(
RecordDetail = list(
RecordId = "string",
ProvisionedProductName = "string",
Status = "CREATED"|"IN_PROGRESS"|"IN_PROGRESS_IN_ERROR"|"SUCCEEDED"|"FAILED",
CreatedTime = as.POSIXct(
"2015-01-01"
),
UpdatedTime = as.POSIXct(
"2015-01-01"
),
ProvisionedProductType = "string",
RecordType = "string",
ProvisionedProductId = "string",
ProductId = "string",
ProvisioningArtifactId = "string",
PathId = "string",
RecordErrors = list(
list(
Code = "string",
Description = "string"
)
),
RecordTags = list(
list(
Key = "string",
Value = "string"
)
),
LaunchRoleArn = "string"
)
)