Struct aws_sdk_lexmodelsv2::operation::list_custom_vocabulary_items::ListCustomVocabularyItemsInput
source · #[non_exhaustive]pub struct ListCustomVocabularyItemsInput {
pub bot_id: Option<String>,
pub bot_version: Option<String>,
pub locale_id: Option<String>,
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 identifier of the version of the bot associated with this custom vocabulary.
bot_version: Option<String>The bot version of the bot to the list custom vocabulary request.
locale_id: Option<String>The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported languages (https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html).
max_results: Option<i32>The maximum number of items returned by the list operation.
next_token: Option<String>The nextToken identifier to the list custom vocabulary request.
Implementations§
source§impl ListCustomVocabularyItemsInput
impl ListCustomVocabularyItemsInput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The identifier of the version of the bot associated with this custom vocabulary.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The bot version of the bot to the list custom vocabulary request.
sourcepub fn locale_id(&self) -> Option<&str>
pub fn locale_id(&self) -> Option<&str>
The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported languages (https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html).
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items returned by the list operation.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken identifier to the list custom vocabulary request.
source§impl ListCustomVocabularyItemsInput
impl ListCustomVocabularyItemsInput
sourcepub fn builder() -> ListCustomVocabularyItemsInputBuilder
pub fn builder() -> ListCustomVocabularyItemsInputBuilder
Creates a new builder-style object to manufacture ListCustomVocabularyItemsInput.
Trait Implementations§
source§impl Clone for ListCustomVocabularyItemsInput
impl Clone for ListCustomVocabularyItemsInput
source§fn clone(&self) -> ListCustomVocabularyItemsInput
fn clone(&self) -> ListCustomVocabularyItemsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListCustomVocabularyItemsInput
impl PartialEq for ListCustomVocabularyItemsInput
source§fn eq(&self, other: &ListCustomVocabularyItemsInput) -> bool
fn eq(&self, other: &ListCustomVocabularyItemsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListCustomVocabularyItemsInput
Auto Trait Implementations§
impl Freeze for ListCustomVocabularyItemsInput
impl RefUnwindSafe for ListCustomVocabularyItemsInput
impl Send for ListCustomVocabularyItemsInput
impl Sync for ListCustomVocabularyItemsInput
impl Unpin for ListCustomVocabularyItemsInput
impl UnwindSafe for ListCustomVocabularyItemsInput
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> 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