Interface CfnAnalysis.NumberDisplayFormatConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.NumberDisplayFormatConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.NumberDisplayFormatConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the number display format configuration.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; NumberDisplayFormatConfigurationProperty numberDisplayFormatConfigurationProperty = NumberDisplayFormatConfigurationProperty.builder() .decimalPlacesConfiguration(DecimalPlacesConfigurationProperty.builder() .decimalPlaces(123) .build()) .negativeValueConfiguration(NegativeValueConfigurationProperty.builder() .displayMode("displayMode") .build()) .nullValueFormatConfiguration(NullValueFormatConfigurationProperty.builder() .nullString("nullString") .build()) .numberScale("numberScale") .prefix("prefix") .separatorConfiguration(NumericSeparatorConfigurationProperty.builder() .decimalSeparator("decimalSeparator") .thousandsSeparator(ThousandSeparatorOptionsProperty.builder() .symbol("symbol") .visibility("visibility") .build()) .build()) .suffix("suffix") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.NumberDisplayFormatConfigurationProperty
static final class
An implementation forCfnAnalysis.NumberDisplayFormatConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The option that determines the decimal places configuration.default Object
The options that determine the negative value configuration.default Object
The options that determine the null value format configuration.default String
Determines the number scale value of the number format.default String
Determines the prefix value of the number format.default Object
The options that determine the numeric separator configuration.default String
Determines the suffix value of the number format.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDecimalPlacesConfiguration
The option that determines the decimal places configuration.- See Also:
-
getNegativeValueConfiguration
The options that determine the negative value configuration.- See Also:
-
getNullValueFormatConfiguration
The options that determine the null value format configuration.- See Also:
-
getNumberScale
Determines the number scale value of the number format.- See Also:
-
getPrefix
Determines the prefix value of the number format.- See Also:
-
getSeparatorConfiguration
The options that determine the numeric separator configuration.- See Also:
-
getSuffix
Determines the suffix value of the number format.- See Also:
-
builder
-