Notify Provision Product Engine Workflow Result
servicecatalog_notify_provision_product_engine_workflow_result | R Documentation |
Notifies the result of the provisioning engine execution¶
Description¶
Notifies the result of the provisioning engine execution.
Usage¶
servicecatalog_notify_provision_product_engine_workflow_result(
WorkflowToken, RecordId, Status, FailureReason, ResourceIdentifier,
Outputs, IdempotencyToken)
Arguments¶
WorkflowToken |
[required] The encrypted contents of the provisioning engine execution payload that Service Catalog sends after the Terraform product provisioning workflow starts. |
RecordId |
[required] The identifier of the record. |
Status |
[required] The status of the provisioning engine execution. |
FailureReason |
The reason why the provisioning engine execution failed. |
ResourceIdentifier |
The ID for the provisioned product resources that are part of a resource group. |
Outputs |
The output of the provisioning engine execution. |
IdempotencyToken |
[required] The idempotency token that identifies the provisioning engine execution. |
Value¶
An empty list.
Request syntax¶
svc$notify_provision_product_engine_workflow_result(
WorkflowToken = "string",
RecordId = "string",
Status = "SUCCEEDED"|"FAILED",
FailureReason = "string",
ResourceIdentifier = list(
UniqueTag = list(
Key = "string",
Value = "string"
)
),
Outputs = list(
list(
OutputKey = "string",
OutputValue = "string",
Description = "string"
)
),
IdempotencyToken = "string"
)