Interface CfnScheduledQuery.ScheduleConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduledQuery.ScheduleConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnScheduledQuery
@Stability(Stable)
public static interface CfnScheduledQuery.ScheduleConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration of the schedule of the query.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.timestream.*;
ScheduleConfigurationProperty scheduleConfigurationProperty = ScheduleConfigurationProperty.builder()
.scheduleExpression("scheduleExpression")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScheduledQuery.ScheduleConfigurationPropertystatic final classAn implementation forCfnScheduledQuery.ScheduleConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An expression that denotes when to trigger the scheduled query run.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScheduleExpression
An expression that denotes when to trigger the scheduled query run.This can be a cron expression or a rate expression.
-
builder
-