Class: Aws::ServiceCatalog::Types::SearchProductsInput

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

{
  accept_language: "AcceptLanguage",
  filters: {
    "FullTextSearch" => ["ProductViewFilterValue"],
  },
  page_size: 1,
  sort_by: "Title", # accepts Title, VersionCount, CreationDate
  sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
  page_token: "PageToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


5330
5331
5332
5333
5334
5335
5336
5337
5338
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5330

class SearchProductsInput < Struct.new(
  :accept_language,
  :filters,
  :page_size,
  :sort_by,
  :sort_order,
  :page_token)
  include Aws::Structure
end

#filtersHash<String,Array<String>>

The search filters. If no search filters are specified, the output includes all products to which the caller has access.

Returns:

  • (Hash<String,Array<String>>)


5330
5331
5332
5333
5334
5335
5336
5337
5338
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5330

class SearchProductsInput < Struct.new(
  :accept_language,
  :filters,
  :page_size,
  :sort_by,
  :sort_order,
  :page_token)
  include Aws::Structure
end

#page_sizeInteger

The maximum number of items to return with this call.

Returns:

  • (Integer)


5330
5331
5332
5333
5334
5335
5336
5337
5338
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5330

class SearchProductsInput < Struct.new(
  :accept_language,
  :filters,
  :page_size,
  :sort_by,
  :sort_order,
  :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)


5330
5331
5332
5333
5334
5335
5336
5337
5338
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5330

class SearchProductsInput < Struct.new(
  :accept_language,
  :filters,
  :page_size,
  :sort_by,
  :sort_order,
  :page_token)
  include Aws::Structure
end

#sort_byString

The sort field. If no value is specified, the results are not sorted.

Returns:

  • (String)


5330
5331
5332
5333
5334
5335
5336
5337
5338
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5330

class SearchProductsInput < Struct.new(
  :accept_language,
  :filters,
  :page_size,
  :sort_by,
  :sort_order,
  :page_token)
  include Aws::Structure
end

#sort_orderString

The sort order. If no value is specified, the results are not sorted.

Returns:

  • (String)


5330
5331
5332
5333
5334
5335
5336
5337
5338
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5330

class SearchProductsInput < Struct.new(
  :accept_language,
  :filters,
  :page_size,
  :sort_by,
  :sort_order,
  :page_token)
  include Aws::Structure
end