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

EventFilter

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

The values to use to filter results from the DescribeEvents and DescribeEventAggregates operations.

interface EventFilter {
availabilityZones?: string[] | null;
endTimes?: DateTimeRange[] | null;
entityArns?: string[] | null;
entityValues?: string[] | null;
eventArns?: string[] | null;
eventStatusCodes?: eventStatusCode[] | null;
eventTypeCategories?: eventTypeCategory[] | null;
eventTypeCodes?: string[] | null;
lastUpdatedTimes?: DateTimeRange[] | null;
regions?: string[] | null;
services?: string[] | null;
startTimes?: DateTimeRange[] | null;
tags?: ({
[key: string]: string | null | undefined;
}
)
[]
| null;
}

§Properties

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

A list of Amazon Web Services Availability Zones.

§
endTimes?: DateTimeRange[] | null
[src]

A list of dates and times that the event ended.

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

A list of entity ARNs (unique identifiers).

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

A list of entity identifiers, such as EC2 instance IDs (i-34ab692e) or EBS volumes (vol-426ab23e).

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

A list of event ARNs (unique identifiers). For example: "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101"

§
eventStatusCodes?: eventStatusCode[] | null
[src]

A list of event status codes.

§
eventTypeCategories?: eventTypeCategory[] | null
[src]

A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

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

A list of unique identifiers for event types. For example, "AWS_EC2_SYSTEM_MAINTENANCE_EVENT","AWS_RDS_MAINTENANCE_SCHEDULED".

§
lastUpdatedTimes?: DateTimeRange[] | null
[src]

A list of dates and times that the event was last updated.

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

A list of Amazon Web Services Regions.

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

The Amazon Web Services services associated with the event. For example, EC2, RDS.

§
startTimes?: DateTimeRange[] | null
[src]

A list of dates and times that the event began.

§
tags?: ({
[key: string]: string | null | undefined;
}
)
[]
| null
[src]

A map of entity tags attached to the affected entity.

Note: Currently, the tags property isn't supported.