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 [`AssociateBot`](crate::operation::associate_bot::builders::AssociateBotFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::associate_bot::builders::AssociateBotFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::associate_bot::builders::AssociateBotFluentBuilder::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>
    ///   - [`lex_bot(LexBot)`](crate::operation::associate_bot::builders::AssociateBotFluentBuilder::lex_bot) / [`set_lex_bot(Option<LexBot>)`](crate::operation::associate_bot::builders::AssociateBotFluentBuilder::set_lex_bot):<br>required: **false**<br><p>Configuration information of an Amazon Lex bot.</p><br>
    ///   - [`lex_v2_bot(LexV2Bot)`](crate::operation::associate_bot::builders::AssociateBotFluentBuilder::lex_v2_bot) / [`set_lex_v2_bot(Option<LexV2Bot>)`](crate::operation::associate_bot::builders::AssociateBotFluentBuilder::set_lex_v2_bot):<br>required: **false**<br><p>The Amazon Lex V2 bot to associate with the instance.</p><br>
    /// - On success, responds with [`AssociateBotOutput`](crate::operation::associate_bot::AssociateBotOutput)
    /// - On failure, responds with [`SdkError<AssociateBotError>`](crate::operation::associate_bot::AssociateBotError)
    pub fn associate_bot(&self) -> crate::operation::associate_bot::builders::AssociateBotFluentBuilder {
        crate::operation::associate_bot::builders::AssociateBotFluentBuilder::new(self.handle.clone())
    }
}