import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Creates a new Scheduled Query that allows you to define a Logs Insights query that will run on a schedule and configure actions to take with the query results.
 */
export declare class ScheduledQuery extends pulumi.CustomResource {
    /**
     * Get an existing ScheduledQuery resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ScheduledQuery;
    /**
     * Returns true if the given object is an instance of ScheduledQuery.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is ScheduledQuery;
    readonly creationTime: pulumi.Output<number>;
    readonly description: pulumi.Output<string | undefined>;
    readonly destinationConfiguration: pulumi.Output<outputs.logs.ScheduledQueryDestinationConfiguration | undefined>;
    readonly executionRoleArn: pulumi.Output<string>;
    readonly lastExecutionStatus: pulumi.Output<enums.logs.ScheduledQueryLastExecutionStatus>;
    readonly lastTriggeredTime: pulumi.Output<number>;
    readonly lastUpdatedTime: pulumi.Output<number>;
    readonly logGroupIdentifiers: pulumi.Output<string[] | undefined>;
    readonly name: pulumi.Output<string>;
    readonly queryLanguage: pulumi.Output<string>;
    readonly queryString: pulumi.Output<string>;
    readonly scheduleEndTime: pulumi.Output<number | undefined>;
    readonly scheduleExpression: pulumi.Output<string>;
    readonly scheduleStartTime: pulumi.Output<number | undefined>;
    readonly scheduledQueryArn: pulumi.Output<string>;
    readonly startTimeOffset: pulumi.Output<number | undefined>;
    readonly state: pulumi.Output<enums.logs.ScheduledQueryState | undefined>;
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    readonly timezone: pulumi.Output<string | undefined>;
    /**
     * Create a ScheduledQuery resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: ScheduledQueryArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a ScheduledQuery resource.
 */
export interface ScheduledQueryArgs {
    description?: pulumi.Input<string>;
    destinationConfiguration?: pulumi.Input<inputs.logs.ScheduledQueryDestinationConfigurationArgs>;
    executionRoleArn: pulumi.Input<string>;
    logGroupIdentifiers?: pulumi.Input<pulumi.Input<string>[]>;
    name?: pulumi.Input<string>;
    queryLanguage: pulumi.Input<string>;
    queryString: pulumi.Input<string>;
    scheduleEndTime?: pulumi.Input<number>;
    scheduleExpression: pulumi.Input<string>;
    scheduleStartTime?: pulumi.Input<number>;
    startTimeOffset?: pulumi.Input<number>;
    state?: pulumi.Input<enums.logs.ScheduledQueryState>;
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
    timezone?: pulumi.Input<string>;
}
