1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeContactFlow`](crate::operation::describe_contact_flow::builders::DescribeContactFlowFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::describe_contact_flow::builders::DescribeContactFlowFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::describe_contact_flow::builders::DescribeContactFlowFluentBuilder::set_instance_id): <p>The identifier of the Amazon Connect instance.</p>
    ///   - [`contact_flow_id(impl Into<String>)`](crate::operation::describe_contact_flow::builders::DescribeContactFlowFluentBuilder::contact_flow_id) / [`set_contact_flow_id(Option<String>)`](crate::operation::describe_contact_flow::builders::DescribeContactFlowFluentBuilder::set_contact_flow_id): <p>The identifier of the flow.</p>
    /// - On success, responds with [`DescribeContactFlowOutput`](crate::operation::describe_contact_flow::DescribeContactFlowOutput) with field(s):
    ///   - [`contact_flow(Option<ContactFlow>)`](crate::operation::describe_contact_flow::DescribeContactFlowOutput::contact_flow): <p>Information about the flow.</p>
    /// - On failure, responds with [`SdkError<DescribeContactFlowError>`](crate::operation::describe_contact_flow::DescribeContactFlowError)
    pub fn describe_contact_flow(
        &self,
    ) -> crate::operation::describe_contact_flow::builders::DescribeContactFlowFluentBuilder {
        crate::operation::describe_contact_flow::builders::DescribeContactFlowFluentBuilder::new(
            self.handle.clone(),
        )
    }
}