Values_0.CreateAgentStatusRequestSourceCreates an agent status for the specified Amazon Connect instance.
type nonrec t = {instanceId : InstanceId.t;The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
*)name : AgentStatusName.t;The name of the status.
*)description : AgentStatusDescription.t option;The description of the status.
*)state : AgentStatusState.t;The state of the status.
*)displayOrder : AgentStatusOrderNumber.t option;The display order of the status.
*)}val make :
?description:??? ->
?displayOrder:??? ->
?tags:??? ->
instanceId:InstanceId.t ->
name:AgentStatusName.t ->
state:AgentStatusState.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of AgentStatusOrderNumber.t
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of InstanceId.t ])
list ]