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

EventType

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

Contains the metadata about a type of event that is reported by Health. The EventType shows the category, service, and the event type code of the event. For example, an issue might be the category, EC2 the service, and AWS_EC2_SYSTEM_MAINTENANCE_EVENT the event type code.

You can use the DescribeEventTypes API operation to return this information about an event.

You can also use the Amazon CloudWatch Events console to create a rule so that you can get notified or take action when Health delivers a specific event to your Amazon Web Services account. For more information, see Monitor for Health events with Amazon CloudWatch Events in the Health User Guide.

interface EventType {
category?: eventTypeCategory | null;
code?: string | null;
service?: string | null;
}

§Properties

§
category?: 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.

§
code?: string | null
[src]

The unique identifier for the event type. The format is AWS__SERVICE___DESCRIPTION_; for example, AWS_EC2_SYSTEM_MAINTENANCE_EVENT.

§
service?: string | null
[src]

The Amazon Web Services service that is affected by the event. For example, EC2, RDS.