Module Values_1.SnapshotTaskDetailSource

Details about the import snapshot task.

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

    The description of the disk image being imported.

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

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

    *)
  3. encrypted : Values_0.Boolean.t option;
    (*

    Indicates whether the snapshot is encrypted.

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

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

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

    The identifier for the KMS key that was used to create the encrypted snapshot.

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

    The percentage of completion for the import snapshot task.

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

    The snapshot ID of the disk being imported.

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

    A brief status for the import snapshot task.

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

    A detailed status message for the import snapshot task.

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

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

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

    The Amazon S3 bucket for the disk image.

    *)
}
Sourceval make : ?description:??? -> ?diskImageSize:??? -> ?encrypted:??? -> ?format:??? -> ?kmsKeyId:??? -> ?progress:??? -> ?snapshotId:??? -> ?status:??? -> ?statusMessage:??? -> ?url:??? -> ?userBucket:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `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