Module Types.CreateNetworkInterfaceRequest
type t
=
{
description : Aws.BaseTypes.String.t option;
dry_run : Aws.BaseTypes.Boolean.t option;
groups : SecurityGroupIdStringList.t;
ipv6_address_count : Aws.BaseTypes.Integer.t option;
ipv6_addresses : InstanceIpv6AddressList.t;
private_ip_address : Aws.BaseTypes.String.t option;
private_ip_addresses : PrivateIpAddressSpecificationList.t;
secondary_private_ip_address_count : Aws.BaseTypes.Integer.t option;
interface_type : NetworkInterfaceCreationType.t option;
subnet_id : Aws.BaseTypes.String.t;
tag_specifications : TagSpecificationList.t;
}
val make : ?description:Aws.BaseTypes.String.t -> ?dry_run:Aws.BaseTypes.Boolean.t -> ?groups:SecurityGroupIdStringList.t -> ?ipv6_address_count:Aws.BaseTypes.Integer.t -> ?ipv6_addresses:InstanceIpv6AddressList.t -> ?private_ip_address:Aws.BaseTypes.String.t -> ?private_ip_addresses:PrivateIpAddressSpecificationList.t -> ?secondary_private_ip_address_count:Aws.BaseTypes.Integer.t -> ?interface_type:NetworkInterfaceCreationType.t -> subnet_id:Aws.BaseTypes.String.t -> ?tag_specifications:TagSpecificationList.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t