Module Values_2.UpdateAgentStatusRequestSource

Updates agent status.

Sourcetype nonrec t = {
  1. instanceId : Values_0.InstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    *)
  2. agentStatusId : Values_0.AgentStatusId.t;
    (*

    The identifier of the agent status.

    *)
  3. name : Values_0.AgentStatusName.t option;
    (*

    The name of the agent status.

    *)
  4. description : UpdateAgentStatusDescription.t option;
    (*

    The description of the agent status.

    *)
  5. state : Values_0.AgentStatusState.t option;
    (*

    The state of the agent status.

    *)
  6. displayOrder : Values_0.AgentStatusOrderNumber.t option;
    (*

    The display order of the agent status.

    *)
  7. resetOrderNumber : Values_0.Boolean.t option;
    (*

    A number indicating the reset order of the agent status.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?state:??? -> ?displayOrder:??? -> ?resetOrderNumber:??? -> instanceId:Values_0.InstanceId.t -> agentStatusId:Values_0.AgentStatusId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Integer of Values_0.AgentStatusOrderNumber.t | `String of Values_0.InstanceId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t