Interface CfnTemplate.CurrencyDisplayFormatConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.CurrencyDisplayFormatConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.CurrencyDisplayFormatConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the currency 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.*; CurrencyDisplayFormatConfigurationProperty currencyDisplayFormatConfigurationProperty = CurrencyDisplayFormatConfigurationProperty.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") .symbol("symbol") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.CurrencyDisplayFormatConfigurationProperty
static final class
An implementation forCfnTemplate.CurrencyDisplayFormatConfigurationProperty
-
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 for the currency format.default String
Determines the prefix value of the currency format.default Object
The options that determine the numeric separator configuration.default String
Determines the suffix value of the currency format.default String
Determines the symbol for the currency format.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDecimalPlacesConfiguration
The option that determines the decimal places configuration. -
getNegativeValueConfiguration
The options that determine the negative value configuration. -
getNullValueFormatConfiguration
The options that determine the null value format configuration. -
getNumberScale
Determines the number scale value for the currency format. -
getPrefix
Determines the prefix value of the currency format. -
getSeparatorConfiguration
The options that determine the numeric separator configuration. -
getSuffix
Determines the suffix value of the currency format. -
getSymbol
Determines the symbol for the currency format. -
builder
-