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

SendSSHPublicKeyRequest

import type { SendSSHPublicKeyRequest } from "https://aws-api.deno.dev/v0.3/services/ec2instanceconnect.ts?docs=full";
interface SendSSHPublicKeyRequest {
AvailabilityZone?: string | null;
InstanceId: string;
InstanceOSUser: string;
SSHPublicKey: string;
}

§Properties

§
AvailabilityZone?: string | null
[src]

The Availability Zone in which the EC2 instance was launched.

§
InstanceId: string
[src]

The ID of the EC2 instance.

§
InstanceOSUser: string
[src]

The OS user on the EC2 instance for whom the key can be used to authenticate.

§
SSHPublicKey: string
[src]

The public key material. To use the public key, you must have the matching private key.