Resource Type definition for AWS::Connect::IntegrationAssociation
Allows the specified Amazon Connect instance to access the specified Amazon Lex bot
To use awscc_connect_integration_association to create a single branch:
resource "awscc_connect_integration_association" "this" {
instance_id = "arn:aws:connect:us-east-1:111122223333:instance/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
integration_arn = "arn:aws:lex:us-east-1:111122223333:bot-alias/AAAAAAAAAA/BBBBBBBBBB"
integration_type = "LEX_BOT"
}
Allows the specified Amazon Connect instance to access the specified Lambda function.
To use awscc_connect_integration_association to create multiple branches:
resource "awscc_connect_integration_association" "this" {
instance_id = "arn:aws:connect:us-east-1:111122223333:instance/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
integration_arn = "arn:aws:lambda:us-east-1:111122223333:function:example_function"
integration_type = "LAMBDA_FUNCTION"
}
instance_id
(String) Amazon Connect instance identifierintegration_arn
(String) ARN of Integration being associated with the instanceintegration_type
(String) Specifies the integration type to be associated with the instanceid
(String) Uniquely identifies the resource.integration_association_id
(String) Identifier of the association with Connect InstanceImport is supported using the following syntax:
$ terraform import awscc_connect_integration_association.example <resource ID>