/** * @public * @enum */ export declare const CustomerActionName: { readonly ACKNOWLEDGE: "ACKNOWLEDGE"; readonly DISABLE: "DISABLE"; readonly ENABLE: "ENABLE"; readonly RESET: "RESET"; readonly SNOOZE: "SNOOZE"; }; /** * @public */ export type CustomerActionName = (typeof CustomerActionName)[keyof typeof CustomerActionName]; /** * @public * @enum */ export declare const ComparisonOperator: { readonly EQUAL: "EQUAL"; readonly GREATER: "GREATER"; readonly GREATER_OR_EQUAL: "GREATER_OR_EQUAL"; readonly LESS: "LESS"; readonly LESS_OR_EQUAL: "LESS_OR_EQUAL"; readonly NOT_EQUAL: "NOT_EQUAL"; }; /** * @public */ export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator]; /** * @public * @enum */ export declare const AlarmStateName: { readonly ACKNOWLEDGED: "ACKNOWLEDGED"; readonly ACTIVE: "ACTIVE"; readonly DISABLED: "DISABLED"; readonly LATCHED: "LATCHED"; readonly NORMAL: "NORMAL"; readonly SNOOZE_DISABLED: "SNOOZE_DISABLED"; }; /** * @public */ export type AlarmStateName = (typeof AlarmStateName)[keyof typeof AlarmStateName]; /** * @public * @enum */ export declare const EventType: { readonly STATE_CHANGE: "STATE_CHANGE"; }; /** * @public */ export type EventType = (typeof EventType)[keyof typeof EventType]; /** * @public * @enum */ export declare const TriggerType: { readonly SNOOZE_TIMEOUT: "SNOOZE_TIMEOUT"; }; /** * @public */ export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType]; /** * @public * @enum */ export declare const ErrorCode: { readonly InternalFailureException: "InternalFailureException"; readonly InvalidRequestException: "InvalidRequestException"; readonly ResourceNotFoundException: "ResourceNotFoundException"; readonly ServiceUnavailableException: "ServiceUnavailableException"; readonly ThrottlingException: "ThrottlingException"; }; /** * @public */ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];