IntegrationAssociationReference
- class aws_cdk.aws_connect.IntegrationAssociationReference(*, instance_id, integration_arn, integration_type)
 Bases:
objectA reference to a IntegrationAssociation resource.
- Parameters:
 instance_id (
str) – The InstanceId of the IntegrationAssociation resource.integration_arn (
str) – The IntegrationArn of the IntegrationAssociation resource.integration_type (
str) – The IntegrationType of the IntegrationAssociation resource.
- ExampleMetadata:
 fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_connect as connect integration_association_reference = connect.IntegrationAssociationReference( instance_id="instanceId", integration_arn="integrationArn", integration_type="integrationType" )
Attributes
- instance_id
 The InstanceId of the IntegrationAssociation resource.
- integration_arn
 The IntegrationArn of the IntegrationAssociation resource.
- integration_type
 The IntegrationType of the IntegrationAssociation resource.