Show / Hide Table of Contents

Interface CfnTemplate.ICategoricalMeasureFieldProperty

The measure type field with categorical type columns.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.ICategoricalMeasureFieldProperty
Syntax (vb)
Public Interface CfnTemplate.ICategoricalMeasureFieldProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-categoricalmeasurefield.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 categoricalMeasureFieldProperty = new CategoricalMeasureFieldProperty {
                 Column = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 FieldId = "fieldId",

                 // the properties below are optional
                 AggregationFunction = "aggregationFunction",
                 FormatConfiguration = new StringFormatConfigurationProperty {
                     NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
                         NullString = "nullString"
                     },
                     NumericFormatConfiguration = new NumericFormatConfigurationProperty {
                         CurrencyDisplayFormatConfiguration = new CurrencyDisplayFormatConfigurationProperty {
                             DecimalPlacesConfiguration = new DecimalPlacesConfigurationProperty {
                                 DecimalPlaces = 123
                             },
                             NegativeValueConfiguration = new NegativeValueConfigurationProperty {
                                 DisplayMode = "displayMode"
                             },
                             NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
                                 NullString = "nullString"
                             },
                             NumberScale = "numberScale",
                             Prefix = "prefix",
                             SeparatorConfiguration = new NumericSeparatorConfigurationProperty {
                                 DecimalSeparator = "decimalSeparator",
                                 ThousandsSeparator = new ThousandSeparatorOptionsProperty {
                                     GroupingStyle = "groupingStyle",
                                     Symbol = "symbol",
                                     Visibility = "visibility"
                                 }
                             },
                             Suffix = "suffix",
                             Symbol = "symbol"
                         },
                         NumberDisplayFormatConfiguration = new NumberDisplayFormatConfigurationProperty {
                             DecimalPlacesConfiguration = new DecimalPlacesConfigurationProperty {
                                 DecimalPlaces = 123
                             },
                             NegativeValueConfiguration = new NegativeValueConfigurationProperty {
                                 DisplayMode = "displayMode"
                             },
                             NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
                                 NullString = "nullString"
                             },
                             NumberScale = "numberScale",
                             Prefix = "prefix",
                             SeparatorConfiguration = new NumericSeparatorConfigurationProperty {
                                 DecimalSeparator = "decimalSeparator",
                                 ThousandsSeparator = new ThousandSeparatorOptionsProperty {
                                     GroupingStyle = "groupingStyle",
                                     Symbol = "symbol",
                                     Visibility = "visibility"
                                 }
                             },
                             Suffix = "suffix"
                         },
                         PercentageDisplayFormatConfiguration = new PercentageDisplayFormatConfigurationProperty {
                             DecimalPlacesConfiguration = new DecimalPlacesConfigurationProperty {
                                 DecimalPlaces = 123
                             },
                             NegativeValueConfiguration = new NegativeValueConfigurationProperty {
                                 DisplayMode = "displayMode"
                             },
                             NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
                                 NullString = "nullString"
                             },
                             Prefix = "prefix",
                             SeparatorConfiguration = new NumericSeparatorConfigurationProperty {
                                 DecimalSeparator = "decimalSeparator",
                                 ThousandsSeparator = new ThousandSeparatorOptionsProperty {
                                     GroupingStyle = "groupingStyle",
                                     Symbol = "symbol",
                                     Visibility = "visibility"
                                 }
                             },
                             Suffix = "suffix"
                         }
                     }
                 }
             };

Synopsis

Properties

AggregationFunction

The aggregation function of the measure field.

Column

The column that is used in the CategoricalMeasureField .

FieldId

The custom field ID.

FormatConfiguration

The format configuration of the field.

Properties

AggregationFunction

The aggregation function of the measure field.

string? AggregationFunction { get; }
Property Value

string

Remarks

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

Column

The column that is used in the CategoricalMeasureField .

object Column { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-categoricalmeasurefield.html#cfn-quicksight-template-categoricalmeasurefield-column

FieldId

The custom field ID.

string FieldId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-categoricalmeasurefield.html#cfn-quicksight-template-categoricalmeasurefield-fieldid

FormatConfiguration

The format configuration of the field.

object? FormatConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-categoricalmeasurefield.html#cfn-quicksight-template-categoricalmeasurefield-formatconfiguration

Back to top Generated by DocFX