interface CfnIntegrationAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnIntegrationAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnIntegrationAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnIntegrationAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnIntegrationAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnIntegrationAssociationMixinProps |
Properties for CfnIntegrationAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const cfnIntegrationAssociationMixinProps: connect.CfnIntegrationAssociationMixinProps = {
instanceId: 'instanceId',
integrationArn: 'integrationArn',
integrationType: 'integrationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | IInstance | The Amazon Resource Name (ARN) of the instance. |
| integration | string | ARN of the integration being associated with the instance. |
| integration | string | Specifies the integration type to be associated with the instance. |
instanceId?
Type:
string | IInstance
(optional)
The Amazon Resource Name (ARN) of the instance.
Minimum : 1
Maximum : 100
integrationArn?
Type:
string
(optional)
ARN of the integration being associated with the instance.
Minimum : 1
Maximum : 140
integrationType?
Type:
string
(optional)
Specifies the integration type to be associated with the instance.
Allowed Values : LEX_BOT | LAMBDA_FUNCTION

.NET
Go
Java
Python
TypeScript