CfnContactFlowModuleAliasProps
- class aws_cdk.aws_connect.CfnContactFlowModuleAliasProps(*, contact_flow_module_id, contact_flow_module_version, name, description=None)
Bases:
objectProperties for defining a
CfnContactFlowModuleAlias.- Parameters:
contact_flow_module_id (
str) – The identifier of the contact flow module (ARN) this alias is tied to.contact_flow_module_version (
Union[int,float]) – The version number of the contact flow module this alias points to.name (
str) – The name of the alias.description (
Optional[str]) – The description of the alias.
- 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_alias_props = connect.CfnContactFlowModuleAliasProps( contact_flow_module_id="contactFlowModuleId", contact_flow_module_version=123, name="name", # the properties below are optional description="description" )
Attributes
- contact_flow_module_id
The identifier of the contact flow module (ARN) this alias is tied to.
- contact_flow_module_version
The version number of the contact flow module this alias points to.
- description
The description of the alias.