Interface CfnDataSetPropsMixin.DecimalDatasetParameterProperty

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

@Stability(Stable) public static interface CfnDataSetPropsMixin.DecimalDatasetParameterProperty extends software.amazon.jsii.JsiiSerializable
A decimal parameter that is created in the dataset.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
 DecimalDatasetParameterProperty decimalDatasetParameterProperty = DecimalDatasetParameterProperty.builder()
         .defaultValues(DecimalDatasetParameterDefaultValuesProperty.builder()
                 .staticValues(List.of(123))
                 .build())
         .id("id")
         .name("name")
         .valueType("valueType")
         .build();
 

See Also: