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

ImportComponentRequest

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

§Properties

§
changeDescription?: string | null
[src]

The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of this component.

§
clientToken: string
[src]

The idempotency token of the component.

§
data?: string | null
[src]

The data of the component. Used to specify the data inline. Either data or uri can be used to specify the data within the component.

§
description?: string | null
[src]

The description of the component. Describes the contents of the component.

§

The format of the resource that you want to import as a component.

§
kmsKeyId?: string | null
[src]

The ID of the KMS key that should be used to encrypt this component.

§
name: string
[src]

The name of the component.

§
platform: Platform
[src]

The platform of the component.

§
semanticVersion: string
[src]

The semantic version of the component. 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. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.

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

The tags of the component.

§

The type of the component denotes whether the component is used to build the image, or only to test it.

§
uri?: string | null
[src]

The uri of the component. Must be an Amazon S3 URL and the requester must have permission to access the Amazon S3 bucket. If you use Amazon S3, you can specify component content up to your service quota. Either data or uri can be used to specify the data within the component.