CfnIntegrationAssociationProps
- class aws_cdk.aws_connect.CfnIntegrationAssociationProps(*, instance_id, integration_arn, integration_type, tags=None)
Bases:
objectProperties for defining a
CfnIntegrationAssociation.- Parameters:
instance_id (
Union[str,IInstanceRef]) – The Amazon Resource Name (ARN) of the instance. Minimum :1Maximum :100integration_arn (
str) – ARN of the integration being associated with the instance. Minimum :1Maximum :140integration_type (
str) – Specifies the integration type to be associated with the instance. Allowed Values :LEX_BOT|LAMBDA_FUNCTIONtags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags used to organize, track, or control access for this resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # 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 cfn_integration_association_props = connect.CfnIntegrationAssociationProps( instance_id="instanceId", integration_arn="integrationArn", integration_type="integrationType", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- instance_id
The Amazon Resource Name (ARN) of the instance.
Minimum :
1Maximum :
100
- integration_arn
ARN of the integration being associated with the instance.
Minimum :
1Maximum :
140
- integration_type
Specifies the integration type to be associated with the instance.
Allowed Values :
LEX_BOT|LAMBDA_FUNCTION
- tags
The tags used to organize, track, or control access for this resource.