Create Integration Association
| connect_create_integration_association | R Documentation |
Creates an Amazon Web Services resource association with an Amazon Connect instance¶
Description¶
Creates an Amazon Web Services resource association with an Amazon Connect instance.
Usage¶
connect_create_integration_association(InstanceId, IntegrationType,
IntegrationArn, SourceApplicationUrl, SourceApplicationName, SourceType,
Tags)
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.
IntegrationType[required] The type of information to be ingested.
IntegrationArn[required] The Amazon Resource Name (ARN) of the integration.
When integrating with Amazon Pinpoint, the Amazon Connect and Amazon Pinpoint instances must be in the same account.
SourceApplicationUrlThe URL for the external application. This field is only required for the EVENT integration type.
SourceApplicationNameThe name of the external application. This field is only required for the EVENT integration type.
SourceTypeThe type of the data source. This field is only required for the EVENT integration type.
TagsThe tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_integration_association(
InstanceId = "string",
IntegrationType = "EVENT"|"VOICE_ID"|"PINPOINT_APP"|"WISDOM_ASSISTANT"|"WISDOM_KNOWLEDGE_BASE"|"WISDOM_QUICK_RESPONSES"|"CASES_DOMAIN"|"APPLICATION"|"FILE_SCANNER",
IntegrationArn = "string",
SourceApplicationUrl = "string",
SourceApplicationName = "string",
SourceType = "SALESFORCE"|"ZENDESK"|"CASES",
Tags = list(
"string"
)
)