Module Values.AwsEc2LaunchTemplateDataPrivateDnsNameOptionsDetailsSource

Describes the options for Amazon EC2 instance hostnames.

Sourcetype nonrec t = {
  1. enableResourceNameDnsAAAARecord : Boolean.t option;
    (*

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

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

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

    *)
  3. hostnameType : NonEmptyString.t option;
    (*

    The type of hostname for EC2 instances.

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