package aws-ec2

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.ImageSource

Sourcetype 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;
}
Sourceval make : architecture:ArchitectureValues.t -> ?creation_date:??? -> image_id:Aws.BaseTypes.String.t -> image_location:Aws.BaseTypes.String.t -> image_type:ImageTypeValues.t -> public:Aws.BaseTypes.Boolean.t -> ?kernel_id:??? -> owner_id:Aws.BaseTypes.String.t -> ?platform:??? -> ?platform_details:??? -> ?usage_operation:??? -> ?product_codes:??? -> ?ramdisk_id:??? -> state:ImageState.t -> ?block_device_mappings:??? -> ?description:??? -> ?ena_support:??? -> hypervisor:HypervisorType.t -> ?image_owner_alias:??? -> ?name:??? -> ?root_device_name:??? -> root_device_type:DeviceType.t -> ?sriov_net_support:??? -> ?state_reason:??? -> ?tags:??? -> virtualization_type:VirtualizationType.t -> unit -> t
Sourceval parse : Ezxmlm.nodes -> t option
Sourceval to_query : t -> Aws.Query.t
Sourceval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
Sourceval of_json : Aws.Json.t -> t