Show / Hide Table of Contents

Interface CfnDashboard.IStringFormatConfigurationProperty

Formatting configuration for string fields.

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

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

NullValueFormatConfiguration

The options that determine the null value format configuration.

NumericFormatConfiguration

The formatting configuration for numeric strings.

Properties

NullValueFormatConfiguration

The options that determine the null value format configuration.

object? NullValueFormatConfiguration { get; }
Property Value

object

Remarks

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

NumericFormatConfiguration

The formatting configuration for numeric strings.

object? NumericFormatConfiguration { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX