package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. tag_specifications : TagSpecificationList.t;
  2. availability_zone : Aws.BaseTypes.String.t option;
  3. availability_zone_id : Aws.BaseTypes.String.t option;
  4. cidr_block : Aws.BaseTypes.String.t;
  5. ipv6_cidr_block : Aws.BaseTypes.String.t option;
  6. outpost_arn : Aws.BaseTypes.String.t option;
  7. vpc_id : Aws.BaseTypes.String.t;
  8. dry_run : Aws.BaseTypes.Boolean.t option;
}
val make : ?tag_specifications:TagSpecificationList.t -> ?availability_zone:Aws.BaseTypes.String.t -> ?availability_zone_id:Aws.BaseTypes.String.t -> cidr_block:Aws.BaseTypes.String.t -> ?ipv6_cidr_block:Aws.BaseTypes.String.t -> ?outpost_arn:Aws.BaseTypes.String.t -> vpc_id:Aws.BaseTypes.String.t -> ?dry_run:Aws.BaseTypes.Boolean.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