Module Values.ScheduledQuerySource

Scheduled Query

Sourcetype nonrec t = {
  1. arn : AmazonResourceName.t option;
    (*

    The Amazon Resource Name.

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

    The name of the scheduled query.

    *)
  3. creationTime : Time.t option;
    (*

    The creation time of the scheduled query.

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

    State of scheduled query.

    *)
  5. previousInvocationTime : Time.t option;
    (*

    The last time the scheduled query was run.

    *)
  6. nextInvocationTime : Time.t option;
    (*

    The next time the scheduled query is to be run.

    *)
  7. errorReportConfiguration : ErrorReportConfiguration.t option;
    (*

    Configuration for scheduled query error reporting.

    *)
  8. targetDestination : TargetDestination.t option;
    (*

    Target data source where final scheduled query result will be written.

    *)
  9. lastRunStatus : ScheduledQueryRunStatus.t option;
    (*

    Status of the last scheduled query run.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?creationTime:??? -> ?state:??? -> ?previousInvocationTime:??? -> ?nextInvocationTime:??? -> ?errorReportConfiguration:??? -> ?targetDestination:??? -> ?lastRunStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AmazonResourceName.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of S3BucketName.t ]) list ]) list | `Timestamp of Time.t ]) 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