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 = "WHATSAPP_MESSAGING_PHONE_NUMBER"|"VOICE_PHONE_NUMBER"|"INBOUND_EMAIL"|"OUTBOUND_EMAIL"|"ANALYTICS_CONNECTOR"
)
)
)
Request syntax¶
svc$batch_get_flow_association(
InstanceId = "string",
ResourceIds = list(
"string"
),
ResourceType = "WHATSAPP_MESSAGING_PHONE_NUMBER"|"VOICE_PHONE_NUMBER"|"INBOUND_EMAIL"|"OUTBOUND_EMAIL"|"ANALYTICS_CONNECTOR"
)