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

UpdateInfrastructureConfigurationRequest

import type { UpdateInfrastructureConfigurationRequest } from "https://aws-api.deno.dev/v0.3/services/imagebuilder.ts?docs=full";
interface UpdateInfrastructureConfigurationRequest {
clientToken: string;
description?: string | null;
infrastructureConfigurationArn: string;
instanceMetadataOptions?: InstanceMetadataOptions | null;
instanceProfileName: string;
instanceTypes?: string[] | null;
keyPair?: string | null;
logging?: Logging | null;
resourceTags?: {
[key: string]: string | null | undefined;
}
| null;
securityGroupIds?: string[] | null;
snsTopicArn?: string | null;
subnetId?: string | null;
terminateInstanceOnFailure?: boolean | null;
}

§Properties

§
clientToken: string
[src]

The idempotency token used to make this request idempotent.

§
description?: string | null
[src]

The description of the infrastructure configuration.

§
infrastructureConfigurationArn: string
[src]

The Amazon Resource Name (ARN) of the infrastructure configuration that you want to update.

§
instanceMetadataOptions?: InstanceMetadataOptions | null
[src]

The instance metadata options that you can set for the HTTP requests that pipeline builds use to launch EC2 build and test instances. For more information about instance metadata options, see one of the following links:

§
instanceProfileName: string
[src]

The instance profile to associate with the instance used to customize your Amazon EC2 AMI.

§
instanceTypes?: string[] | null
[src]

The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.

§
keyPair?: string | null
[src]

The key pair of the infrastructure configuration. You can use this to log on to and debug the instance used to create your image.

§
logging?: Logging | null
[src]

The logging configuration of the infrastructure configuration.

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

The tags attached to the resource created by Image Builder.

§
securityGroupIds?: string[] | null
[src]

The security group IDs to associate with the instance used to customize your Amazon EC2 AMI.

§
snsTopicArn?: string | null
[src]

The Amazon Resource Name (ARN) for the SNS topic to which we send image build event notifications.

Note: EC2 Image Builder is unable to send notifications to SNS topics that are encrypted using keys from other accounts. The key that is used to encrypt the SNS topic must reside in the account that the Image Builder service runs under.

§
subnetId?: string | null
[src]

The subnet ID to place the instance used to customize your Amazon EC2 AMI in.

§
terminateInstanceOnFailure?: boolean | null
[src]

The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.