CfnContactFlowModuleMixinProps
- class aws_cdk.mixins_preview.aws_connect.mixins.CfnContactFlowModuleMixinProps(*, content=None, description=None, instance_arn=None, name=None, state=None, tags=None)
Bases:
objectProperties 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:
- 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.
- 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.