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

Reservation

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

Describes a launch request for one or more instances, and includes owner, requester, and security group information that applies to all instances in the launch request.

interface Reservation {
Groups: GroupIdentifier[];
Instances: Instance[];
OwnerId?: string | null;
RequesterId?: string | null;
ReservationId?: string | null;
}

§Properties

§

[EC2-Classic only] The security groups.

§
Instances: Instance[]
[src]

The instances.

§
OwnerId?: string | null
[src]

The ID of the Amazon Web Services account that owns the reservation.

§
RequesterId?: string | null
[src]

The ID of the requester that launched the instances on your behalf (for example, Amazon Web Services Management Console or Auto Scaling).

§
ReservationId?: string | null
[src]

The ID of the reservation.