Struct aws_sdk_lexmodelsv2::input::ListBotVersionsInput
source · [−]#[non_exhaustive]pub struct ListBotVersionsInput { /* private fields */ }Implementations
sourceimpl ListBotVersionsInput
impl ListBotVersionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListBotVersions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListBotVersions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListBotVersions>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListBotVersionsInput.
sourceimpl ListBotVersionsInput
impl ListBotVersionsInput
sourcepub fn sort_by(&self) -> Option<&BotVersionSortBy>
pub fn sort_by(&self) -> Option<&BotVersionSortBy>
Specifies sorting parameters for the list of versions. You can specify that the list be sorted by version name in either ascending or descending order.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of versions 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 to the ListBotVersion 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.
Trait Implementations
sourceimpl Clone for ListBotVersionsInput
impl Clone for ListBotVersionsInput
sourcefn clone(&self) -> ListBotVersionsInput
fn clone(&self) -> ListBotVersionsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ListBotVersionsInput
impl Debug for ListBotVersionsInput
sourceimpl PartialEq<ListBotVersionsInput> for ListBotVersionsInput
impl PartialEq<ListBotVersionsInput> for ListBotVersionsInput
sourcefn eq(&self, other: &ListBotVersionsInput) -> bool
fn eq(&self, other: &ListBotVersionsInput) -> bool
impl StructuralPartialEq for ListBotVersionsInput
Auto Trait Implementations
impl RefUnwindSafe for ListBotVersionsInput
impl Send for ListBotVersionsInput
impl Sync for ListBotVersionsInput
impl Unpin for ListBotVersionsInput
impl UnwindSafe for ListBotVersionsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more