Module Values_2.ImageDiskContainerSource

Describes the disk container object for an import image task.

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

    The description of the disk image.

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

    The block device mapping for the disk.

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

    The format of the disk image being imported. Valid values: OVA | VHD | VHDX | VMDK | RAW

    *)
  4. snapshotId : Values_0.SnapshotId.t option;
    (*

    The ID of the EBS snapshot to be used for importing the snapshot.

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

    The URL to the Amazon S3-based disk image being imported. The URL can either be a https URL (https://..) or an Amazon S3 URL (s3://..)

    *)
  6. userBucket : Values_1.UserBucket.t option;
    (*

    The S3 bucket for the disk image.

    *)
}
Sourceval make : ?description:??? -> ?deviceName:??? -> ?format:??? -> ?snapshotId:??? -> ?url:??? -> ?userBucket:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.t | `Structure of (string * [> `String of Values_0.String_.t ]) 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