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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRefreshSchedule.RefreshScheduleMapPropertystatic final classAn implementation forCfnRefreshSchedule.RefreshScheduleMapProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe type of refresh that a dataset undergoes.default ObjectThe frequency for the refresh schedule.default StringAn identifier for the refresh schedule.default StringTime after which the refresh schedule can be started, expressed inYYYY-MM-DDTHH:MM:SSformat.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRefreshType
The type of refresh that a dataset undergoes. Valid values are as follows:.FULL_REFRESH: A complete refresh of a dataset.INCREMENTAL_REFRESH: A partial refresh of some rows of a dataset, based on the time window specified.
For more information on full and incremental refreshes, see Refreshing SPICE data in the Quick Suite User Guide .
- See Also:
-
getScheduleFrequency
The frequency for the refresh schedule.Returns union: either
IResolvableorCfnRefreshSchedule.ScheduleFrequencyProperty- See Also:
-
getScheduleId
An identifier for the refresh schedule.- See Also:
-
getStartAfterDateTime
Time after which the refresh schedule can be started, expressed inYYYY-MM-DDTHH:MM:SSformat.- See Also:
-
builder
-