aws-cdk-lib.aws_quicksight.CfnTemplate.ReferenceLineDynamicDataConfigurationProperty

interface ReferenceLineDynamicDataConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.ReferenceLineDynamicDataConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_ReferenceLineDynamicDataConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.ReferenceLineDynamicDataConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.ReferenceLineDynamicDataConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » ReferenceLineDynamicDataConfigurationProperty

The dynamic configuration of the reference line data 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-lib';
const referenceLineDynamicDataConfigurationProperty: quicksight.CfnTemplate.ReferenceLineDynamicDataConfigurationProperty = {
  calculation: {
    percentileAggregation: {
      percentileValue: 123,
    },
    simpleNumericalAggregation: 'simpleNumericalAggregation',
  },
  column: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },

  // the properties below are optional
  measureAggregationFunction: {
    categoricalAggregationFunction: 'categoricalAggregationFunction',
    dateAggregationFunction: 'dateAggregationFunction',
    numericalAggregationFunction: {
      percentileAggregation: {
        percentileValue: 123,
      },
      simpleNumericalAggregation: 'simpleNumericalAggregation',
    },
  },
};

Properties

NameTypeDescription
calculationIResolvable | NumericalAggregationFunctionPropertyThe calculation that is used in the dynamic data.
columnIResolvable | ColumnIdentifierPropertyThe column that the dynamic data targets.
measureAggregationFunction?IResolvable | AggregationFunctionPropertyThe aggregation function that is used in the dynamic data.

calculation

Type: IResolvable | NumericalAggregationFunctionProperty

The calculation that is used in the dynamic data.


column

Type: IResolvable | ColumnIdentifierProperty

The column that the dynamic data targets.


measureAggregationFunction?

Type: IResolvable | AggregationFunctionProperty (optional)

The aggregation function that is used in the dynamic data.