![]() |
![]()
| ![]() |
![]()
NAMEPaws::ServiceCatalog::TerminateProvisionedProduct - Arguments for method TerminateProvisionedProduct on Paws::ServiceCatalog DESCRIPTIONThis class represents the parameters used for calling the method TerminateProvisionedProduct on the AWS Service Catalog service. Use the attributes of this class as arguments to method TerminateProvisionedProduct. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to TerminateProvisionedProduct. SYNOPSISmy $servicecatalog = Paws->service('ServiceCatalog'); my $TerminateProvisionedProductOutput = $servicecatalog->TerminateProvisionedProduct( TerminateToken => 'MyIdempotencyToken', AcceptLanguage => 'MyAcceptLanguage', # OPTIONAL IgnoreErrors => 1, # OPTIONAL ProvisionedProductId => 'MyId', # OPTIONAL ProvisionedProductName => 'MyProvisionedProductNameOrArn', # OPTIONAL RetainPhysicalResources => 1, # OPTIONAL ); # Results: my $RecordDetail = $TerminateProvisionedProductOutput->RecordDetail; # Returns a L<Paws::ServiceCatalog::TerminateProvisionedProductOutput> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/servicecatalog/TerminateProvisionedProduct> ATTRIBUTESAcceptLanguage => StrThe language code.
IgnoreErrors => BoolIf set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. ProvisionedProductId => StrThe identifier of the provisioned product. You cannot specify both "ProvisionedProductName" and "ProvisionedProductId". ProvisionedProductName => StrThe name of the provisioned product. You cannot specify both "ProvisionedProductName" and "ProvisionedProductId". RetainPhysicalResources => BoolWhen this boolean parameter is set to true, the "TerminateProvisionedProduct" API deletes the Service Catalog provisioned product. However, it does not remove the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false. REQUIRED TerminateToken => StrAn 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. SEE ALSOThis class forms part of Paws, documenting arguments for method TerminateProvisionedProduct in Paws::ServiceCatalog BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|