Class: Aws::ServiceCatalog::Types::TerminateProvisionedProductInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Note:

When making an API call, you may pass TerminateProvisionedProductInput data as a hash:

{
  provisioned_product_name: "ProvisionedProductNameOrArn",
  provisioned_product_id: "Id",
  terminate_token: "IdempotencyToken", # required
  ignore_errors: false,
  accept_language: "AcceptLanguage",
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


5707
5708
5709
5710
5711
5712
5713
5714
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5707

class TerminateProvisionedProductInput < Struct.new(
  :provisioned_product_name,
  :provisioned_product_id,
  :terminate_token,
  :ignore_errors,
  :accept_language)
  include Aws::Structure
end

#ignore_errorsBoolean

If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources.

Returns:

  • (Boolean)


5707
5708
5709
5710
5711
5712
5713
5714
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5707

class TerminateProvisionedProductInput < Struct.new(
  :provisioned_product_name,
  :provisioned_product_id,
  :terminate_token,
  :ignore_errors,
  :accept_language)
  include Aws::Structure
end

#provisioned_product_idString

The identifier of the provisioned product. You cannot specify both ‘ProvisionedProductName` and `ProvisionedProductId`.

Returns:

  • (String)


5707
5708
5709
5710
5711
5712
5713
5714
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5707

class TerminateProvisionedProductInput < Struct.new(
  :provisioned_product_name,
  :provisioned_product_id,
  :terminate_token,
  :ignore_errors,
  :accept_language)
  include Aws::Structure
end

#provisioned_product_nameString

The name of the provisioned product. You cannot specify both ‘ProvisionedProductName` and `ProvisionedProductId`.

Returns:

  • (String)


5707
5708
5709
5710
5711
5712
5713
5714
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5707

class TerminateProvisionedProductInput < Struct.new(
  :provisioned_product_name,
  :provisioned_product_id,
  :terminate_token,
  :ignore_errors,
  :accept_language)
  include Aws::Structure
end

#terminate_tokenString

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.

**A suitable default value is auto-generated.** You should normally not need to pass this option.

Returns:

  • (String)


5707
5708
5709
5710
5711
5712
5713
5714
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5707

class TerminateProvisionedProductInput < Struct.new(
  :provisioned_product_name,
  :provisioned_product_id,
  :terminate_token,
  :ignore_errors,
  :accept_language)
  include Aws::Structure
end