Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SearchProductsInput

import type { SearchProductsInput } from "https://aws-api.deno.dev/v0.4/services/servicecatalog.ts?docs=full";
interface SearchProductsInput {
AcceptLanguage?: string | null;
Filters?: [key in ProductViewFilterBy]: string[] | null | undefined | null;
PageSize?: number | null;
PageToken?: string | null;
SortBy?: ProductViewSortBy | null;
SortOrder?: SortOrder | null;
}

§Properties

§
AcceptLanguage?: string | null
[src]

The language code.

  • en - English (default)
  • jp - Japanese
  • zh - Chinese
§
Filters?: [key in ProductViewFilterBy]: string[] | null | undefined | null
[src]

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

§
PageSize?: number | null
[src]

The maximum number of items to return with this call.

§
PageToken?: string | null
[src]

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

§
SortBy?: ProductViewSortBy | null
[src]

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

§
SortOrder?: SortOrder | null
[src]

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