aws-cdk-lib.aws_connect.CfnContactFlowModuleProps

interface CfnContactFlowModuleProps

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

Properties for defining a CfnContactFlowModule.

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 cfnContactFlowModuleProps: connect.CfnContactFlowModuleProps = {
  content: 'content',
  instanceArn: 'instanceArn',
  name: 'name',

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

Properties

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

content

Type: string

The content of the flow module.


instanceArn

Type: string

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


name

Type: string

The name of the flow module.


description?

Type: string (optional)

The description of the flow module.


state?

Type: string (optional)

The state of the flow module.


tags?

Type: CfnTag[] (optional)

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

For more information, see Tag .