Struct aws_sdk_lexmodelsv2::operation::delete_custom_vocabulary::builders::DeleteCustomVocabularyOutputBuilder
source · #[non_exhaustive]pub struct DeleteCustomVocabularyOutputBuilder { /* private fields */ }Expand description
A builder for DeleteCustomVocabularyOutput.
Implementations§
source§impl DeleteCustomVocabularyOutputBuilder
impl DeleteCustomVocabularyOutputBuilder
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The identifier of the bot that the custom vocabulary was removed from.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The identifier of the bot that the custom vocabulary was removed from.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The identifier of the bot that the custom vocabulary was removed from.
sourcepub fn bot_version(self, input: impl Into<String>) -> Self
pub fn bot_version(self, input: impl Into<String>) -> Self
The version of the bot that the custom vocabulary was removed from.
sourcepub fn set_bot_version(self, input: Option<String>) -> Self
pub fn set_bot_version(self, input: Option<String>) -> Self
The version of the bot that the custom vocabulary was removed from.
sourcepub fn get_bot_version(&self) -> &Option<String>
pub fn get_bot_version(&self) -> &Option<String>
The version of the bot that the custom vocabulary was removed from.
sourcepub fn locale_id(self, input: impl Into<String>) -> Self
pub fn locale_id(self, input: impl Into<String>) -> Self
The locale identifier for the locale that the custom vocabulary was removed from.
sourcepub fn set_locale_id(self, input: Option<String>) -> Self
pub fn set_locale_id(self, input: Option<String>) -> Self
The locale identifier for the locale that the custom vocabulary was removed from.
sourcepub fn get_locale_id(&self) -> &Option<String>
pub fn get_locale_id(&self) -> &Option<String>
The locale identifier for the locale that the custom vocabulary was removed from.
sourcepub fn custom_vocabulary_status(self, input: CustomVocabularyStatus) -> Self
pub fn custom_vocabulary_status(self, input: CustomVocabularyStatus) -> Self
The status of removing the custom vocabulary.
sourcepub fn set_custom_vocabulary_status(
self,
input: Option<CustomVocabularyStatus>,
) -> Self
pub fn set_custom_vocabulary_status( self, input: Option<CustomVocabularyStatus>, ) -> Self
The status of removing the custom vocabulary.
sourcepub fn get_custom_vocabulary_status(&self) -> &Option<CustomVocabularyStatus>
pub fn get_custom_vocabulary_status(&self) -> &Option<CustomVocabularyStatus>
The status of removing the custom vocabulary.
sourcepub fn build(self) -> DeleteCustomVocabularyOutput
pub fn build(self) -> DeleteCustomVocabularyOutput
Consumes the builder and constructs a DeleteCustomVocabularyOutput.
Trait Implementations§
source§impl Clone for DeleteCustomVocabularyOutputBuilder
impl Clone for DeleteCustomVocabularyOutputBuilder
source§fn clone(&self) -> DeleteCustomVocabularyOutputBuilder
fn clone(&self) -> DeleteCustomVocabularyOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeleteCustomVocabularyOutputBuilder
impl Default for DeleteCustomVocabularyOutputBuilder
source§fn default() -> DeleteCustomVocabularyOutputBuilder
fn default() -> DeleteCustomVocabularyOutputBuilder
source§impl PartialEq for DeleteCustomVocabularyOutputBuilder
impl PartialEq for DeleteCustomVocabularyOutputBuilder
source§fn eq(&self, other: &DeleteCustomVocabularyOutputBuilder) -> bool
fn eq(&self, other: &DeleteCustomVocabularyOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteCustomVocabularyOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteCustomVocabularyOutputBuilder
impl RefUnwindSafe for DeleteCustomVocabularyOutputBuilder
impl Send for DeleteCustomVocabularyOutputBuilder
impl Sync for DeleteCustomVocabularyOutputBuilder
impl Unpin for DeleteCustomVocabularyOutputBuilder
impl UnwindSafe for DeleteCustomVocabularyOutputBuilder
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