@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
28 lines (27 loc) • 967 B
TypeScript
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<GetNotificationChannelResult>;
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<GetNotificationChannelResult>;
export interface GetNotificationChannelOutputArgs {
/**
* The ID of a notification channel.
*/
id: pulumi.Input<string>;
}