CfnContactFlowModuleVersionProps
- class aws_cdk.aws_connect.CfnContactFlowModuleVersionProps(*, contact_flow_module_id, description=None)
Bases:
objectProperties for defining a
CfnContactFlowModuleVersion.- Parameters:
contact_flow_module_id (
str) – The identifier of the contact flow module (ARN) this version is tied to.description (
Optional[str]) – The description of the version.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_connect as connect cfn_contact_flow_module_version_props = connect.CfnContactFlowModuleVersionProps( contact_flow_module_id="contactFlowModuleId", # the properties below are optional description="description" )
Attributes
- contact_flow_module_id
The identifier of the contact flow module (ARN) this version is tied to.
- description
The description of the version.