Struct aws_sdk_lexmodelsv2::input::ListImportsInput
source · [−]#[non_exhaustive]pub struct ListImportsInput { /* private fields */ }Implementations
sourceimpl ListImportsInput
impl ListImportsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListImports, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListImports, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListImports>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListImportsInput.
sourceimpl ListImportsInput
impl ListImportsInput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier that Amazon Lex assigned to the bot.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The version of the bot to list imports for.
sourcepub fn sort_by(&self) -> Option<&ImportSortBy>
pub fn sort_by(&self) -> Option<&ImportSortBy>
Determines the field that the list of imports is sorted by. You can sort by the LastUpdatedDateTime field in ascending or descending order.
sourcepub fn filters(&self) -> Option<&[ImportFilter]>
pub fn filters(&self) -> Option<&[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.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
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.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
Trait Implementations
sourceimpl Clone for ListImportsInput
impl Clone for ListImportsInput
sourcefn clone(&self) -> ListImportsInput
fn clone(&self) -> ListImportsInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more