Class: Aws::ServiceCatalog::Types::ProvisioningParameter

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

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

Information about a parameter used to provision a product.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The parameter key.

Returns:

  • (String)


4660
4661
4662
4663
4664
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4660

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

#valueString

The parameter value.

Returns:

  • (String)


4660
4661
4662
4663
4664
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4660

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