Module Values_0.AgentStatusSummarySource

Summary information for an agent status.

Sourcetype nonrec t = {
  1. id : AgentStatusId.t option;
    (*

    The identifier for an agent status.

    *)
  2. arn : ARN.t option;
    (*

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

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

    The name of the agent status.

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

    The type of the agent status.

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

    The timestamp when this resource was last modified.

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

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

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?type_:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AgentStatusId.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