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

EntityFilter

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

The values to use to filter results from the DescribeAffectedEntities operation.

interface EntityFilter {
entityArns?: string[] | null;
entityValues?: string[] | null;
eventArns: string[];
lastUpdatedTimes?: DateTimeRange[] | null;
statusCodes?: entityStatusCode[] | null;
tags?: ({
[key: string]: string | null | undefined;
}
)
[]
| null;
}

§Properties

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

A list of entity ARNs (unique identifiers).

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

A list of IDs for affected entities.

§
eventArns: string[]
[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"

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

A list of the most recent dates and times that the entity was updated.

§
statusCodes?: entityStatusCode[] | null
[src]

A list of entity status codes (IMPAIRED, UNIMPAIRED, or UNKNOWN).

§
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.