interface IntegrationAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.IntegrationAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#IntegrationAssociationReference |
Java | software.amazon.awscdk.interfaces.connect.IntegrationAssociationReference |
Python | aws_cdk.interfaces.aws_connect.IntegrationAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » IntegrationAssociationReference |
A reference to a IntegrationAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as interfaces_aws_connect } from 'aws-cdk-lib/interfaces';
const integrationAssociationReference: interfaces_aws_connect.IntegrationAssociationReference = {
instanceId: 'instanceId',
integrationArn: 'integrationArn',
integrationType: 'integrationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The InstanceId of the IntegrationAssociation resource. |
| integration | string | The IntegrationArn of the IntegrationAssociation resource. |
| integration | string | The IntegrationType of the IntegrationAssociation resource. |
instanceId
Type:
string
The InstanceId of the IntegrationAssociation resource.
integrationArn
Type:
string
The IntegrationArn of the IntegrationAssociation resource.
integrationType
Type:
string
The IntegrationType of the IntegrationAssociation resource.

.NET
Go
Java
Python
TypeScript