Terminate Provisioned Product
servicecatalog_terminate_provisioned_product | R Documentation |
Terminates the specified provisioned product¶
Description¶
Terminates the specified provisioned product.
This operation does not delete any records associated with the provisioned product.
You can check the status of this request using describe_record
.
Usage¶
servicecatalog_terminate_provisioned_product(ProvisionedProductName,
ProvisionedProductId, TerminateToken, IgnoreErrors, AcceptLanguage,
RetainPhysicalResources)
Arguments¶
ProvisionedProductName |
The name of the provisioned product. You cannot specify both
|
ProvisionedProductId |
The identifier of the provisioned product. You cannot specify
both |
TerminateToken |
[required] An idempotency token that uniquely identifies the termination request. This token is only valid during the termination process. After the provisioned product is terminated, subsequent requests to terminate the same provisioned product always return ResourceNotFound. |
IgnoreErrors |
If set to true, Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. |
AcceptLanguage |
The language code.
|
RetainPhysicalResources |
When this boolean parameter is set to true, the
|
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"
)
)
Request syntax¶
svc$terminate_provisioned_product(
ProvisionedProductName = "string",
ProvisionedProductId = "string",
TerminateToken = "string",
IgnoreErrors = TRUE|FALSE,
AcceptLanguage = "string",
RetainPhysicalResources = TRUE|FALSE
)