interface CfnContactFlowModuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnContactFlowModuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnContactFlowModuleMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnContactFlowModuleMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnContactFlowModuleMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const cfnContactFlowModuleMixinProps: connect.CfnContactFlowModuleMixinProps = {
content: 'content',
description: 'description',
externalInvocationConfiguration: {
enabled: false,
},
instanceArn: 'instanceArn',
name: 'name',
settings: 'settings',
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. |
| external | IResolvable | External | The external invocation configuration for the flow module. |
| instance | string | IInstance | The Amazon Resource Name (ARN) of the Amazon Connect instance. |
| name? | string | The name of the flow module. |
| settings? | string | The configuration settings for 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.
externalInvocationConfiguration?
Type:
IResolvable | External
(optional)
The external invocation configuration for the flow module.
instanceArn?
Type:
string | IInstance
(optional)
The Amazon Resource Name (ARN) of the Amazon Connect instance.
name?
Type:
string
(optional)
The name of the flow module.
settings?
Type:
string
(optional)
The configuration settings for 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