Module Values_1.SnapshotDetailSource

Describes the snapshot created from the imported disk.

Sourcetype nonrec t = {
  1. description : Values_0.String_.t option;
    (*

    A description for the snapshot.

    *)
  2. deviceName : Values_0.String_.t option;
    (*

    The block device mapping for the snapshot.

    *)
  3. diskImageSize : Values_0.Double.t option;
    (*

    The size of the disk in the snapshot, in GiB.

    *)
  4. format : Values_0.String_.t option;
    (*

    The format of the disk image from which the snapshot is created.

    *)
  5. progress : Values_0.String_.t option;
    (*

    The percentage of progress for the task.

    *)
  6. snapshotId : Values_0.String_.t option;
    (*

    The snapshot ID of the disk being imported.

    *)
  7. status : Values_0.String_.t option;
    (*

    A brief status of the snapshot creation.

    *)
  8. statusMessage : Values_0.String_.t option;
    (*

    A detailed status message for the snapshot creation.

    *)
  9. url : Values_0.SensitiveUrl.t option;
    (*

    The URL used to access the disk image.

    *)
  10. userBucket : Values_0.UserBucketDetails.t option;
    (*

    The Amazon S3 bucket for the disk image.

    *)
}
Sourceval make : ?description:??? -> ?deviceName:??? -> ?diskImageSize:??? -> ?format:??? -> ?progress:??? -> ?snapshotId:??? -> ?status:??? -> ?statusMessage:??? -> ?url:??? -> ?userBucket:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Values_0.Double.t | `String of Values_0.String_.t | `Structure of (string * [> `String of string ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t