Class: Aws::ServiceCatalog::Types::ExecuteProvisionedProductServiceActionInput

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

{
  provisioned_product_id: "Id", # required
  service_action_id: "Id", # required
  execute_token: "IdempotencyToken", # required
  accept_language: "AcceptLanguage",
  parameters: {
    "ExecutionParameterKey" => ["ExecutionParameterValue"],
  },
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


3058
3059
3060
3061
3062
3063
3064
3065
3066
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3058

class ExecuteProvisionedProductServiceActionInput < Struct.new(
  :provisioned_product_id,
  :service_action_id,
  :execute_token,
  :accept_language,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#execute_tokenString

An idempotency token that uniquely identifies the execute request.

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

Returns:

  • (String)


3058
3059
3060
3061
3062
3063
3064
3065
3066
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3058

class ExecuteProvisionedProductServiceActionInput < Struct.new(
  :provisioned_product_id,
  :service_action_id,
  :execute_token,
  :accept_language,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#parametersHash<String,Array<String>>

A map of all self-service action parameters and their values. If a provided parameter is of a special type, such as ‘TARGET`, the provided value will override the default value generated by AWS Service Catalog. If the parameters field is not provided, no additional parameters are passed and default values will be used for any special parameters such as `TARGET`.

Returns:

  • (Hash<String,Array<String>>)


3058
3059
3060
3061
3062
3063
3064
3065
3066
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3058

class ExecuteProvisionedProductServiceActionInput < Struct.new(
  :provisioned_product_id,
  :service_action_id,
  :execute_token,
  :accept_language,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#provisioned_product_idString

The identifier of the provisioned product.

Returns:

  • (String)


3058
3059
3060
3061
3062
3063
3064
3065
3066
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3058

class ExecuteProvisionedProductServiceActionInput < Struct.new(
  :provisioned_product_id,
  :service_action_id,
  :execute_token,
  :accept_language,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#service_action_idString

The self-service action identifier. For example, ‘act-fs7abcd89wxyz`.

Returns:

  • (String)


3058
3059
3060
3061
3062
3063
3064
3065
3066
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3058

class ExecuteProvisionedProductServiceActionInput < Struct.new(
  :provisioned_product_id,
  :service_action_id,
  :execute_token,
  :accept_language,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end