awscc_connect_integration_association (Resource)

Resource Type definition for AWS::Connect::IntegrationAssociation

Example Usage

Associate Lex Bot

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"
}

Associate Lambda Function

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"
}

Schema

Required

Read-Only

Import

Import is supported using the following syntax:

$ terraform import awscc_connect_integration_association.example <resource ID>