interface RefreshConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.RefreshConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_RefreshConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.RefreshConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.RefreshConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » RefreshConfigurationProperty |
The refresh configuration of a dataset.
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/cfn-property-mixins';
const refreshConfigurationProperty: quicksight.CfnDataSetPropsMixin.RefreshConfigurationProperty = {
incrementalRefresh: {
lookbackWindow: {
columnName: 'columnName',
size: 123,
sizeUnit: 'sizeUnit',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| incremental | IResolvable | Incremental | The incremental refresh for the dataset. |
incrementalRefresh?
Type:
IResolvable | Incremental
(optional)
The incremental refresh for the dataset.

.NET
Go
Java
Python
TypeScript