Module Values.NetworkAccessConfigurationSource

Describes the network details of the fleet or image builder instance.

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

    The private IP address of the elastic network interface that is attached to instances in your VPC.

    *)
  2. eniIpv6Addresses : StringList.t option;
    (*

    The IPv6 addresses assigned to the elastic network interface. This field supports IPv6 connectivity for WorkSpaces Applications instances.

    *)
  3. eniId : String_.t option;
    (*

    The resource identifier of the elastic network interface that is attached to instances in your VPC. All network interfaces have the eni-xxxxxxxx resource identifier.

    *)
}
Sourceval make : ?eniPrivateIpAddress:??? -> ?eniIpv6Addresses:??? -> ?eniId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `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