import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class NotificationObjectType { SNSTopicArn: Value; BackupVaultEvents: List>; constructor(properties: NotificationObjectType); } export interface BackupVaultProperties { BackupVaultTags?: { [key: string]: any; }; BackupVaultName: Value; EncryptionKeyArn?: Value; Notifications?: NotificationObjectType; AccessPolicy?: { [key: string]: any; }; } export default class BackupVault extends ResourceBase { static NotificationObjectType: typeof NotificationObjectType; constructor(properties: BackupVaultProperties); }