Class CfnDataSet.RefreshConfigurationProperty
The refresh configuration of a dataset.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.RefreshConfigurationProperty : CfnDataSet.IRefreshConfigurationProperty
Syntax (vb)
Public Class CfnDataSet.RefreshConfigurationProperty Implements CfnDataSet.IRefreshConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var refreshConfigurationProperty = new RefreshConfigurationProperty {
IncrementalRefresh = new IncrementalRefreshProperty {
LookbackWindow = new LookbackWindowProperty {
ColumnName = "columnName",
Size = 123,
SizeUnit = "sizeUnit"
}
}
};
Synopsis
Constructors
RefreshConfigurationProperty() | The refresh configuration of a dataset. |
Properties
IncrementalRefresh | The incremental refresh for the dataset. |
Constructors
RefreshConfigurationProperty()
The refresh configuration of a dataset.
public RefreshConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var refreshConfigurationProperty = new RefreshConfigurationProperty {
IncrementalRefresh = new IncrementalRefreshProperty {
LookbackWindow = new LookbackWindowProperty {
ColumnName = "columnName",
Size = 123,
SizeUnit = "sizeUnit"
}
}
};
Properties
IncrementalRefresh
The incremental refresh for the dataset.
public object IncrementalRefresh { get; set; }