interface ScheduleFrequencyProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnRefreshSchedule.ScheduleFrequencyProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnRefreshSchedule_ScheduleFrequencyProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnRefreshSchedule.ScheduleFrequencyProperty | 
|  Python | aws_cdk.aws_quicksight.CfnRefreshSchedule.ScheduleFrequencyProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnRefreshSchedule»ScheduleFrequencyProperty | 
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const scheduleFrequencyProperty: quicksight.CfnRefreshSchedule.ScheduleFrequencyProperty = {
  interval: 'interval',
  refreshOnDay: {
    dayOfMonth: 'dayOfMonth',
    dayOfWeek: 'dayOfWeek',
  },
  timeOfTheDay: 'timeOfTheDay',
  timeZone: 'timeZone',
};
Properties
| Name | Type | Description | 
|---|---|---|
| interval? | string | The interval between scheduled refreshes. Valid values are as follows:. | 
| refresh | IResolvable | Refresh | The day of the week that you want to schedule the refresh on. | 
| time | string | The time of day that you want the dataset to refresh. | 
| time | string | The timezone that you want the refresh schedule to use. | 
interval?
Type:
string
(optional)
The interval between scheduled refreshes. Valid values are as follows:.
- MINUTE15: The dataset refreshes every 15 minutes. This value is only supported for incremental refreshes. This interval can only be used for one schedule per dataset.
- MINUTE30: The dataset refreshes every 30 minutes. This value is only supported for incremental refreshes. This interval can only be used for one schedule per dataset.
- HOURLY: The dataset refreshes every hour. This interval can only be used for one schedule per dataset.
- DAILY: The dataset refreshes every day.
- WEEKLY: The dataset refreshes every week.
- MONTHLY: The dataset refreshes every month.
refreshOnDay?
Type:
IResolvable | Refresh
(optional)
The day of the week that you want to schedule the refresh on.
This value is required for weekly and monthly refresh intervals.
timeOfTheDay?
Type:
string
(optional)
The time of day that you want the dataset to refresh.
This value is expressed in HH:MM format. This field is not required for schedules that refresh hourly.
timeZone?
Type:
string
(optional)
The timezone that you want the refresh schedule to use.
The timezone ID must match a corresponding ID found on java.util.time.getAvailableIDs() .
