@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)
45 lines (44 loc) • 1.3 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::Connect::Notification
*/
export declare function getNotification(args: GetNotificationArgs, opts?: pulumi.InvokeOptions): Promise<GetNotificationResult>;
export interface GetNotificationArgs {
/**
* The Amazon Resource Name (ARN) for the notification.
*/
arn: string;
}
export interface GetNotificationResult {
/**
* The Amazon Resource Name (ARN) for the notification.
*/
readonly arn?: string;
/**
* The content of the notification.
*/
readonly content?: outputs.connect.NotificationContent;
/**
* The time a notification was created
*/
readonly createdAt?: string;
/**
* The identifier of the notification.
*/
readonly id?: string;
/**
* One or more tags.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::Connect::Notification
*/
export declare function getNotificationOutput(args: GetNotificationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNotificationResult>;
export interface GetNotificationOutputArgs {
/**
* The Amazon Resource Name (ARN) for the notification.
*/
arn: pulumi.Input<string>;
}