package aws-ec2

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

Module Types.ExportImageResultSource

Sourcetype t = {
  1. description : Aws.BaseTypes.String.t option;
  2. disk_image_format : DiskImageFormat.t option;
  3. export_image_task_id : Aws.BaseTypes.String.t option;
  4. image_id : Aws.BaseTypes.String.t option;
  5. role_name : Aws.BaseTypes.String.t option;
  6. progress : Aws.BaseTypes.String.t option;
  7. s3_export_location : ExportTaskS3Location.t option;
  8. status : Aws.BaseTypes.String.t option;
  9. status_message : Aws.BaseTypes.String.t option;
  10. tags : TagList.t;
}
Sourceval make : ?description:??? -> ?disk_image_format:??? -> ?export_image_task_id:??? -> ?image_id:??? -> ?role_name:??? -> ?progress:??? -> ?s3_export_location:??? -> ?status:??? -> ?status_message:??? -> ?tags:??? -> 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