Interface CfnDataSet.DecimalDatasetParameterDefaultValuesProperty

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

@Stability(Stable) public static interface CfnDataSet.DecimalDatasetParameterDefaultValuesProperty extends software.amazon.jsii.JsiiSerializable
A list of default values for a given decimal parameter.

This structure only accepts static values.

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.*;
 DecimalDatasetParameterDefaultValuesProperty decimalDatasetParameterDefaultValuesProperty = DecimalDatasetParameterDefaultValuesProperty.builder()
         .staticValues(List.of(123))
         .build();
 

See Also: