Class: Aws::ServiceCatalog::Types::UpdateProvisioningParameter

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

{
  key: "ParameterKey",
  value: "ParameterValue",
  use_previous_value: false,
}

The parameter key-value pair used to update a provisioned product.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The parameter key.

Returns:

  • (String)


6176
6177
6178
6179
6180
6181
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6176

class UpdateProvisioningParameter < Struct.new(
  :key,
  :value,
  :use_previous_value)
  include Aws::Structure
end

#use_previous_valueBoolean

If set to true, ‘Value` is ignored and the previous parameter value is kept.

Returns:

  • (Boolean)


6176
6177
6178
6179
6180
6181
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6176

class UpdateProvisioningParameter < Struct.new(
  :key,
  :value,
  :use_previous_value)
  include Aws::Structure
end

#valueString

The parameter value.

Returns:

  • (String)


6176
6177
6178
6179
6180
6181
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6176

class UpdateProvisioningParameter < Struct.new(
  :key,
  :value,
  :use_previous_value)
  include Aws::Structure
end