class Aws::LexModelsV2::Types::ListIntentsRequest

@note When making an API call, you may pass ListIntentsRequest

data as a hash:

    {
      bot_id: "Id", # required
      bot_version: "BotVersion", # required
      locale_id: "LocaleId", # required
      sort_by: {
        attribute: "IntentName", # required, accepts IntentName, LastUpdatedDateTime
        order: "Ascending", # required, accepts Ascending, Descending
      },
      filters: [
        {
          name: "IntentName", # required, accepts IntentName
          values: ["FilterValue"], # required
          operator: "CO", # required, accepts CO, EQ
        },
      ],
      max_results: 1,
      next_token: "NextToken",
    }

@!attribute [rw] bot_id

The unique identifier of the bot that contains the intent.
@return [String]

@!attribute [rw] bot_version

The version of the bot that contains the intent.
@return [String]

@!attribute [rw] locale_id

The identifier of the language and locale of the intents to list.
The string must match one of the supported locales. For more
information, see [Supported languages][1].

[1]: https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html
@return [String]

@!attribute [rw] sort_by

Determines the sort order for the response from the `ListIntents`
operation. You can choose to sort by the intent name or last updated
date in either ascending or descending order.
@return [Types::IntentSortBy]

@!attribute [rw] filters

Provides the specification of a filter used to limit the intents in
the response to only those that match the filter specification. You
can only specify one filter and only one string to filter on.
@return [Array<Types::IntentFilter>]

@!attribute [rw] max_results

The maximum number of intents to return in each page of results. If
there are fewer results than the max page size, only the actual
number of results are returned.
@return [Integer]

@!attribute [rw] next_token

If the response from the `ListIntents` operation contains more
results than specified in the `maxResults` parameter, a token is
returned in the response. Use that token in the `nextToken`
parameter to return the next page of results.
@return [String]

@see docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ListIntentsRequest AWS API Documentation

Constants

SENSITIVE