CfnContactFlowModuleProps

class aws_cdk.aws_connect.CfnContactFlowModuleProps(*, content, instance_arn, name, description=None, state=None, tags=None)

Bases: object

Properties for defining a CfnContactFlowModule.

Parameters:
  • content (str) – The content of the flow module.

  • instance_arn (str) – The Amazon Resource Name (ARN) of the Amazon Connect instance.

  • name (str) – The name of the flow module.

  • description (Optional[str]) – The description of the flow module.

  • state (Optional[str]) – The state of the flow module.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

Link:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_connect as connect

cfn_contact_flow_module_props = connect.CfnContactFlowModuleProps(
    content="content",
    instance_arn="instanceArn",
    name="name",

    # the properties below are optional
    description="description",
    state="state",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

content

The content of the flow module.

Link:

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

description

The description of the flow module.

Link:

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

instance_arn

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

Link:

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

name

The name of the flow module.

Link:

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

state

The state of the flow module.

Link:

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

tags

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

For more information, see Tag .

Link:

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