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

ModifyEventSubscriptionMessage

import type { ModifyEventSubscriptionMessage } from "https://aws-api.deno.dev/v0.4/services/neptune.ts?docs=full";
interface ModifyEventSubscriptionMessage {
Enabled?: boolean | null;
EventCategories?: string[] | null;
SnsTopicArn?: string | null;
SourceType?: string | null;
SubscriptionName: string;
}

§Properties

§
Enabled?: boolean | null
[src]

A Boolean value; set to true to activate the subscription.

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

A list of event categories for a SourceType that you want to subscribe to. You can see a list of the categories for a given SourceType by using the DescribeEventCategories action.

§
SnsTopicArn?: string | null
[src]

The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.

§
SourceType?: string | null
[src]

The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. if this value is not specified, all events are returned.

Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot

§
SubscriptionName: string
[src]

The name of the event notification subscription.