Module Values_0.AgentStatusSource

Contains information about an agent status.

Sourcetype nonrec t = {
  1. agentStatusARN : ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the agent status.

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

    The identifier of the agent status.

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

    The name of the agent status.

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

    The description of the agent status.

    *)
  5. type_ : AgentStatusType.t option;
    (*

    The type of agent status.

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

    The display order of the agent status.

    *)
  7. state : AgentStatusState.t option;
    (*

    The state of the agent status.

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

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

    *)
  9. lastModifiedTime : Timestamp.t option;
    (*

    The timestamp when this resource was last modified.

    *)
  10. lastModifiedRegion : RegionName.t option;
    (*

    The Amazon Web Services Region where this resource was last modified.

    *)
}
Sourceval make : ?agentStatusARN:??? -> ?agentStatusId:??? -> ?name:??? -> ?description:??? -> ?type_:??? -> ?displayOrder:??? -> ?state:??? -> ?tags:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> 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 ARN.t | `Timestamp of Timestamp.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