interface RefreshOnDayProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnRefreshSchedulePropsMixin.RefreshOnDayProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnRefreshSchedulePropsMixin_RefreshOnDayProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnRefreshSchedulePropsMixin.RefreshOnDayProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnRefreshSchedulePropsMixin.RefreshOnDayProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnRefreshSchedulePropsMixin » RefreshOnDayProperty |
The day that you want yout dataset to refresh.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const refreshOnDayProperty: quicksight_mixins.CfnRefreshSchedulePropsMixin.RefreshOnDayProperty = {
dayOfMonth: 'dayOfMonth',
dayOfWeek: 'dayOfWeek',
};
Properties
| Name | Type | Description |
|---|---|---|
| day | string | The day of the month that you want your dataset to refresh. |
| day | string | The day of the week that you want to schedule the refresh on. |
dayOfMonth?
Type:
string
(optional)
The day of the month that you want your dataset to refresh.
This value is required for monthly refresh intervals.
dayOfWeek?
Type:
string
(optional)
The day of the week that you want to schedule the refresh on.
This value is required for weekly and monthly refresh intervals.

.NET
Go
Java
Python
TypeScript