import * as pulumi from "@pulumi/pulumi"; /** * This resource schema represents the NotificationChannel resource in the Amazon DevOps Guru. */ export declare function getNotificationChannel(args: GetNotificationChannelArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetNotificationChannelArgs { /** * The ID of a notification channel. */ id: string; } export interface GetNotificationChannelResult { /** * The ID of a notification channel. */ readonly id?: string; } /** * This resource schema represents the NotificationChannel resource in the Amazon DevOps Guru. */ export declare function getNotificationChannelOutput(args: GetNotificationChannelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetNotificationChannelOutputArgs { /** * The ID of a notification channel. */ id: pulumi.Input; }