Module Values.S3ExportConfigurationSource

Properties that configure export from your build instance to a compatible file format for your VM.

Sourcetype nonrec t = {
  1. roleName : NonEmptyString.t;
    (*

    The name of the role that grants VM Import/Export permission to export images to your S3 bucket.

    *)
  2. diskImageFormat : DiskImageFormat.t;
    (*

    Export the updated image to one of the following supported disk image formats: Virtual Hard Disk (VHD) – Compatible with Citrix Xen and Microsoft Hyper-V virtualization products. Stream-optimized ESX Virtual Machine Disk (VMDK) – Compatible with VMware ESX and VMware vSphere versions 4, 5, and 6. Raw – Raw format.

    *)
  3. s3Bucket : NonEmptyString.t;
    (*

    The S3 bucket in which to store the output disk images for your VM.

    *)
  4. s3Prefix : NonEmptyString.t option;
    (*

    The Amazon S3 path for the bucket where the output disk images for your VM are stored.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3Prefix:??? -> roleName:NonEmptyString.t -> diskImageFormat:DiskImageFormat.t -> s3Bucket:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) 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