Show / Hide Table of Contents

Interface CfnAnalysisPropsMixin.INumberFormatConfigurationProperty

Formatting configuration for number fields.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.INumberFormatConfigurationProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.INumberFormatConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numberformatconfiguration.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.CfnPropertyMixins.AWS.QuickSight;

             var numberFormatConfigurationProperty = new NumberFormatConfigurationProperty {
                 FormatConfiguration = 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

FormatConfiguration

The options that determine the numeric format configuration.

Properties

FormatConfiguration

The options that determine the numeric format configuration.

object? FormatConfiguration { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnAnalysisPropsMixin.INumericFormatConfigurationProperty

Back to top Generated by DocFX