Module Values_0.InstanceIpv6AddressSource

Describes an IPv6 address.

Sourcetype nonrec t = {
  1. ipv6Address : String_.t option;
    (*

    The IPv6 address.

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

    Determines if an IPv6 address associated with a network interface is the primary IPv6 address. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information, see RunInstances.

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