Values.GetScheduledQueryResponseSourceRetrieves details about a specific scheduled query, including its configuration, execution status, and metadata.
type nonrec t = {scheduledQueryArn : Arn.t option;The ARN of the scheduled query.
*)name : ScheduledQueryName.t option;The name of the scheduled query.
*)description : ScheduledQueryDescription.t option;The description of the scheduled query.
*)queryLanguage : QueryLanguage.t option;The query language used by the scheduled query.
*)queryString : QueryString.t option;The query string executed by the scheduled query.
*)logGroupIdentifiers : ScheduledQueryLogGroupIdentifiers.t option;The log groups queried by the scheduled query.
*)scheduleExpression : ScheduleExpression.t option;The cron expression that defines when the scheduled query runs.
*)timezone : ScheduleTimezone.t option;The timezone used for evaluating the schedule expression.
*)startTimeOffset : StartTimeOffset.t option;The time offset in seconds that defines the lookback period for the query.
*)destinationConfiguration : DestinationConfiguration.t option;Configuration for where query results are delivered.
*)state : ScheduledQueryState.t option;The current state of the scheduled query.
*)lastTriggeredTime : Timestamp.t option;The timestamp when the scheduled query was last executed.
*)lastExecutionStatus : ExecutionStatus.t option;The status of the most recent execution of the scheduled query.
*)scheduleStartTime : Timestamp.t option;The start time for the scheduled query in Unix epoch format.
*)scheduleEndTime : Timestamp.t option;The end time for the scheduled query in Unix epoch format.
*)executionRoleArn : RoleArn.t option;The ARN of the IAM role used to execute the query and deliver results.
*)creationTime : Timestamp.t option;The timestamp when the scheduled query was created.
*)lastUpdatedTime : Timestamp.t option;The timestamp when the scheduled query was last updated.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val make :
?scheduledQueryArn:??? ->
?name:??? ->
?description:??? ->
?queryLanguage:??? ->
?queryString:??? ->
?logGroupIdentifiers:??? ->
?scheduleExpression:??? ->
?timezone:??? ->
?startTimeOffset:??? ->
?destinationConfiguration:??? ->
?state:??? ->
?lastTriggeredTime:??? ->
?lastExecutionStatus:??? ->
?scheduleStartTime:??? ->
?scheduleEndTime:??? ->
?executionRoleArn:??? ->
?creationTime:??? ->
?lastUpdatedTime:??? ->
unit ->
tval error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of unit
| `InternalServerException of unit
| `ResourceNotFoundException of unit
| `ThrottlingException of unit
| `Unknown_operation_error of string * string option
| `ValidationException of unit ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of unit
| `InternalServerException of unit
| `ResourceNotFoundException of unit
| `ThrottlingException of unit
| `Unknown_operation_error of string * string option
| `ValidationException of unit ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of LogGroupIdentifier.t ] list
| `Long of StartTimeOffset.t
| `String of Arn.t
| `Structure of
(string
* [> `Structure of (string * [> `String of S3Uri.t ]) list ])
list ])
list ]