aws-cdk-lib.aws_connect.CfnContactFlowProps

interface CfnContactFlowProps

LanguageType name
.NETAmazon.CDK.AWS.Connect.CfnContactFlowProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnContactFlowProps
Javasoftware.amazon.awscdk.services.connect.CfnContactFlowProps
Pythonaws_cdk.aws_connect.CfnContactFlowProps
TypeScript aws-cdk-lib » aws_connect » CfnContactFlowProps

Properties for defining a CfnContactFlow.

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-lib';
const cfnContactFlowProps: connect.CfnContactFlowProps = {
  content: 'content',
  instanceArn: 'instanceArn',
  name: 'name',
  type: 'type',

  // the properties below are optional
  description: 'description',
  state: 'state',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
contentstringThe content of the flow.
instanceArnstringThe Amazon Resource Name (ARN) of the Amazon Connect instance.
namestringThe name of the flow.
typestringThe type of the flow.
description?stringThe description of the flow.
state?stringThe state of the flow.
tags?CfnTag[]An array of key-value pairs to apply to this resource.

content

Type: string

The content of the flow.

For more information, see Amazon Connect Flow language in the Amazon Connect Administrator Guide .


instanceArn

Type: string

The Amazon Resource Name (ARN) of the Amazon Connect instance.


name

Type: string

The name of the flow.


type

Type: string

The type of the flow.

For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .


description?

Type: string (optional)

The description of the flow.


state?

Type: string (optional)

The state of the flow.


tags?

Type: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .