#[non_exhaustive]pub struct DeleteBotAliasInput {
pub bot_alias_id: Option<String>,
pub bot_id: Option<String>,
pub skip_resource_in_use_check: Option<bool>,
}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_alias_id: Option<String>The unique identifier of the bot alias to delete.
bot_id: Option<String>The unique identifier of the bot associated with the alias to delete.
skip_resource_in_use_check: Option<bool>By default, Amazon Lex checks if any other resource, such as a bot network, is using the bot alias before it is deleted and throws a ResourceInUseException exception if the alias is being used by another resource. Set this parameter to true to skip this check and remove the alias even if it is being used by another resource.
Implementations§
source§impl DeleteBotAliasInput
impl DeleteBotAliasInput
sourcepub fn bot_alias_id(&self) -> Option<&str>
pub fn bot_alias_id(&self) -> Option<&str>
The unique identifier of the bot alias to delete.
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot associated with the alias to delete.
sourcepub fn skip_resource_in_use_check(&self) -> Option<bool>
pub fn skip_resource_in_use_check(&self) -> Option<bool>
By default, Amazon Lex checks if any other resource, such as a bot network, is using the bot alias before it is deleted and throws a ResourceInUseException exception if the alias is being used by another resource. Set this parameter to true to skip this check and remove the alias even if it is being used by another resource.
source§impl DeleteBotAliasInput
impl DeleteBotAliasInput
sourcepub fn builder() -> DeleteBotAliasInputBuilder
pub fn builder() -> DeleteBotAliasInputBuilder
Creates a new builder-style object to manufacture DeleteBotAliasInput.
Trait Implementations§
source§impl Clone for DeleteBotAliasInput
impl Clone for DeleteBotAliasInput
source§fn clone(&self) -> DeleteBotAliasInput
fn clone(&self) -> DeleteBotAliasInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteBotAliasInput
impl Debug for DeleteBotAliasInput
source§impl PartialEq for DeleteBotAliasInput
impl PartialEq for DeleteBotAliasInput
source§fn eq(&self, other: &DeleteBotAliasInput) -> bool
fn eq(&self, other: &DeleteBotAliasInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteBotAliasInput
Auto Trait Implementations§
impl Freeze for DeleteBotAliasInput
impl RefUnwindSafe for DeleteBotAliasInput
impl Send for DeleteBotAliasInput
impl Sync for DeleteBotAliasInput
impl Unpin for DeleteBotAliasInput
impl UnwindSafe for DeleteBotAliasInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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