Class: Aws::ServiceCatalog::Types::UpdateTagOptionInput

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

{
  id: "TagOptionId", # required
  value: "TagOptionValue",
  active: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#activeBoolean

The updated active state.

Returns:

  • (Boolean)


6419
6420
6421
6422
6423
6424
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6419

class UpdateTagOptionInput < Struct.new(
  :id,
  :value,
  :active)
  include Aws::Structure
end

#idString

The TagOption identifier.

Returns:

  • (String)


6419
6420
6421
6422
6423
6424
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6419

class UpdateTagOptionInput < Struct.new(
  :id,
  :value,
  :active)
  include Aws::Structure
end

#valueString

The updated value.

Returns:

  • (String)


6419
6420
6421
6422
6423
6424
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6419

class UpdateTagOptionInput < Struct.new(
  :id,
  :value,
  :active)
  include Aws::Structure
end