/** * @public * @enum */ export declare const DetailType: { readonly BASIC: "BASIC"; readonly FULL: "FULL"; }; /** * @public */ export type DetailType = (typeof DetailType)[keyof typeof DetailType]; /** * @public * @enum */ export declare const NotificationRuleStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type NotificationRuleStatus = (typeof NotificationRuleStatus)[keyof typeof NotificationRuleStatus]; /** * @public * @enum */ export declare const TargetStatus: { readonly ACTIVE: "ACTIVE"; readonly DEACTIVATED: "DEACTIVATED"; readonly INACTIVE: "INACTIVE"; readonly PENDING: "PENDING"; readonly UNREACHABLE: "UNREACHABLE"; }; /** * @public */ export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus]; /** * @public * @enum */ export declare const ListEventTypesFilterName: { readonly RESOURCE_TYPE: "RESOURCE_TYPE"; readonly SERVICE_NAME: "SERVICE_NAME"; }; /** * @public */ export type ListEventTypesFilterName = (typeof ListEventTypesFilterName)[keyof typeof ListEventTypesFilterName]; /** * @public * @enum */ export declare const ListNotificationRulesFilterName: { readonly CREATED_BY: "CREATED_BY"; readonly EVENT_TYPE_ID: "EVENT_TYPE_ID"; readonly RESOURCE: "RESOURCE"; readonly TARGET_ADDRESS: "TARGET_ADDRESS"; }; /** * @public */ export type ListNotificationRulesFilterName = (typeof ListNotificationRulesFilterName)[keyof typeof ListNotificationRulesFilterName]; /** * @public * @enum */ export declare const ListTargetsFilterName: { readonly TARGET_ADDRESS: "TARGET_ADDRESS"; readonly TARGET_STATUS: "TARGET_STATUS"; readonly TARGET_TYPE: "TARGET_TYPE"; }; /** * @public */ export type ListTargetsFilterName = (typeof ListTargetsFilterName)[keyof typeof ListTargetsFilterName];