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 contact flow module.instance_arn (
str
) – The Amazon Resource Name (ARN) of the Amazon Connect instance.name (
str
) – The name of the contact flow module.description (
Optional
[str
]) – The description of the contact flow module.state (
Optional
[str
]) – The state of the contact flow module.tags (
Optional
[Sequence
[CfnTag
]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- Link
- 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 contact flow module.
-
description
¶ The description of the contact flow module.
-
instance_arn
¶ The Amazon Resource Name (ARN) of the Amazon Connect instance.
-
name
¶ The name of the contact flow module.
-
state
¶ The state of the contact flow module.
An array of key-value pairs to apply to this resource.
For more information, see Tag .