1. Packages
  2. Packages
  3. AWS Cloud Control
  4. API Docs
  5. connect
  6. IntegrationAssociation

We recommend new projects start with resources from the AWS provider.

Viewing docs for AWS Cloud Control v1.68.0
published on Monday, Jun 1, 2026 by Pulumi
aws-native logo

We recommend new projects start with resources from the AWS provider.

Viewing docs for AWS Cloud Control v1.68.0
published on Monday, Jun 1, 2026 by Pulumi

    Resource Type definition for AWS::Connect::IntegrationAssociation

    Example Usage

    Example

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AwsNative = Pulumi.AwsNative;
    
    return await Deployment.RunAsync(() => 
    {
        var integrationAssociation = new AwsNative.Connect.IntegrationAssociation("integrationAssociation", new()
        {
            InstanceId = "arn:aws:connect:region-name:aws-account-id:instance/instance-id",
            IntegrationType = AwsNative.Connect.IntegrationAssociationIntegrationType.LexBot,
            IntegrationArn = "arn:aws:lex:region-name:aws-account-id:bot/bot-name",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/connect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := connect.NewIntegrationAssociation(ctx, "integrationAssociation", &connect.IntegrationAssociationArgs{
    			InstanceId:      pulumi.String("arn:aws:connect:region-name:aws-account-id:instance/instance-id"),
    			IntegrationType: connect.IntegrationAssociationIntegrationTypeLexBot,
    			IntegrationArn:  pulumi.String("arn:aws:lex:region-name:aws-account-id:bot/bot-name"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as aws_native from "@pulumi/aws-native";
    
    const integrationAssociation = new aws_native.connect.IntegrationAssociation("integrationAssociation", {
        instanceId: "arn:aws:connect:region-name:aws-account-id:instance/instance-id",
        integrationType: aws_native.connect.IntegrationAssociationIntegrationType.LexBot,
        integrationArn: "arn:aws:lex:region-name:aws-account-id:bot/bot-name",
    });
    
    import pulumi
    import pulumi_aws_native as aws_native
    
    integration_association = aws_native.connect.IntegrationAssociation("integrationAssociation",
        instance_id="arn:aws:connect:region-name:aws-account-id:instance/instance-id",
        integration_type=aws_native.connect.IntegrationAssociationIntegrationType.LEX_BOT,
        integration_arn="arn:aws:lex:region-name:aws-account-id:bot/bot-name")
    

    Example coming soon!

    Example

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AwsNative = Pulumi.AwsNative;
    
    return await Deployment.RunAsync(() => 
    {
        var integrationAssociation = new AwsNative.Connect.IntegrationAssociation("integrationAssociation", new()
        {
            InstanceId = "arn:aws:connect:region-name:aws-account-id:instance/instance-id",
            IntegrationType = AwsNative.Connect.IntegrationAssociationIntegrationType.LexBot,
            IntegrationArn = "arn:aws:lex:region-name:aws-account-id:bot-alias/bot-id/alias-id",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/connect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := connect.NewIntegrationAssociation(ctx, "integrationAssociation", &connect.IntegrationAssociationArgs{
    			InstanceId:      pulumi.String("arn:aws:connect:region-name:aws-account-id:instance/instance-id"),
    			IntegrationType: connect.IntegrationAssociationIntegrationTypeLexBot,
    			IntegrationArn:  pulumi.String("arn:aws:lex:region-name:aws-account-id:bot-alias/bot-id/alias-id"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as aws_native from "@pulumi/aws-native";
    
    const integrationAssociation = new aws_native.connect.IntegrationAssociation("integrationAssociation", {
        instanceId: "arn:aws:connect:region-name:aws-account-id:instance/instance-id",
        integrationType: aws_native.connect.IntegrationAssociationIntegrationType.LexBot,
        integrationArn: "arn:aws:lex:region-name:aws-account-id:bot-alias/bot-id/alias-id",
    });
    
    import pulumi
    import pulumi_aws_native as aws_native
    
    integration_association = aws_native.connect.IntegrationAssociation("integrationAssociation",
        instance_id="arn:aws:connect:region-name:aws-account-id:instance/instance-id",
        integration_type=aws_native.connect.IntegrationAssociationIntegrationType.LEX_BOT,
        integration_arn="arn:aws:lex:region-name:aws-account-id:bot-alias/bot-id/alias-id")
    

    Example coming soon!

    Example

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AwsNative = Pulumi.AwsNative;
    
    return await Deployment.RunAsync(() => 
    {
        var integrationAssociation = new AwsNative.Connect.IntegrationAssociation("integrationAssociation", new()
        {
            InstanceId = "arn:aws:connect:region-name:aws-account-id:instance/instance-id",
            IntegrationType = AwsNative.Connect.IntegrationAssociationIntegrationType.LambdaFunction,
            IntegrationArn = "arn:aws:lambda:region-name:aws-account-id:function:function-arn",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/connect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := connect.NewIntegrationAssociation(ctx, "integrationAssociation", &connect.IntegrationAssociationArgs{
    			InstanceId:      pulumi.String("arn:aws:connect:region-name:aws-account-id:instance/instance-id"),
    			IntegrationType: connect.IntegrationAssociationIntegrationTypeLambdaFunction,
    			IntegrationArn:  pulumi.String("arn:aws:lambda:region-name:aws-account-id:function:function-arn"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as aws_native from "@pulumi/aws-native";
    
    const integrationAssociation = new aws_native.connect.IntegrationAssociation("integrationAssociation", {
        instanceId: "arn:aws:connect:region-name:aws-account-id:instance/instance-id",
        integrationType: aws_native.connect.IntegrationAssociationIntegrationType.LambdaFunction,
        integrationArn: "arn:aws:lambda:region-name:aws-account-id:function:function-arn",
    });
    
    import pulumi
    import pulumi_aws_native as aws_native
    
    integration_association = aws_native.connect.IntegrationAssociation("integrationAssociation",
        instance_id="arn:aws:connect:region-name:aws-account-id:instance/instance-id",
        integration_type=aws_native.connect.IntegrationAssociationIntegrationType.LAMBDA_FUNCTION,
        integration_arn="arn:aws:lambda:region-name:aws-account-id:function:function-arn")
    

    Example coming soon!

    Create IntegrationAssociation Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IntegrationAssociation(name: string, args: IntegrationAssociationArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAssociation(resource_name: str,
                               args: IntegrationAssociationArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationAssociation(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               instance_id: Optional[str] = None,
                               integration_arn: Optional[str] = None,
                               integration_type: Optional[IntegrationAssociationIntegrationType] = None,
                               tags: Optional[Sequence[_root_inputs.TagArgs]] = None)
    func NewIntegrationAssociation(ctx *Context, name string, args IntegrationAssociationArgs, opts ...ResourceOption) (*IntegrationAssociation, error)
    public IntegrationAssociation(string name, IntegrationAssociationArgs args, CustomResourceOptions? opts = null)
    public IntegrationAssociation(String name, IntegrationAssociationArgs args)
    public IntegrationAssociation(String name, IntegrationAssociationArgs args, CustomResourceOptions options)
    
    type: aws-native:connect:IntegrationAssociation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws-native_connect_integrationassociation" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args IntegrationAssociationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IntegrationAssociationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IntegrationAssociationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationAssociationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationAssociationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    IntegrationAssociation Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The IntegrationAssociation resource accepts the following input properties:

    InstanceId string

    The Amazon Resource Name (ARN) of the instance.

    Minimum : 1

    Maximum : 100

    IntegrationArn string

    ARN of the integration being associated with the instance.

    Minimum : 1

    Maximum : 140

    IntegrationType Pulumi.AwsNative.Connect.IntegrationAssociationIntegrationType

    Specifies the integration type to be associated with the instance.

    Allowed Values : LEX_BOT | LAMBDA_FUNCTION

    Tags List<Pulumi.AwsNative.Inputs.Tag>
    The tags used to organize, track, or control access for this resource.
    InstanceId string

    The Amazon Resource Name (ARN) of the instance.

    Minimum : 1

    Maximum : 100

    IntegrationArn string

    ARN of the integration being associated with the instance.

    Minimum : 1

    Maximum : 140

    IntegrationType IntegrationAssociationIntegrationType

    Specifies the integration type to be associated with the instance.

    Allowed Values : LEX_BOT | LAMBDA_FUNCTION

    Tags TagArgs
    The tags used to organize, track, or control access for this resource.
    instance_id string

    The Amazon Resource Name (ARN) of the instance.

    Minimum : 1

    Maximum : 100

    integration_arn string

    ARN of the integration being associated with the instance.

    Minimum : 1

    Maximum : 140

    integration_type "LEX_BOT" | "LAMBDA_FUNCTION" | "APPLICATION" | "CASES_DOMAIN" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "FILE_SCANNER" | "MESSAGE_PROCESSOR" | "Q_MESSAGE_TEMPLATES" | "SES_IDENTITY"

    Specifies the integration type to be associated with the instance.

    Allowed Values : LEX_BOT | LAMBDA_FUNCTION

    tags list(object)
    The tags used to organize, track, or control access for this resource.
    instanceId String

    The Amazon Resource Name (ARN) of the instance.

    Minimum : 1

    Maximum : 100

    integrationArn String

    ARN of the integration being associated with the instance.

    Minimum : 1

    Maximum : 140

    integrationType IntegrationAssociationIntegrationType

    Specifies the integration type to be associated with the instance.

    Allowed Values : LEX_BOT | LAMBDA_FUNCTION

    tags List<Tag>
    The tags used to organize, track, or control access for this resource.
    instanceId string

    The Amazon Resource Name (ARN) of the instance.

    Minimum : 1

    Maximum : 100

    integrationArn string

    ARN of the integration being associated with the instance.

    Minimum : 1

    Maximum : 140

    integrationType IntegrationAssociationIntegrationType

    Specifies the integration type to be associated with the instance.

    Allowed Values : LEX_BOT | LAMBDA_FUNCTION

    tags Tag[]
    The tags used to organize, track, or control access for this resource.
    instance_id str

    The Amazon Resource Name (ARN) of the instance.

    Minimum : 1

    Maximum : 100

    integration_arn str

    ARN of the integration being associated with the instance.

    Minimum : 1

    Maximum : 140

    integration_type IntegrationAssociationIntegrationType

    Specifies the integration type to be associated with the instance.

    Allowed Values : LEX_BOT | LAMBDA_FUNCTION

    tags Sequence[TagArgs]
    The tags used to organize, track, or control access for this resource.
    instanceId String

    The Amazon Resource Name (ARN) of the instance.

    Minimum : 1

    Maximum : 100

    integrationArn String

    ARN of the integration being associated with the instance.

    Minimum : 1

    Maximum : 140

    integrationType "LEX_BOT" | "LAMBDA_FUNCTION" | "APPLICATION" | "CASES_DOMAIN" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "FILE_SCANNER" | "MESSAGE_PROCESSOR" | "Q_MESSAGE_TEMPLATES" | "SES_IDENTITY"

    Specifies the integration type to be associated with the instance.

    Allowed Values : LEX_BOT | LAMBDA_FUNCTION

    tags List<Property Map>
    The tags used to organize, track, or control access for this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IntegrationAssociation resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    IntegrationAssociationId string
    Identifier of the association with an Amazon Connect instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    IntegrationAssociationId string
    Identifier of the association with an Amazon Connect instance.
    id string
    The provider-assigned unique ID for this managed resource.
    integration_association_id string
    Identifier of the association with an Amazon Connect instance.
    id String
    The provider-assigned unique ID for this managed resource.
    integrationAssociationId String
    Identifier of the association with an Amazon Connect instance.
    id string
    The provider-assigned unique ID for this managed resource.
    integrationAssociationId string
    Identifier of the association with an Amazon Connect instance.
    id str
    The provider-assigned unique ID for this managed resource.
    integration_association_id str
    Identifier of the association with an Amazon Connect instance.
    id String
    The provider-assigned unique ID for this managed resource.
    integrationAssociationId String
    Identifier of the association with an Amazon Connect instance.

    Supporting Types

    IntegrationAssociationIntegrationType, IntegrationAssociationIntegrationTypeArgs

    LexBot
    LEX_BOT
    LambdaFunction
    LAMBDA_FUNCTION
    Application
    APPLICATION
    CasesDomain
    CASES_DOMAIN
    WisdomAssistant
    WISDOM_ASSISTANT
    WisdomKnowledgeBase
    WISDOM_KNOWLEDGE_BASE
    WisdomQuickResponses
    WISDOM_QUICK_RESPONSES
    FileScanner
    FILE_SCANNER
    MessageProcessor
    MESSAGE_PROCESSOR
    QMessageTemplates
    Q_MESSAGE_TEMPLATES
    SesIdentity
    SES_IDENTITY
    IntegrationAssociationIntegrationTypeLexBot
    LEX_BOT
    IntegrationAssociationIntegrationTypeLambdaFunction
    LAMBDA_FUNCTION
    IntegrationAssociationIntegrationTypeApplication
    APPLICATION
    IntegrationAssociationIntegrationTypeCasesDomain
    CASES_DOMAIN
    IntegrationAssociationIntegrationTypeWisdomAssistant
    WISDOM_ASSISTANT
    IntegrationAssociationIntegrationTypeWisdomKnowledgeBase
    WISDOM_KNOWLEDGE_BASE
    IntegrationAssociationIntegrationTypeWisdomQuickResponses
    WISDOM_QUICK_RESPONSES
    IntegrationAssociationIntegrationTypeFileScanner
    FILE_SCANNER
    IntegrationAssociationIntegrationTypeMessageProcessor
    MESSAGE_PROCESSOR
    IntegrationAssociationIntegrationTypeQMessageTemplates
    Q_MESSAGE_TEMPLATES
    IntegrationAssociationIntegrationTypeSesIdentity
    SES_IDENTITY
    "LEX_BOT"
    LEX_BOT
    "LAMBDA_FUNCTION"
    LAMBDA_FUNCTION
    "APPLICATION"
    APPLICATION
    "CASES_DOMAIN"
    CASES_DOMAIN
    "WISDOM_ASSISTANT"
    WISDOM_ASSISTANT
    "WISDOM_KNOWLEDGE_BASE"
    WISDOM_KNOWLEDGE_BASE
    "WISDOM_QUICK_RESPONSES"
    WISDOM_QUICK_RESPONSES
    "FILE_SCANNER"
    FILE_SCANNER
    "MESSAGE_PROCESSOR"
    MESSAGE_PROCESSOR
    "Q_MESSAGE_TEMPLATES"
    Q_MESSAGE_TEMPLATES
    "SES_IDENTITY"
    SES_IDENTITY
    LexBot
    LEX_BOT
    LambdaFunction
    LAMBDA_FUNCTION
    Application
    APPLICATION
    CasesDomain
    CASES_DOMAIN
    WisdomAssistant
    WISDOM_ASSISTANT
    WisdomKnowledgeBase
    WISDOM_KNOWLEDGE_BASE
    WisdomQuickResponses
    WISDOM_QUICK_RESPONSES
    FileScanner
    FILE_SCANNER
    MessageProcessor
    MESSAGE_PROCESSOR
    QMessageTemplates
    Q_MESSAGE_TEMPLATES
    SesIdentity
    SES_IDENTITY
    LexBot
    LEX_BOT
    LambdaFunction
    LAMBDA_FUNCTION
    Application
    APPLICATION
    CasesDomain
    CASES_DOMAIN
    WisdomAssistant
    WISDOM_ASSISTANT
    WisdomKnowledgeBase
    WISDOM_KNOWLEDGE_BASE
    WisdomQuickResponses
    WISDOM_QUICK_RESPONSES
    FileScanner
    FILE_SCANNER
    MessageProcessor
    MESSAGE_PROCESSOR
    QMessageTemplates
    Q_MESSAGE_TEMPLATES
    SesIdentity
    SES_IDENTITY
    LEX_BOT
    LEX_BOT
    LAMBDA_FUNCTION
    LAMBDA_FUNCTION
    APPLICATION
    APPLICATION
    CASES_DOMAIN
    CASES_DOMAIN
    WISDOM_ASSISTANT
    WISDOM_ASSISTANT
    WISDOM_KNOWLEDGE_BASE
    WISDOM_KNOWLEDGE_BASE
    WISDOM_QUICK_RESPONSES
    WISDOM_QUICK_RESPONSES
    FILE_SCANNER
    FILE_SCANNER
    MESSAGE_PROCESSOR
    MESSAGE_PROCESSOR
    Q_MESSAGE_TEMPLATES
    Q_MESSAGE_TEMPLATES
    SES_IDENTITY
    SES_IDENTITY
    "LEX_BOT"
    LEX_BOT
    "LAMBDA_FUNCTION"
    LAMBDA_FUNCTION
    "APPLICATION"
    APPLICATION
    "CASES_DOMAIN"
    CASES_DOMAIN
    "WISDOM_ASSISTANT"
    WISDOM_ASSISTANT
    "WISDOM_KNOWLEDGE_BASE"
    WISDOM_KNOWLEDGE_BASE
    "WISDOM_QUICK_RESPONSES"
    WISDOM_QUICK_RESPONSES
    "FILE_SCANNER"
    FILE_SCANNER
    "MESSAGE_PROCESSOR"
    MESSAGE_PROCESSOR
    "Q_MESSAGE_TEMPLATES"
    Q_MESSAGE_TEMPLATES
    "SES_IDENTITY"
    SES_IDENTITY

    Tag, TagArgs

    A set of tags to apply to the resource.
    Key string
    The key name of the tag
    Value string
    The value of the tag
    Key string
    The key name of the tag
    Value string
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key str
    The key name of the tag
    value str
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag

    Package Details

    Repository
    AWS Native pulumi/pulumi-aws-native
    License
    Apache-2.0
    aws-native logo

    We recommend new projects start with resources from the AWS provider.

    Viewing docs for AWS Cloud Control v1.68.0
    published on Monday, Jun 1, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial