Struct aws_sdk_lexmodelsv2::operation::list_bot_resource_generations::ListBotResourceGenerationsInput
source · #[non_exhaustive]pub struct ListBotResourceGenerationsInput {
pub bot_id: Option<String>,
pub bot_version: Option<String>,
pub locale_id: Option<String>,
pub sort_by: Option<GenerationSortBy>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bot_id: Option<String>The unique identifier of the bot whose generation requests you want to view.
bot_version: Option<String>The version of the bot whose generation requests you want to view.
locale_id: Option<String>The locale of the bot whose generation requests you want to view.
sort_by: Option<GenerationSortBy>An object containing information about the attribute and the method by which to sort the results
max_results: Option<i32>The maximum number of results to return in the response.
next_token: Option<String>If the total number of results is greater than the number specified in the maxResults, the response returns a token in the nextToken field. Use this token when making a request to return the next batch of results.
Implementations§
source§impl ListBotResourceGenerationsInput
impl ListBotResourceGenerationsInput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot whose generation requests you want to view.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The version of the bot whose generation requests you want to view.
sourcepub fn locale_id(&self) -> Option<&str>
pub fn locale_id(&self) -> Option<&str>
The locale of the bot whose generation requests you want to view.
sourcepub fn sort_by(&self) -> Option<&GenerationSortBy>
pub fn sort_by(&self) -> Option<&GenerationSortBy>
An object containing information about the attribute and the method by which to sort the results
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the total number of results is greater than the number specified in the maxResults, the response returns a token in the nextToken field. Use this token when making a request to return the next batch of results.
source§impl ListBotResourceGenerationsInput
impl ListBotResourceGenerationsInput
sourcepub fn builder() -> ListBotResourceGenerationsInputBuilder
pub fn builder() -> ListBotResourceGenerationsInputBuilder
Creates a new builder-style object to manufacture ListBotResourceGenerationsInput.
Trait Implementations§
source§impl Clone for ListBotResourceGenerationsInput
impl Clone for ListBotResourceGenerationsInput
source§fn clone(&self) -> ListBotResourceGenerationsInput
fn clone(&self) -> ListBotResourceGenerationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListBotResourceGenerationsInput
impl PartialEq for ListBotResourceGenerationsInput
source§fn eq(&self, other: &ListBotResourceGenerationsInput) -> bool
fn eq(&self, other: &ListBotResourceGenerationsInput) -> bool
self and other values to be equal, and is used
by ==.