1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetFlowAssociation`](crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder::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>
    ///   - [`resource_ids(impl Into<String>)`](crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder::resource_ids) / [`set_resource_ids(Option<Vec::<String>>)`](crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder::set_resource_ids):<br>required: **true**<br><p>A list of resource identifiers to retrieve flow associations.</p><br>
    ///   - [`resource_type(ListFlowAssociationResourceType)`](crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder::resource_type) / [`set_resource_type(Option<ListFlowAssociationResourceType>)`](crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder::set_resource_type):<br>required: **false**<br><p>The type of resource association.</p><br>
    /// - On success, responds with [`BatchGetFlowAssociationOutput`](crate::operation::batch_get_flow_association::BatchGetFlowAssociationOutput) with field(s):
    ///   - [`flow_association_summary_list(Option<Vec::<FlowAssociationSummary>>)`](crate::operation::batch_get_flow_association::BatchGetFlowAssociationOutput::flow_association_summary_list): <p>Information about flow associations.</p>
    /// - On failure, responds with [`SdkError<BatchGetFlowAssociationError>`](crate::operation::batch_get_flow_association::BatchGetFlowAssociationError)
    pub fn batch_get_flow_association(&self) -> crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder {
        crate::operation::batch_get_flow_association::builders::BatchGetFlowAssociationFluentBuilder::new(self.handle.clone())
    }
}