export declare const ApplicationAlarmSeverity: { readonly High: "HIGH"; readonly Medium: "MEDIUM"; readonly Low: "LOW"; }; /** * Indicates the degree of outage when the alarm goes off. */ export type ApplicationAlarmSeverity = (typeof ApplicationAlarmSeverity)[keyof typeof ApplicationAlarmSeverity]; export declare const ApplicationComponentMonitoringSettingComponentConfigurationMode: { readonly Default: "DEFAULT"; readonly DefaultWithOverwrite: "DEFAULT_WITH_OVERWRITE"; readonly Custom: "CUSTOM"; }; /** * The component monitoring configuration mode. */ export type ApplicationComponentMonitoringSettingComponentConfigurationMode = (typeof ApplicationComponentMonitoringSettingComponentConfigurationMode)[keyof typeof ApplicationComponentMonitoringSettingComponentConfigurationMode]; export declare const ApplicationEventLevel: { readonly Information: "INFORMATION"; readonly Warning: "WARNING"; readonly Error: "ERROR"; readonly Critical: "CRITICAL"; readonly Verbose: "VERBOSE"; }; /** * The level of event to log. */ export type ApplicationEventLevel = (typeof ApplicationEventLevel)[keyof typeof ApplicationEventLevel]; export declare const ApplicationGroupingType: { readonly AccountBased: "ACCOUNT_BASED"; }; /** * The grouping type of the application */ export type ApplicationGroupingType = (typeof ApplicationGroupingType)[keyof typeof ApplicationGroupingType]; export declare const ApplicationLogEncoding: { readonly Utf8: "utf-8"; readonly Utf16: "utf-16"; readonly Ascii: "ascii"; }; /** * The type of encoding of the logs to be monitored. */ export type ApplicationLogEncoding = (typeof ApplicationLogEncoding)[keyof typeof ApplicationLogEncoding]; export declare const ApplicationSubComponentTypeConfigurationSubComponentType: { readonly Awsec2Instance: "AWS::EC2::Instance"; readonly Awsec2Volume: "AWS::EC2::Volume"; }; /** * The sub component type. */ export type ApplicationSubComponentTypeConfigurationSubComponentType = (typeof ApplicationSubComponentTypeConfigurationSubComponentType)[keyof typeof ApplicationSubComponentTypeConfigurationSubComponentType];