Interface CfnTopic.DefaultFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.DefaultFormattingProperty.Jsii$Proxy
- Enclosing class:
CfnTopic
@Stability(Stable)
public static interface CfnTopic.DefaultFormattingProperty
extends software.amazon.jsii.JsiiSerializable
A structure that represents a default formatting definition.
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.*;
DefaultFormattingProperty defaultFormattingProperty = DefaultFormattingProperty.builder()
.displayFormat("displayFormat")
.displayFormatOptions(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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.DefaultFormattingPropertystatic final classAn implementation forCfnTopic.DefaultFormattingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDisplayFormat
The display format.Valid values for this structure are
AUTO,PERCENT,CURRENCY,NUMBER,DATE, andSTRING.- See Also:
-
getDisplayFormatOptions
The additional options for display formatting.Returns union: either
IResolvableorCfnTopic.DisplayFormatOptionsProperty- See Also:
-
builder
-