Module Values.ServiceSummarySource

Summary data of an Proton service resource.

Sourcetype nonrec t = {
  1. arn : ServiceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the service.

    *)
  2. createdAt : Timestamp.t option;
    (*

    The time when the service was created.

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

    A description of the service.

    *)
  4. lastModifiedAt : Timestamp.t option;
    (*

    The time when the service was last modified.

    *)
  5. name : ResourceName.t option;
    (*

    The name of the service.

    *)
  6. status : ServiceStatus.t option;
    (*

    The status of the service.

    *)
  7. statusMessage : StatusMessage.t option;
    (*

    A service status message.

    *)
  8. templateName : ResourceName.t option;
    (*

    The name of the service template.

    *)
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?description:??? -> ?lastModifiedAt:??? -> ?name:??? -> ?status:??? -> ?statusMessage:??? -> ?templateName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ServiceArn.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