package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. architecture : ArchitectureValues.t;
  2. creation_date : Aws.BaseTypes.String.t option;
  3. image_id : Aws.BaseTypes.String.t;
  4. image_location : Aws.BaseTypes.String.t;
  5. image_type : ImageTypeValues.t;
  6. public : Aws.BaseTypes.Boolean.t;
  7. kernel_id : Aws.BaseTypes.String.t option;
  8. owner_id : Aws.BaseTypes.String.t;
  9. platform : PlatformValues.t option;
  10. platform_details : Aws.BaseTypes.String.t option;
  11. usage_operation : Aws.BaseTypes.String.t option;
  12. product_codes : ProductCodeList.t;
  13. ramdisk_id : Aws.BaseTypes.String.t option;
  14. state : ImageState.t;
  15. block_device_mappings : BlockDeviceMappingList.t;
  16. description : Aws.BaseTypes.String.t option;
  17. ena_support : Aws.BaseTypes.Boolean.t option;
  18. hypervisor : HypervisorType.t;
  19. image_owner_alias : Aws.BaseTypes.String.t option;
  20. name : Aws.BaseTypes.String.t option;
  21. root_device_name : Aws.BaseTypes.String.t option;
  22. root_device_type : DeviceType.t;
  23. sriov_net_support : Aws.BaseTypes.String.t option;
  24. state_reason : StateReason.t option;
  25. tags : TagList.t;
  26. virtualization_type : VirtualizationType.t;
}
val make : architecture:ArchitectureValues.t -> ?creation_date:Aws.BaseTypes.String.t -> image_id:Aws.BaseTypes.String.t -> image_location:Aws.BaseTypes.String.t -> image_type:ImageTypeValues.t -> public:Aws.BaseTypes.Boolean.t -> ?kernel_id:Aws.BaseTypes.String.t -> owner_id:Aws.BaseTypes.String.t -> ?platform:PlatformValues.t -> ?platform_details:Aws.BaseTypes.String.t -> ?usage_operation:Aws.BaseTypes.String.t -> ?product_codes:ProductCodeList.t -> ?ramdisk_id:Aws.BaseTypes.String.t -> state:ImageState.t -> ?block_device_mappings:BlockDeviceMappingList.t -> ?description:Aws.BaseTypes.String.t -> ?ena_support:Aws.BaseTypes.Boolean.t -> hypervisor:HypervisorType.t -> ?image_owner_alias:Aws.BaseTypes.String.t -> ?name:Aws.BaseTypes.String.t -> ?root_device_name:Aws.BaseTypes.String.t -> root_device_type:DeviceType.t -> ?sriov_net_support:Aws.BaseTypes.String.t -> ?state_reason:StateReason.t -> ?tags:TagList.t -> virtualization_type:VirtualizationType.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