Interface CfnRefreshScheduleProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRefreshScheduleProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:21.653Z") @Stability(Stable) public interface CfnRefreshScheduleProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnRefreshSchedule.

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.*;
 CfnRefreshScheduleProps cfnRefreshScheduleProps = CfnRefreshScheduleProps.builder()
         .awsAccountId("awsAccountId")
         .dataSetId("dataSetId")
         .schedule(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())
         .build();
 

See Also: