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

ServerLaunchConfiguration

import type { ServerLaunchConfiguration } from "https://aws-api.deno.dev/v0.4/services/sms.ts?docs=full";

Launch configuration for a server.

interface ServerLaunchConfiguration {
associatePublicIpAddress?: boolean | null;
configureScript?: S3Location | null;
configureScriptType?: ScriptType | null;
ec2KeyName?: string | null;
iamInstanceProfileName?: string | null;
instanceType?: string | null;
logicalId?: string | null;
securityGroup?: string | null;
server?: Server | null;
subnet?: string | null;
userData?: UserData | null;
vpc?: string | null;
}

§Properties

§
associatePublicIpAddress?: boolean | null
[src]

Indicates whether a publicly accessible IP address is created when launching the server.

§
configureScript?: S3Location | null
[src]
§
configureScriptType?: ScriptType | null
[src]

The type of configuration script.

§
ec2KeyName?: string | null
[src]

The name of the Amazon EC2 SSH key to be used for connecting to the launched server.

§
iamInstanceProfileName?: string | null
[src]

The name of the IAM instance profile.

§
instanceType?: string | null
[src]

The instance type to use when launching the server.

§
logicalId?: string | null
[src]

The logical ID of the server in the CloudFormation template.

§
securityGroup?: string | null
[src]

The ID of the security group that applies to the launched server.

§
server?: Server | null
[src]

The ID of the server with which the launch configuration is associated.

§
subnet?: string | null
[src]

The ID of the subnet the server should be launched into.

§
userData?: UserData | null
[src]

Location of the user-data script to be executed when launching the server.

§
vpc?: string | null
[src]

The ID of the VPC into which the server should be launched.