interface CfnContactFlowMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnContactFlowMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnContactFlowMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnContactFlowMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnContactFlowMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnContactFlowMixinProps |
Properties for CfnContactFlowPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflow.html
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 cfnContactFlowMixinProps: connect_mixins.CfnContactFlowMixinProps = {
content: 'content',
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
state: 'state',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | The content of the flow. |
| description? | string | The description of the flow. |
| instance | string | The Amazon Resource Name (ARN) of the Amazon Connect instance. |
| name? | string | The name of the flow. |
| state? | string | The state of the flow. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| type? | string | The type of the flow. |
content?
Type:
string
(optional)
The content of the flow.
For more information, see Amazon Connect Flow language in the Amazon Connect Administrator Guide .
description?
Type:
string
(optional)
The description of the flow.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Connect instance.
name?
Type:
string
(optional)
The name of the flow.
state?
Type:
string
(optional)
The state of the flow.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
type?
Type:
string
(optional)
The type of the flow.
For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .

.NET
Go
Java
Python
TypeScript