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();
- See Also:
-
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.- See Also:
-
getCurrencySymbol
The currency symbol, such asUSD.- See Also:
-
getDateFormat
Determines theDateTimeformat.- See Also:
-
getDecimalSeparator
Determines the decimal separator.- See Also:
-
getFractionDigits
Determines the number of fraction digits.Default: - 0
- See Also:
-
getGroupingSeparator
Determines the grouping separator.- See Also:
-
getNegativeFormat
The negative format.Returns union: either
IResolvableorCfnTopic.NegativeFormatProperty- See Also:
-
getPrefix
The prefix value for a display format.- See Also:
-
getSuffix
The suffix value for a display format.- See Also:
-
getUnitScaler
The unit scaler.Valid values for this structure are:
NONE,AUTO,THOUSANDS,MILLIONS,BILLIONS, andTRILLIONS.- See Also:
-
getUseBlankCellFormat
A Boolean value that indicates whether to use blank cell format.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
getUseGrouping
A Boolean value that indicates whether to use grouping.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
builder
-