1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DisassociateLexBot`](crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
    ///   - [`bot_name(impl Into<String>)`](crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder::bot_name) / [`set_bot_name(Option<String>)`](crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder::set_bot_name):<br>required: **true**<br><p>The name of the Amazon Lex bot. Maximum character limit of 50.</p><br>
    ///   - [`lex_region(impl Into<String>)`](crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder::lex_region) / [`set_lex_region(Option<String>)`](crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder::set_lex_region):<br>required: **true**<br><p>The Amazon Web Services Region in which the Amazon Lex bot has been created.</p><br>
    /// - On success, responds with [`DisassociateLexBotOutput`](crate::operation::disassociate_lex_bot::DisassociateLexBotOutput)
    /// - On failure, responds with [`SdkError<DisassociateLexBotError>`](crate::operation::disassociate_lex_bot::DisassociateLexBotError)
    pub fn disassociate_lex_bot(&self) -> crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder {
        crate::operation::disassociate_lex_bot::builders::DisassociateLexBotFluentBuilder::new(self.handle.clone())
    }
}