interface LookbackWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.LookbackWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_LookbackWindowProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.LookbackWindowProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.LookbackWindowProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » LookbackWindowProperty |
The lookback window setup of an incremental refresh configuration.
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 lookbackWindowProperty: quicksight.CfnDataSetPropsMixin.LookbackWindowProperty = {
columnName: 'columnName',
size: 123,
sizeUnit: 'sizeUnit',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | The name of the lookback window column. |
| size? | number | The lookback window column size. |
| size | string | The size unit that is used for the lookback window column. |
columnName?
Type:
string
(optional)
The name of the lookback window column.
size?
Type:
number
(optional, default: 0)
The lookback window column size.
sizeUnit?
Type:
string
(optional)
The size unit that is used for the lookback window column.
Valid values for this structure are HOUR , DAY , and WEEK .

.NET
Go
Java
Python
TypeScript