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

AdditionalInstanceConfiguration

import type { AdditionalInstanceConfiguration } from "https://aws-api.deno.dev/v0.3/services/imagebuilder.ts?docs=full";

In addition to your infrastruction configuration, these settings provide an extra layer of control over your build instances. For instances where Image Builder installs the Systems Manager agent, you can choose whether to keep it for the AMI that you create. You can also specify commands to run on launch for all of your build instances.

interface AdditionalInstanceConfiguration {
systemsManagerAgent?: SystemsManagerAgent | null;
userDataOverride?: string | null;
}

§Properties

§
systemsManagerAgent?: SystemsManagerAgent | null
[src]

Contains settings for the Systems Manager agent on your build instance.

§
userDataOverride?: string | null
[src]

Use this property to provide commands or a command script to run when you launch your build instance.

Note: The userDataOverride property replaces any commands that Image Builder might have added to ensure that Systems Manager is installed on your Linux build instance. If you override the user data, make sure that you add commands to install Systems Manager, if it is not pre-installed on your base image.