Module Values.ServiceChangeSource

A complex type that contains changes to an existing service.

Sourcetype nonrec t = {
  1. description : ResourceDescription.t option;
    (*

    A description for the service.

    *)
  2. dnsConfig : DnsConfigChange.t option;
    (*

    Information about the Route 53 DNS records that you want Cloud Map to create when you register an instance.

    *)
  3. healthCheckConfig : HealthCheckConfig.t option;
    (*

    Public DNS and HTTP namespaces only. Settings for an optional health check. If you specify settings for a health check, Cloud Map associates the health check with the records that you specify in DnsConfig.

    *)
}
Sourceval make : ?description:??? -> ?dnsConfig:??? -> ?healthCheckConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceDescription.t | `Structure of (string * [> `Enum of string | `Integer of FailureThreshold.t | `List of [> `Structure of (string * [> `Enum of string | `Long of RecordTTL.t ]) list ] list | `String of ResourcePath.t ]) list ]) 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