Module Values_7.AssignPrivateIpAddressesRequestSource

Contains the parameters for AssignPrivateIpAddresses.

Sourcetype nonrec t = {
  1. ipv4Prefixes : Values_3.IpPrefixList.t option;
    (*

    One or more IPv4 prefixes assigned to the network interface. You can't use this option if you use the Ipv4PrefixCount option.

    *)
  2. ipv4PrefixCount : Values_0.Integer.t option;
    (*

    The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface. You can't use this option if you use the Ipv4 Prefixes option.

    *)
  3. networkInterfaceId : Values_0.NetworkInterfaceId.t;
    (*

    The ID of the network interface.

    *)
  4. privateIpAddresses : Values_3.PrivateIpAddressStringList.t option;
    (*

    The IP addresses to be assigned as a secondary private IP address to the network interface. You can't specify this parameter when also specifying a number of secondary IP addresses. If you don't specify an IP address, Amazon EC2 automatically selects an IP address within the subnet range.

    *)
  5. secondaryPrivateIpAddressCount : Values_0.Integer.t option;
    (*

    The number of secondary IP addresses to assign to the network interface. You can't specify this parameter when also specifying private IP addresses.

    *)
  6. allowReassignment : Values_0.Boolean.t option;
    (*

    Indicates whether to allow an IP address that is already assigned to another network interface or instance to be reassigned to the specified network interface.

    *)
}
Sourceval context_ : string
Sourceval make : ?ipv4Prefixes:??? -> ?ipv4PrefixCount:??? -> ?privateIpAddresses:??? -> ?secondaryPrivateIpAddressCount:??? -> ?allowReassignment:??? -> networkInterfaceId:Values_0.NetworkInterfaceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Integer of Values_0.Integer.t | `List of [> `String of Values_0.String_.t ] list | `String of Values_0.NetworkInterfaceId.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