CfnContactFlowModuleMixinProps

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

Bases: object

Properties for CfnContactFlowModulePropsMixin.

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

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

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

  • name (Optional[str]) – The name 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 .

See:

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.
from aws_cdk.mixins_preview.aws_connect import mixins as connect_mixins

cfn_contact_flow_module_mixin_props = connect_mixins.CfnContactFlowModuleMixinProps(
    content="content",
    description="description",
    instance_arn="instanceArn",
    name="name",
    state="state",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

content

The content of the flow module.

See:

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

description

The description of the flow module.

See:

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.

See:

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

name

The name of the flow module.

See:

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

state

The state of the flow module.

See:

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 .

See:

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