Class: Aws::ServiceCatalog::Types::CreateTagOptionInput

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

{
  key: "TagOptionKey", # required
  value: "TagOptionValue", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The TagOption key.

Returns:

  • (String)


1259
1260
1261
1262
1263
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1259

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

#valueString

The TagOption value.

Returns:

  • (String)


1259
1260
1261
1262
1263
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1259

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