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 ==.impl StructuralPartialEq for ListBotResourceGenerationsInput
Auto Trait Implementations§
impl Freeze for ListBotResourceGenerationsInput
impl RefUnwindSafe for ListBotResourceGenerationsInput
impl Send for ListBotResourceGenerationsInput
impl Sync for ListBotResourceGenerationsInput
impl Unpin for ListBotResourceGenerationsInput
impl UnwindSafe for ListBotResourceGenerationsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more