Interface CfnTopic.DisplayFormatOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.DisplayFormatOptionsProperty.Jsii$Proxy
- Enclosing class:
- CfnTopic
@Stability(Stable)
public static interface CfnTopic.DisplayFormatOptionsProperty
extends software.amazon.jsii.JsiiSerializable
A structure that represents additional options for display formatting.
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.*; DisplayFormatOptionsProperty displayFormatOptionsProperty = DisplayFormatOptionsProperty.builder() .blankCellFormat("blankCellFormat") .currencySymbol("currencySymbol") .dateFormat("dateFormat") .decimalSeparator("decimalSeparator") .fractionDigits(123) .groupingSeparator("groupingSeparator") .negativeFormat(NegativeFormatProperty.builder() .prefix("prefix") .suffix("suffix") .build()) .prefix("prefix") .suffix("suffix") .unitScaler("unitScaler") .useBlankCellFormat(false) .useGrouping(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopic.DisplayFormatOptionsProperty
static final class
An implementation forCfnTopic.DisplayFormatOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Determines the blank cell format.default String
The currency symbol, such asUSD
.default String
Determines theDateTime
format.default String
Determines the decimal separator.default Number
Determines the number of fraction digits.default String
Determines the grouping separator.default Object
The negative format.default String
The prefix value for a display format.default String
The suffix value for a display format.default String
The unit scaler.default Object
A Boolean value that indicates whether to use blank cell format.default Object
A Boolean value that indicates whether to use grouping.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlankCellFormat
Determines the blank cell format. -
getCurrencySymbol
The currency symbol, such asUSD
. -
getDateFormat
Determines theDateTime
format. -
getDecimalSeparator
Determines the decimal separator. -
getFractionDigits
Determines the number of fraction digits. -
getGroupingSeparator
Determines the grouping separator. -
getNegativeFormat
The negative format. -
getPrefix
The prefix value for a display format. -
getSuffix
The suffix value for a display format. -
getUnitScaler
The unit scaler.Valid values for this structure are:
NONE
,AUTO
,THOUSANDS
,MILLIONS
,BILLIONS
, andTRILLIONS
. -
getUseBlankCellFormat
A Boolean value that indicates whether to use blank cell format. -
getUseGrouping
A Boolean value that indicates whether to use grouping. -
builder
-