Module Values.ServiceSummarySource

Summary information about a service.

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

    The ID of the service.

    *)
  2. name : ServiceName.t option;
    (*

    The name of the service.

    *)
  3. arn : ServiceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the service.

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

    The date and time that the service was created, in ISO-8601 format.

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

    The date and time that the service was last updated, in ISO-8601 format.

    *)
  6. dnsEntry : DnsEntry.t option;
    (*

    The DNS information.

    *)
  7. customDomainName : ServiceCustomDomainName.t option;
    (*

    The custom domain name of the service.

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

    The status.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?dnsEntry:??? -> ?customDomainName:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ServiceId.t | `Structure of (string * [> `String of String_.t ]) list | `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