Struct aws_sdk_lexmodelsv2::client::fluent_builders::DeleteBotAlias
source · pub struct DeleteBotAlias { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteBotAlias.
Deletes the specified bot alias.
Implementations§
source§impl DeleteBotAlias
impl DeleteBotAlias
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteBotAlias, AwsResponseRetryClassifier>, SdkError<DeleteBotAliasError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DeleteBotAlias, AwsResponseRetryClassifier>, SdkError<DeleteBotAliasError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DeleteBotAliasOutput, SdkError<DeleteBotAliasError>>
pub async fn send(
self
) -> Result<DeleteBotAliasOutput, SdkError<DeleteBotAliasError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn bot_alias_id(self, input: impl Into<String>) -> Self
pub fn bot_alias_id(self, input: impl Into<String>) -> Self
The unique identifier of the bot alias to delete.
sourcepub fn set_bot_alias_id(self, input: Option<String>) -> Self
pub fn set_bot_alias_id(self, input: Option<String>) -> Self
The unique identifier of the bot alias to delete.
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The unique identifier of the bot associated with the alias to delete.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The unique identifier of the bot associated with the alias to delete.
sourcepub fn skip_resource_in_use_check(self, input: bool) -> Self
pub fn skip_resource_in_use_check(self, input: bool) -> Self
When this parameter is true, Amazon Lex doesn't check to see if any other resource is using the alias before it is deleted.
sourcepub fn set_skip_resource_in_use_check(self, input: Option<bool>) -> Self
pub fn set_skip_resource_in_use_check(self, input: Option<bool>) -> Self
When this parameter is true, Amazon Lex doesn't check to see if any other resource is using the alias before it is deleted.
Trait Implementations§
source§impl Clone for DeleteBotAlias
impl Clone for DeleteBotAlias
source§fn clone(&self) -> DeleteBotAlias
fn clone(&self) -> DeleteBotAlias
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more