Module Values.ScheduledQuerySummarySource

Summary information about a scheduled query, including basic configuration and execution status.

Sourcetype nonrec t = {
  1. scheduledQueryArn : Arn.t option;
    (*

    The ARN of the scheduled query.

    *)
  2. name : ScheduledQueryName.t option;
    (*

    The name of the scheduled query.

    *)
  3. state : ScheduledQueryState.t option;
    (*

    The current state of the scheduled query.

    *)
  4. lastTriggeredTime : Timestamp.t option;
    (*

    The timestamp when the scheduled query was last executed.

    *)
  5. lastExecutionStatus : ExecutionStatus.t option;
    (*

    The status of the most recent execution.

    *)
  6. scheduleExpression : ScheduleExpression.t option;
    (*

    The cron expression that defines when the scheduled query runs.

    *)
  7. timezone : ScheduleTimezone.t option;
    (*

    The timezone used for evaluating the schedule expression.

    *)
  8. destinationConfiguration : DestinationConfiguration.t option;
    (*

    Configuration for where query results are delivered.

    *)
  9. creationTime : Timestamp.t option;
    (*

    The timestamp when the scheduled query was created.

    *)
  10. lastUpdatedTime : Timestamp.t option;
    (*

    The timestamp when the scheduled query was last updated.

    *)
}
Sourceval make : ?scheduledQueryArn:??? -> ?name:??? -> ?state:??? -> ?lastTriggeredTime:??? -> ?lastExecutionStatus:??? -> ?scheduleExpression:??? -> ?timezone:??? -> ?destinationConfiguration:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Timestamp.t | `String of Arn.t | `Structure of (string * [> `Structure of (string * [> `String of S3Uri.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t