Skip to content

Batch Get Flow Association

connect_batch_get_flow_association R Documentation

Retrieve the flow associations for the given resources

Description

Retrieve the flow associations for the given resources.

Usage

connect_batch_get_flow_association(InstanceId, ResourceIds,
  ResourceType)

Arguments

InstanceId

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

ResourceIds

[required] A list of resource identifiers to retrieve flow associations.

ResourceType

The type of resource association.

Value

A list with the following syntax:

list(
  FlowAssociationSummaryList = list(
    list(
      ResourceId = "string",
      FlowId = "string",
      ResourceType = "VOICE_PHONE_NUMBER"
    )
  )
)

Request syntax

svc$batch_get_flow_association(
  InstanceId = "string",
  ResourceIds = list(
    "string"
  ),
  ResourceType = "VOICE_PHONE_NUMBER"
)