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

InfrastructureConfiguration

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

Details of the infrastructure configuration.

interface InfrastructureConfiguration {
arn?: string | null;
dateCreated?: string | null;
dateUpdated?: string | null;
description?: string | null;
instanceMetadataOptions?: InstanceMetadataOptions | null;
instanceProfileName?: string | null;
instanceTypes?: string[] | null;
keyPair?: string | null;
logging?: Logging | null;
name?: string | null;
resourceTags?: {
[key: string]: string | null | undefined;
}
| null;
securityGroupIds?: string[] | null;
snsTopicArn?: string | null;
subnetId?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
terminateInstanceOnFailure?: boolean | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the infrastructure configuration.

§
dateCreated?: string | null
[src]

The date on which the infrastructure configuration was created.

§
dateUpdated?: string | null
[src]

The date on which the infrastructure configuration was last updated.

§
description?: string | null
[src]

The description of the infrastructure configuration.

§
instanceMetadataOptions?: InstanceMetadataOptions | null
[src]

The instance metadata option settings for the infrastructure configuration.

§
instanceProfileName?: string | null
[src]

The instance profile of the infrastructure configuration.

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

The instance types of the infrastructure configuration.

§
keyPair?: string | null
[src]

The Amazon EC2 key pair of the infrastructure configuration.

§
logging?: Logging | null
[src]

The logging configuration of the infrastructure configuration.

§
name?: string | null
[src]

The name 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 of the infrastructure configuration.

§
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 of the infrastructure configuration.

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

The tags of the infrastructure configuration.

§
terminateInstanceOnFailure?: boolean | null
[src]

The terminate instance on failure configuration of the infrastructure configuration.