Interface CfnTask.TaskScheduleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTask.TaskScheduleProperty.Jsii$Proxy
Enclosing class:
CfnTask

@Stability(Stable) public static interface CfnTask.TaskScheduleProperty extends software.amazon.jsii.JsiiSerializable
Specifies the schedule you want your task to use for repeated executions.

For more information, see Schedule Expressions for Rules .

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.datasync.*;
 TaskScheduleProperty taskScheduleProperty = TaskScheduleProperty.builder()
         .scheduleExpression("scheduleExpression")
         .build();
 

See Also: