Interface CfnDashboard.DecimalDefaultValuesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDashboard.DecimalDefaultValuesProperty.Jsii$Proxy
Enclosing class:
CfnDashboard

@Stability(Stable) public static interface CfnDashboard.DecimalDefaultValuesProperty extends software.amazon.jsii.JsiiSerializable
The default values of the DecimalParameterDeclaration .

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.*;
 DecimalDefaultValuesProperty decimalDefaultValuesProperty = DecimalDefaultValuesProperty.builder()
         .dynamicValue(DynamicDefaultValueProperty.builder()
                 .defaultValueColumn(ColumnIdentifierProperty.builder()
                         .columnName("columnName")
                         .dataSetIdentifier("dataSetIdentifier")
                         .build())
                 // the properties below are optional
                 .groupNameColumn(ColumnIdentifierProperty.builder()
                         .columnName("columnName")
                         .dataSetIdentifier("dataSetIdentifier")
                         .build())
                 .userNameColumn(ColumnIdentifierProperty.builder()
                         .columnName("columnName")
                         .dataSetIdentifier("dataSetIdentifier")
                         .build())
                 .build())
         .staticValues(List.of(123))
         .build();
 

See Also: