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/docdb.ts?docs=full";

Represents the input to "ModifyEventSubscription".

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.

§
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 an instance, 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

§
SubscriptionName: string
[src]

The name of the Amazon DocumentDB event notification subscription.