Interface CfnRefreshSchedule.ScheduleFrequencyProperty

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

@Stability(Stable) public static interface CfnRefreshSchedule.ScheduleFrequencyProperty extends software.amazon.jsii.JsiiSerializable
The frequency for the refresh schedule.

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.quicksight.*;
 ScheduleFrequencyProperty scheduleFrequencyProperty = ScheduleFrequencyProperty.builder()
         .interval("interval")
         .refreshOnDay(RefreshOnDayProperty.builder()
                 .dayOfMonth("dayOfMonth")
                 .dayOfWeek("dayOfWeek")
                 .build())
         .timeOfTheDay("timeOfTheDay")
         .timeZone("timeZone")
         .build();
 

See Also: