List Use Cases
connect_list_use_cases | R Documentation |
Lists the use cases for the integration association¶
Description¶
Lists the use cases for the integration association.
Usage¶
connect_list_use_cases(InstanceId, IntegrationAssociationId, NextToken,
MaxResults)
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. |
IntegrationAssociationId |
[required] The identifier for the integration association. |
NextToken |
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. |
MaxResults |
The maximum number of results to return per page. |
Value¶
A list with the following syntax:
list(
UseCaseSummaryList = list(
list(
UseCaseId = "string",
UseCaseArn = "string",
UseCaseType = "RULES_EVALUATION"|"CONNECT_CAMPAIGNS"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_use_cases(
InstanceId = "string",
IntegrationAssociationId = "string",
NextToken = "string",
MaxResults = 123
)