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

DescribeNotificationRuleResult

import type { DescribeNotificationRuleResult } from "https://aws-api.deno.dev/v0.3/services/codestarnotifications.ts?docs=full";
interface DescribeNotificationRuleResult {
Arn: string;
CreatedBy?: string | null;
CreatedTimestamp?: Date | number | null;
DetailType?: DetailType | null;
EventTypes?: EventTypeSummary[] | null;
LastModifiedTimestamp?: Date | number | null;
Name?: string | null;
Resource?: string | null;
Status?: NotificationRuleStatus | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Targets?: TargetSummary[] | null;
}

§Properties

§
Arn: string
[src]

The Amazon Resource Name (ARN) of the notification rule.

§
CreatedBy?: string | null
[src]

The name or email alias of the person who created the notification rule.

§
CreatedTimestamp?: Date | number | null
[src]

The date and time the notification rule was created, in timestamp format.

§
DetailType?: DetailType | null
[src]

The level of detail included in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created.

§
EventTypes?: EventTypeSummary[] | null
[src]

A list of the event types associated with the notification rule.

§
LastModifiedTimestamp?: Date | number | null
[src]

The date and time the notification rule was most recently updated, in timestamp format.

§
Name?: string | null
[src]

The name of the notification rule.

§
Resource?: string | null
[src]

The Amazon Resource Name (ARN) of the resource associated with the notification rule.

§

The status of the notification rule. Valid statuses are on (sending notifications) or off (not sending notifications).

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags associated with the notification rule.

§
Targets?: TargetSummary[] | null
[src]

A list of the SNS topics associated with the notification rule.