Class: Aws::LexModelsV2::Types::ListImportsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::ListImportsRequest
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bot_id ⇒ String
The unique identifier that Amazon Lex assigned to the bot.
-
#bot_version ⇒ String
The version of the bot to list imports for.
-
#filters ⇒ Array<Types::ImportFilter>
Provides the specification of a filter used to limit the bots in the response to only those that match the filter specification.
-
#locale_id ⇒ String
Specifies the locale that should be present in the list.
-
#max_results ⇒ Integer
The maximum number of imports to return in each page of results.
-
#next_token ⇒ String
If the response from the
ListImports
operation contains more results than specified in themaxResults
parameter, a token is returned in the response. -
#sort_by ⇒ Types::ImportSortBy
Determines the field that the list of imports is sorted by.
Instance Attribute Details
#bot_id ⇒ String
The unique identifier that Amazon Lex assigned to the bot.
9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 9095 class ListImportsRequest < Struct.new( :bot_id, :bot_version, :sort_by, :filters, :max_results, :next_token, :locale_id) SENSITIVE = [] include Aws::Structure end |
#bot_version ⇒ String
The version of the bot to list imports for.
9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 9095 class ListImportsRequest < Struct.new( :bot_id, :bot_version, :sort_by, :filters, :max_results, :next_token, :locale_id) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Array<Types::ImportFilter>
Provides the specification of a filter used to limit the bots in the response to only those that match the filter specification. You can only specify one filter and one string to filter on.
9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 9095 class ListImportsRequest < Struct.new( :bot_id, :bot_version, :sort_by, :filters, :max_results, :next_token, :locale_id) SENSITIVE = [] include Aws::Structure end |
#locale_id ⇒ String
Specifies the locale that should be present in the list. If you
don't specify a resource type in the filters
parameter, the list
contains both bot locales and custom vocabularies.
9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 9095 class ListImportsRequest < Struct.new( :bot_id, :bot_version, :sort_by, :filters, :max_results, :next_token, :locale_id) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of imports 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.
9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 9095 class ListImportsRequest < Struct.new( :bot_id, :bot_version, :sort_by, :filters, :max_results, :next_token, :locale_id) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response from the ListImports
operation contains more
results than specified in the maxResults
parameter, a token is
returned in the response.
Use the returned token in the nextToken
parameter of a
ListImports
request to return the next page of results. For a
complete set of results, call the ListImports
operation until the
nextToken
returned in the response is null.
9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 9095 class ListImportsRequest < Struct.new( :bot_id, :bot_version, :sort_by, :filters, :max_results, :next_token, :locale_id) SENSITIVE = [] include Aws::Structure end |
#sort_by ⇒ Types::ImportSortBy
Determines the field that the list of imports is sorted by. You can
sort by the LastUpdatedDateTime
field in ascending or descending
order.
9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 9095 class ListImportsRequest < Struct.new( :bot_id, :bot_version, :sort_by, :filters, :max_results, :next_token, :locale_id) SENSITIVE = [] include Aws::Structure end |