Module Values.ImportDiskImageRequestSource

Import a Windows operating system image from a verified Microsoft ISO disk file. The following disk images are supported: Windows 11 Enterprise

Sourcetype nonrec t = {
  1. name : ResourceName.t;
    (*

    The name of the image resource that's created from the import.

    *)
  2. semanticVersion : VersionNumber.t;
    (*

    The semantic version to attach to the image that's created during the import process. This version follows the semantic version syntax.

    *)
  3. description : NonEmptyString.t option;
    (*

    The description for your disk image import.

    *)
  4. platform : NonEmptyString.t;
    (*

    The operating system platform for the imported image. Allowed values include the following: Windows.

    *)
  5. osVersion : OsVersion.t;
    (*

    The operating system version for the imported image. Allowed values include the following: Microsoft Windows 11.

    *)
  6. executionRole : RoleNameOrArn.t option;
    (*

    The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform workflow actions to import an image from a Microsoft ISO file.

    *)
  7. infrastructureConfigurationArn : InfrastructureConfigurationArn.t;
    (*

    The Amazon Resource Name (ARN) of the infrastructure configuration resource that's used for launching the EC2 instance on which the ISO image is built.

    *)
  8. uri : Uri_.t;
    (*

    The uri of the ISO disk file that's stored in Amazon S3.

    *)
  9. loggingConfiguration : ImageLoggingConfiguration.t option;
    (*

    Define logging configuration for the image build process.

    *)
  10. tags : TagMap.t option;
    (*

    Tags that are attached to image resources created from the import.

    *)
  11. registerImageOptions : RegisterImageOptions.t option;
    (*

    Configures Secure Boot and UEFI settings for the imported image.

    *)
  12. windowsConfiguration : WindowsConfiguration.t option;
    (*

    Specifies Windows settings for ISO imports.

    *)
  13. clientToken : ClientToken.t;
    (*

    Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?executionRole:??? -> ?loggingConfiguration:??? -> ?tags:??? -> ?registerImageOptions:??? -> ?windowsConfiguration:??? -> name:ResourceName.t -> semanticVersion:VersionNumber.t -> platform:NonEmptyString.t -> osVersion:OsVersion.t -> infrastructureConfigurationArn:InfrastructureConfigurationArn.t -> uri:Uri_.t -> clientToken:ClientToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ResourceName.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `Long of WindowsConfigurationImageIndex.t | `String of LogGroupName.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