CfnContactFlowModuleAliasProps

class aws_cdk.aws_connect.CfnContactFlowModuleAliasProps(*, contact_flow_module_id, contact_flow_module_version, name, description=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowmodulealias.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowmodulealias.html#cfn-connect-contactflowmodulealias-contactflowmoduleid

contact_flow_module_version

The version number of the contact flow module this alias points to.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowmodulealias.html#cfn-connect-contactflowmodulealias-contactflowmoduleversion

description

The description of the alias.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowmodulealias.html#cfn-connect-contactflowmodulealias-description

name

The name of the alias.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowmodulealias.html#cfn-connect-contactflowmodulealias-name