Values.UpdateScheduledQueryRequestSourceUpdates an existing scheduled query with new configuration. This operation uses PUT semantics, allowing modification of query parameters, schedule, and destinations.
type nonrec t = {identifier : ScheduledQueryIdentifier.t;The ARN or name of the scheduled query to update.
*)description : ScheduledQueryDescription.t option;An updated description for the scheduled query.
*)queryLanguage : QueryLanguage.t;The updated query language for the scheduled query.
*)queryString : QueryString.t;The updated query string to execute.
*)logGroupIdentifiers : ScheduledQueryLogGroupIdentifiers.t option;The updated array of log group names or ARNs to query.
*)scheduleExpression : ScheduleExpression.t;The updated cron expression that defines when the scheduled query runs.
*)timezone : ScheduleTimezone.t option;The updated timezone for evaluating the schedule expression.
*)startTimeOffset : StartTimeOffset.t option;The updated time offset in seconds that defines the lookback period for the query.
*)destinationConfiguration : DestinationConfiguration.t option;The updated configuration for where to deliver query results.
*)scheduleStartTime : Timestamp.t option;The updated start time for the scheduled query in Unix epoch format.
*)scheduleEndTime : Timestamp.t option;The updated end time for the scheduled query in Unix epoch format.
*)executionRoleArn : RoleArn.t;The updated ARN of the IAM role that grants permissions to execute the query and deliver results.
*)state : ScheduledQueryState.t option;The updated state of the scheduled query.
*)}val make :
?description:??? ->
?logGroupIdentifiers:??? ->
?timezone:??? ->
?startTimeOffset:??? ->
?destinationConfiguration:??? ->
?scheduleStartTime:??? ->
?scheduleEndTime:??? ->
?state:??? ->
identifier:ScheduledQueryIdentifier.t ->
queryLanguage:QueryLanguage.t ->
queryString:QueryString.t ->
scheduleExpression:ScheduleExpression.t ->
executionRoleArn:RoleArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of LogGroupIdentifier.t ] list
| `Long of StartTimeOffset.t
| `String of ScheduledQueryIdentifier.t
| `Structure of
(string
* [> `Structure of (string * [> `String of S3Uri.t ]) list ])
list ])
list ]