Module Values_0.CreateAgentStatusRequestSource

Creates an agent status for the specified Amazon Connect instance.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. name : AgentStatusName.t;
    (*

    The name of the status.

    *)
  3. description : AgentStatusDescription.t option;
    (*

    The description of the status.

    *)
  4. state : AgentStatusState.t;
    (*

    The state of the status.

    *)
  5. displayOrder : AgentStatusOrderNumber.t option;
    (*

    The display order of the status.

    *)
  6. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?displayOrder:??? -> ?tags:??? -> instanceId:InstanceId.t -> name:AgentStatusName.t -> state:AgentStatusState.t -> unit -> t
Sourceval 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 ]
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