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,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#activeBoolean

The updated active state.

Returns:

  • (Boolean)


8027
8028
8029
8030
8031
8032
8033
# File 'lib/aws-sdk-servicecatalog/types.rb', line 8027

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

#idString

The TagOption identifier.

Returns:

  • (String)


8027
8028
8029
8030
8031
8032
8033
# File 'lib/aws-sdk-servicecatalog/types.rb', line 8027

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

#valueString

The updated value.

Returns:

  • (String)


8027
8028
8029
8030
8031
8032
8033
# File 'lib/aws-sdk-servicecatalog/types.rb', line 8027

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