Class: Aws::ServiceCatalog::Types::ExecuteProvisionedProductPlanInput

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 ExecuteProvisionedProductPlanInput data as a hash:

{
  accept_language: "AcceptLanguage",
  plan_id: "Id", # required
  idempotency_token: "IdempotencyToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


2532
2533
2534
2535
2536
2537
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2532

class ExecuteProvisionedProductPlanInput < Struct.new(
  :accept_language,
  :plan_id,
  :idempotency_token)
  include Aws::Structure
end

#idempotency_tokenString

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.

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

Returns:

  • (String)


2532
2533
2534
2535
2536
2537
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2532

class ExecuteProvisionedProductPlanInput < Struct.new(
  :accept_language,
  :plan_id,
  :idempotency_token)
  include Aws::Structure
end

#plan_idString

The plan identifier.

Returns:

  • (String)


2532
2533
2534
2535
2536
2537
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2532

class ExecuteProvisionedProductPlanInput < Struct.new(
  :accept_language,
  :plan_id,
  :idempotency_token)
  include Aws::Structure
end