Show / Hide Table of Contents

Class CfnDataSetPropsMixin.ValueColumnConfigurationProperty

Configuration for how to handle value columns in pivot operations, including aggregation settings.

Inheritance
object
CfnDataSetPropsMixin.ValueColumnConfigurationProperty
Implements
CfnDataSetPropsMixin.IValueColumnConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.ValueColumnConfigurationProperty : CfnDataSetPropsMixin.IValueColumnConfigurationProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.ValueColumnConfigurationProperty Implements CfnDataSetPropsMixin.IValueColumnConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-valuecolumnconfiguration.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var valueColumnConfigurationProperty = new ValueColumnConfigurationProperty {
                 AggregationFunction = new DataPrepAggregationFunctionProperty {
                     ListAggregation = new DataPrepListAggregationFunctionProperty {
                         Distinct = false,
                         InputColumnName = "inputColumnName",
                         Separator = "separator"
                     },
                     PercentileAggregation = new DataPrepPercentileAggregationFunctionProperty {
                         InputColumnName = "inputColumnName",
                         PercentileValue = 123
                     },
                     SimpleAggregation = new DataPrepSimpleAggregationFunctionProperty {
                         FunctionType = "functionType",
                         InputColumnName = "inputColumnName"
                     }
                 }
             };

Synopsis

Constructors

ValueColumnConfigurationProperty()

Configuration for how to handle value columns in pivot operations, including aggregation settings.

Properties

AggregationFunction

The aggregation function to apply when multiple values map to the same pivoted cell.

Constructors

ValueColumnConfigurationProperty()

Configuration for how to handle value columns in pivot operations, including aggregation settings.

public ValueColumnConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-valuecolumnconfiguration.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var valueColumnConfigurationProperty = new ValueColumnConfigurationProperty {
                 AggregationFunction = new DataPrepAggregationFunctionProperty {
                     ListAggregation = new DataPrepListAggregationFunctionProperty {
                         Distinct = false,
                         InputColumnName = "inputColumnName",
                         Separator = "separator"
                     },
                     PercentileAggregation = new DataPrepPercentileAggregationFunctionProperty {
                         InputColumnName = "inputColumnName",
                         PercentileValue = 123
                     },
                     SimpleAggregation = new DataPrepSimpleAggregationFunctionProperty {
                         FunctionType = "functionType",
                         InputColumnName = "inputColumnName"
                     }
                 }
             };

Properties

AggregationFunction

The aggregation function to apply when multiple values map to the same pivoted cell.

public object? AggregationFunction { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDataSetPropsMixin.IDataPrepAggregationFunctionProperty

Implements

CfnDataSetPropsMixin.IValueColumnConfigurationProperty
Back to top Generated by DocFX