interface CfnContactFlowModuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnContactFlowModuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnContactFlowModuleMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnContactFlowModuleMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnContactFlowModuleMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnContactFlowModuleMixinProps |
Properties for CfnContactFlowModulePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnContactFlowModuleMixinProps: connect_mixins.CfnContactFlowModuleMixinProps = {
content: 'content',
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
state: 'state',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | The content of the flow module. |
| description? | string | The description of the flow module. |
| instance | string | The Amazon Resource Name (ARN) of the Amazon Connect instance. |
| name? | string | The name of the flow module. |
| state? | string | The state of the flow module. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
content?
Type:
string
(optional)
The content of the flow module.
description?
Type:
string
(optional)
The description of the flow module.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Connect instance.
name?
Type:
string
(optional)
The name of the flow module.
state?
Type:
string
(optional)
The state of the flow module.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript