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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.DisplayFormatOptionsPropertystatic final classAn implementation forCfnTopic.DisplayFormatOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringDetermines the blank cell format.default StringThe currency symbol, such asUSD.default StringDetermines theDateTimeformat.default StringDetermines the decimal separator.default NumberDetermines the number of fraction digits.default StringDetermines the grouping separator.default ObjectThe negative format.default StringThe prefix value for a display format.default StringThe suffix value for a display format.default StringThe unit scaler.default ObjectA Boolean value that indicates whether to use blank cell format.default ObjectA 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 theDateTimeformat. -
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
-