interface CfnContactFlowMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnContactFlowMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnContactFlowMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnContactFlowMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnContactFlowMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const cfnContactFlowMixinProps: connect.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 | IInstance | 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 | IInstance
(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