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; 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; export interface GetNotificationOutputArgs { /** * The Amazon Resource Name (ARN) for the notification. */ arn: pulumi.Input; }