import * as cdk from "../../core/lib"; import * as constructs from "constructs"; import * as cfn_parse from "../../core/lib/helpers-internal"; import { IManagedNotificationConfigurationRef, ManagedNotificationConfigurationReference } from "../../interfaces/generated/aws-usernotifications-interfaces.generated"; /** * Resource type definition for AWS User Notifications ManagedNotificationConfiguration. * * This is a read-only resource representing AWS-managed notification configurations. * * @cloudformationResource AWS::UserNotifications::ManagedNotificationConfiguration * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-usernotifications-managednotificationconfiguration.html */ export declare class CfnManagedNotificationConfiguration extends cdk.CfnResource implements cdk.IInspectable, IManagedNotificationConfigurationRef { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnManagedNotificationConfiguration from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnManagedNotificationConfiguration; /** * Checks whether the given object is a CfnManagedNotificationConfiguration */ static isCfnManagedNotificationConfiguration(x: any): x is CfnManagedNotificationConfiguration; static arnForManagedNotificationConfiguration(resource: IManagedNotificationConfigurationRef): string; /** * The category of the ManagedNotificationConfiguration. */ private _category?; /** * The subCategory of the ManagedNotificationConfiguration. */ private _subCategory?; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::UserNotifications::ManagedNotificationConfiguration`. * * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props?: CfnManagedNotificationConfigurationProps); get managedNotificationConfigurationRef(): ManagedNotificationConfigurationReference; /** * The category of the ManagedNotificationConfiguration. */ get category(): string | undefined; /** * The category of the ManagedNotificationConfiguration. */ set category(value: string | undefined); /** * The subCategory of the ManagedNotificationConfiguration. */ get subCategory(): string | undefined; /** * The subCategory of the ManagedNotificationConfiguration. */ set subCategory(value: string | undefined); /** * The ARN of the ManagedNotificationConfiguration. * * @cloudformationAttribute Arn */ get attrArn(): string; /** * The description of the ManagedNotificationConfiguration. * * @cloudformationAttribute Description */ get attrDescription(): string; /** * The name of the ManagedNotificationConfiguration. * * @cloudformationAttribute Name */ get attrName(): string; protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } /** * Properties for defining a `CfnManagedNotificationConfiguration` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-usernotifications-managednotificationconfiguration.html */ export interface CfnManagedNotificationConfigurationProps { /** * The category of the ManagedNotificationConfiguration. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-usernotifications-managednotificationconfiguration.html#cfn-usernotifications-managednotificationconfiguration-category */ readonly category?: string; /** * The subCategory of the ManagedNotificationConfiguration. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-usernotifications-managednotificationconfiguration.html#cfn-usernotifications-managednotificationconfiguration-subcategory */ readonly subCategory?: string; } export type { IManagedNotificationConfigurationRef, ManagedNotificationConfigurationReference };