Class: Aws::ServiceCatalog::Types::ListTagOptionsFilters

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

{
  key: "TagOptionKey",
  value: "TagOptionValue",
  active: false,
}

Filters to use when listing TagOptions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#activeBoolean

The active state.

Returns:

  • (Boolean)


4698
4699
4700
4701
4702
4703
4704
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4698

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

#keyString

The TagOption key.

Returns:

  • (String)


4698
4699
4700
4701
4702
4703
4704
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4698

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

#valueString

The TagOption value.

Returns:

  • (String)


4698
4699
4700
4701
4702
4703
4704
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4698

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