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

InstanceEventWindowAssociationRequest

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

One or more targets associated with the specified event window. Only one type of target (instance ID, instance tag, or Dedicated Host ID) can be associated with an event window.

interface InstanceEventWindowAssociationRequest {
DedicatedHostIds?: string[] | null;
InstanceIds?: string[] | null;
InstanceTags?: Tag[] | null;
}

§Properties

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

The IDs of the Dedicated Hosts to associate with the event window.

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

The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can't specify the Instance ID parameter; you must use the Dedicated Host ID parameter.

§
InstanceTags?: Tag[] | null
[src]

The instance tags to associate with the event window. Any instances associated with the tags will be associated with the event window.