CfnContactFlowProps

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

Bases: object

Properties for defining a CfnContactFlow.

Parameters:
  • content (str) – The content of the flow. For more information, see Amazon Connect Flow language in the Amazon Connect Administrator Guide .

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

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

  • type (str) – The type of the flow. For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .

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

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

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflow.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_props = connect.CfnContactFlowProps(
    content="content",
    instance_arn="instanceArn",
    name="name",
    type="type",

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

Attributes

content

The content of the flow.

For more information, see Amazon Connect Flow language in the Amazon Connect Administrator Guide .

See:

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

description

The description of the flow.

See:

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

instance_arn

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

See:

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

name

The name of the flow.

See:

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

state

The state of the flow.

See:

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

tags

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

For more information, see Tag .

See:

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

type

The type of the flow.

For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .

See:

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