Interface CfnDataSet.NewDefaultValuesProperty

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

@Stability(Stable) public static interface CfnDataSet.NewDefaultValuesProperty extends software.amazon.jsii.JsiiSerializable
The new default values for the parameter.

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.*;
 NewDefaultValuesProperty newDefaultValuesProperty = NewDefaultValuesProperty.builder()
         .dateTimeStaticValues(List.of("dateTimeStaticValues"))
         .decimalStaticValues(List.of(123))
         .integerStaticValues(List.of(123))
         .stringStaticValues(List.of("stringStaticValues"))
         .build();
 

See Also: