Module Values_3.PrivateDnsNameOptionsRequestSource

Describes the options for instance hostnames.

Sourcetype nonrec t = {
  1. hostnameType : Values_0.HostnameType.t option;
    (*

    The type of hostname for EC2 instances. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.

    *)
  2. enableResourceNameDnsARecord : Values_0.Boolean.t option;
    (*

    Indicates whether to respond to DNS queries for instance hostnames with DNS A records.

    *)
  3. enableResourceNameDnsAAAARecord : Values_0.Boolean.t option;
    (*

    Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.

    *)
}
Sourceval make : ?hostnameType:??? -> ?enableResourceNameDnsARecord:??? -> ?enableResourceNameDnsAAAARecord:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string ]) 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