Module Values.IngressPointSource

The structure of an ingress endpoint resource.

Sourcetype nonrec t = {
  1. ingressPointName : IngressPointName.t option;
    (*

    A user friendly name for the ingress endpoint resource.

    *)
  2. ingressPointId : IngressPointId.t option;
    (*

    The identifier of the ingress endpoint resource.

    *)
  3. status : IngressPointStatus.t option;
    (*

    The status of the ingress endpoint resource.

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

    The type of ingress endpoint resource.

    *)
  5. aRecord : IngressPointARecord.t option;
    (*

    The DNS A Record that identifies your ingress endpoint. Configure your DNS Mail Exchange (MX) record with this value to route emails to Mail Manager.

    *)
}
Sourceval make : ?ingressPointName:??? -> ?ingressPointId:??? -> ?status:??? -> ?type_:??? -> ?aRecord:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IngressPointName.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