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 .
- See:
- 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_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.
- description
The description of the flow module.
- instance_arn
The Amazon Resource Name (ARN) of the Amazon Connect instance.
- name
The name of the flow module.
- state
The state of the flow module.