Describe Contact Flow Module
connect_describe_contact_flow_module | R Documentation |
Describes the specified flow module¶
Description¶
Describes the specified flow module.
Use the $SAVED
alias in the request to describe the SAVED
content of
a Flow. For example, arn:aws:.../contact-flow/{id}:$SAVED
. Once a
contact flow is published, $SAVED
needs to be supplied to view saved
content that has not been published.
Usage¶
Arguments¶
InstanceId
[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
ContactFlowModuleId
[required] The identifier of the flow module.
Value¶
A list with the following syntax:
list(
ContactFlowModule = list(
Arn = "string",
Id = "string",
Name = "string",
Content = "string",
Description = "string",
State = "ACTIVE"|"ARCHIVED",
Status = "PUBLISHED"|"SAVED",
Tags = list(
"string"
)
)
)