Connect / Client / batch_get_flow_association

batch_get_flow_association#

Connect.Client.batch_get_flow_association(**kwargs)#

Retrieve the flow associations for the given resources.

See also: AWS API Documentation

Request Syntax

response = client.batch_get_flow_association(
    InstanceId='string',
    ResourceIds=[
        'string',
    ],
    ResourceType='VOICE_PHONE_NUMBER'
)
Parameters:
  • InstanceId (string) –

    [REQUIRED]

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

  • ResourceIds (list) –

    [REQUIRED]

    A list of resource identifiers to retrieve flow associations.

    • (string) –

  • ResourceType (string) – The type of resource association.

Return type:

dict

Returns:

Response Syntax

{
    'FlowAssociationSummaryList': [
        {
            'ResourceId': 'string',
            'FlowId': 'string',
            'ResourceType': 'VOICE_PHONE_NUMBER'
        },
    ]
}

Response Structure

  • (dict) –

    • FlowAssociationSummaryList (list) –

      Information about flow associations.

      • (dict) –

        Information about flow associations.

        • ResourceId (string) –

          The identifier of the resource.

        • FlowId (string) –

          The identifier of the flow.

        • ResourceType (string) –

          The type of resource association.

Exceptions