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

RestoreServerRequest

import type { RestoreServerRequest } from "https://aws-api.deno.dev/v0.3/services/opsworkscm.ts?docs=full";
interface RestoreServerRequest {
BackupId: string;
InstanceType?: string | null;
KeyPair?: string | null;
ServerName: string;
}

§Properties

§
BackupId: string
[src]

The ID of the backup that you want to use to restore a server.

§
InstanceType?: string | null
[src]

The type of instance to restore. Valid values must be specified in the following format: ^([cm][34]|t2).* For example, m5.large. Valid values are m5.large, r5.xlarge, and r5.2xlarge. If you do not specify this parameter, RestoreServer uses the instance type from the specified backup.

§
KeyPair?: string | null
[src]

The name of the key pair to set on the new EC2 instance. This can be helpful if the administrator no longer has the SSH key.

§
ServerName: string
[src]

The name of the server that you want to restore.