Class: Aws::ServiceCatalog::Types::ListTagOptionsInput

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

{
  filters: {
    key: "TagOptionKey",
    value: "TagOptionValue",
    active: false,
  },
  page_size: 1,
  page_token: "PageToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersTypes::ListTagOptionsFilters

The search filters. If no search filters are specified, the output includes all TagOptions.



3703
3704
3705
3706
3707
3708
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3703

class ListTagOptionsInput < Struct.new(
  :filters,
  :page_size,
  :page_token)
  include Aws::Structure
end

#page_sizeInteger

The maximum number of items to return with this call.

Returns:

  • (Integer)


3703
3704
3705
3706
3707
3708
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3703

class ListTagOptionsInput < Struct.new(
  :filters,
  :page_size,
  :page_token)
  include Aws::Structure
end

#page_tokenString

The page token for the next set of results. To retrieve the first set of results, use null.

Returns:

  • (String)


3703
3704
3705
3706
3707
3708
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3703

class ListTagOptionsInput < Struct.new(
  :filters,
  :page_size,
  :page_token)
  include Aws::Structure
end