Interface CfnRefreshSchedule.RefreshScheduleMapProperty

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

@Stability(Stable) public static interface CfnRefreshSchedule.RefreshScheduleMapProperty extends software.amazon.jsii.JsiiSerializable
A summary of a configured refresh schedule for a dataset.

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.*;
 RefreshScheduleMapProperty refreshScheduleMapProperty = RefreshScheduleMapProperty.builder()
         .refreshType("refreshType")
         .scheduleFrequency(ScheduleFrequencyProperty.builder()
                 .interval("interval")
                 .refreshOnDay(RefreshOnDayProperty.builder()
                         .dayOfMonth("dayOfMonth")
                         .dayOfWeek("dayOfWeek")
                         .build())
                 .timeOfTheDay("timeOfTheDay")
                 .timeZone("timeZone")
                 .build())
         .scheduleId("scheduleId")
         .startAfterDateTime("startAfterDateTime")
         .build();
 

See Also: