interface Alert {
    annotations: Record<string, string>;
    duration: string;
    enabled: boolean;
    name: string;
    preconfigured: boolean;
    region: Region;
    rule: string;
    state?: AlertState;
}

Properties

annotations: Record<string, string>
duration: string
enabled: boolean
name: string
preconfigured: boolean
region: Region

Region to target. If none is passed will use default region from the config.

rule: string
state?: AlertState