interface CfnRefreshScheduleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnRefreshScheduleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnRefreshScheduleMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnRefreshScheduleMixinProps |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnRefreshScheduleMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnRefreshScheduleMixinProps |
Properties for CfnRefreshSchedulePropsMixin.
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 cfnRefreshScheduleMixinProps: quicksight_mixins.CfnRefreshScheduleMixinProps = {
awsAccountId: 'awsAccountId',
dataSetId: 'dataSetId',
schedule: {
refreshType: 'refreshType',
scheduleFrequency: {
interval: 'interval',
refreshOnDay: {
dayOfMonth: 'dayOfMonth',
dayOfWeek: 'dayOfWeek',
},
timeOfTheDay: 'timeOfTheDay',
timeZone: 'timeZone',
},
scheduleId: 'scheduleId',
startAfterDateTime: 'startAfterDateTime',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AWS account ID of the account that you are creating a schedule in. |
| data | string | The ID of the dataset that you are creating a refresh schedule for. |
| schedule? | IResolvable | Refresh | The refresh schedule of a dataset. |
awsAccountId?
Type:
string
(optional)
The AWS account ID of the account that you are creating a schedule in.
dataSetId?
Type:
string
(optional)
The ID of the dataset that you are creating a refresh schedule for.
schedule?
Type:
IResolvable | Refresh
(optional)
The refresh schedule of a dataset.

.NET
Go
Java
Python
TypeScript