Show / Hide Table of Contents

Class CfnDataSet.RefreshConfigurationProperty

The refresh configuration of a dataset.

Inheritance
object
CfnDataSet.RefreshConfigurationProperty
Implements
CfnDataSet.IRefreshConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshconfiguration.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshconfiguration.html#cfn-quicksight-dataset-refreshconfiguration-incrementalrefresh

Implements

CfnDataSet.IRefreshConfigurationProperty
Back to top Generated by DocFX