package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. image_location : Aws.BaseTypes.String.t option;
  2. architecture : ArchitectureValues.t option;
  3. block_device_mappings : BlockDeviceMappingRequestList.t;
  4. description : Aws.BaseTypes.String.t option;
  5. dry_run : Aws.BaseTypes.Boolean.t option;
  6. ena_support : Aws.BaseTypes.Boolean.t option;
  7. kernel_id : Aws.BaseTypes.String.t option;
  8. name : Aws.BaseTypes.String.t;
  9. billing_products : BillingProductList.t;
  10. ramdisk_id : Aws.BaseTypes.String.t option;
  11. root_device_name : Aws.BaseTypes.String.t option;
  12. sriov_net_support : Aws.BaseTypes.String.t option;
  13. virtualization_type : Aws.BaseTypes.String.t option;
}
val make : ?image_location:Aws.BaseTypes.String.t -> ?architecture:ArchitectureValues.t -> ?block_device_mappings:BlockDeviceMappingRequestList.t -> ?description:Aws.BaseTypes.String.t -> ?dry_run:Aws.BaseTypes.Boolean.t -> ?ena_support:Aws.BaseTypes.Boolean.t -> ?kernel_id:Aws.BaseTypes.String.t -> name:Aws.BaseTypes.String.t -> ?billing_products:BillingProductList.t -> ?ramdisk_id:Aws.BaseTypes.String.t -> ?root_device_name:Aws.BaseTypes.String.t -> ?sriov_net_support:Aws.BaseTypes.String.t -> ?virtualization_type:Aws.BaseTypes.String.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