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.

Instance Attribute Summary collapse

Instance Attribute Details

#activeBoolean

The active state.

Returns:

  • (Boolean)


3667
3668
3669
3670
3671
3672
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3667

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

#keyString

The TagOption key.

Returns:

  • (String)


3667
3668
3669
3670
3671
3672
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3667

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

#valueString

The TagOption value.

Returns:

  • (String)


3667
3668
3669
3670
3671
3672
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3667

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