Module Values_1.PrivateDnsNameConfigurationSource

Information about the private DNS name for the service endpoint.

Sourcetype nonrec t = {
  1. state : Values_0.DnsNameState.t option;
    (*

    The verification state of the VPC endpoint service. Consumers of the endpoint service can use the private name only when the state is verified.

    *)
  2. type_ : Values_0.String_.t option;
    (*

    The endpoint service verification type, for example TXT.

    *)
  3. value : Values_0.String_.t option;
    (*

    The value the service provider adds to the private DNS name domain record before verification.

    *)
  4. name : Values_0.String_.t option;
    (*

    The name of the record subdomain the service provider needs to create. The service provider adds the value text to the name.

    *)
}
Sourceval make : ?state:??? -> ?type_:??? -> ?value:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.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