Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ImportVmImageRequest

import type { ImportVmImageRequest } from "https://aws-api.deno.dev/v0.3/services/imagebuilder.ts?docs=full";
interface ImportVmImageRequest {
clientToken: string;
description?: string | null;
name: string;
osVersion?: string | null;
platform: Platform;
semanticVersion: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
vmImportTaskId: string;
}

§Properties

§
clientToken: string
[src]

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

§
description?: string | null
[src]

The description for the base image that is created by the import process.

§
name: string
[src]

The name of the base image that is created by the import process.

§
osVersion?: string | null
[src]

The operating system version for the imported VM.

§
platform: Platform
[src]

The operating system platform for the imported VM.

§
semanticVersion: string
[src]

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

Note: The semantic version has four nodes: ../. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Tags that are attached to the import resources.

§
vmImportTaskId: string
[src]

The importTaskId (API) or ImportTaskId (CLI) from the Amazon EC2 VM import process. Image Builder retrieves information from the import process to pull in the AMI that is created from the VM source as the base image for your recipe.