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

SNSConfiguration

import type { SNSConfiguration } from "https://aws-api.deno.dev/v0.3/services/lookoutmetrics.ts?docs=full";

Contains information about the SNS topic to which you want to send your alerts and the IAM role that has access to that topic.

interface SNSConfiguration {
RoleArn: string;
SnsTopicArn: string;
}

§Properties

§
RoleArn: string
[src]

The ARN of the IAM role that has access to the target SNS topic.

§
SnsTopicArn: string
[src]

The ARN of the target SNS topic.