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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The parameter key.

Returns:

  • (String)


7780
7781
7782
7783
7784
7785
7786
# File 'lib/aws-sdk-servicecatalog/types.rb', line 7780

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

#use_previous_valueBoolean

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

Returns:

  • (Boolean)


7780
7781
7782
7783
7784
7785
7786
# File 'lib/aws-sdk-servicecatalog/types.rb', line 7780

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

#valueString

The parameter value.

Returns:

  • (String)


7780
7781
7782
7783
7784
7785
7786
# File 'lib/aws-sdk-servicecatalog/types.rb', line 7780

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