Show / Hide Table of Contents

Interface CfnDashboardPropsMixin.INumericFormatConfigurationProperty

The options that determine the numeric format configuration.

Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDashboardPropsMixin.INumericFormatConfigurationProperty
Syntax (vb)
Public Interface CfnDashboardPropsMixin.INumericFormatConfigurationProperty
Remarks

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericformatconfiguration.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 numericFormatConfigurationProperty = 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

CurrencyDisplayFormatConfiguration

The options that determine the currency display format configuration.

NumberDisplayFormatConfiguration

The options that determine the number display format configuration.

PercentageDisplayFormatConfiguration

The options that determine the percentage display format configuration.

Properties

CurrencyDisplayFormatConfiguration

The options that determine the currency display format configuration.

object? CurrencyDisplayFormatConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericformatconfiguration.html#cfn-quicksight-dashboard-numericformatconfiguration-currencydisplayformatconfiguration

Type union: either IResolvable or CfnDashboardPropsMixin.ICurrencyDisplayFormatConfigurationProperty

NumberDisplayFormatConfiguration

The options that determine the number display format configuration.

object? NumberDisplayFormatConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericformatconfiguration.html#cfn-quicksight-dashboard-numericformatconfiguration-numberdisplayformatconfiguration

Type union: either IResolvable or CfnDashboardPropsMixin.INumberDisplayFormatConfigurationProperty

PercentageDisplayFormatConfiguration

The options that determine the percentage display format configuration.

object? PercentageDisplayFormatConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericformatconfiguration.html#cfn-quicksight-dashboard-numericformatconfiguration-percentagedisplayformatconfiguration

Type union: either IResolvable or CfnDashboardPropsMixin.IPercentageDisplayFormatConfigurationProperty

Back to top Generated by DocFX