#[non_exhaustive]pub struct DeleteBotAliasInput { /* private fields */ }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) -> bool
pub fn skip_resource_in_use_check(&self) -> 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.
source§impl DeleteBotAliasInput
impl DeleteBotAliasInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteBotAlias, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<DeleteBotAlias, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeleteBotAlias>
Trait Implementations§
source§impl Clone for DeleteBotAliasInput
impl Clone for DeleteBotAliasInput
source§fn clone(&self) -> DeleteBotAliasInput
fn clone(&self) -> DeleteBotAliasInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DeleteBotAliasInput
impl Debug for DeleteBotAliasInput
source§impl PartialEq<DeleteBotAliasInput> for DeleteBotAliasInput
impl PartialEq<DeleteBotAliasInput> for DeleteBotAliasInput
source§fn eq(&self, other: &DeleteBotAliasInput) -> bool
fn eq(&self, other: &DeleteBotAliasInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.