Interface CfnTemplate.CustomValuesConfigurationProperty

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

@Stability(Stable) public static interface CfnTemplate.CustomValuesConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration of custom values for the destination parameter in DestinationParameterValueConfiguration .

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.*;
 CustomValuesConfigurationProperty customValuesConfigurationProperty = CustomValuesConfigurationProperty.builder()
         .customValues(CustomParameterValuesProperty.builder()
                 .dateTimeValues(List.of("dateTimeValues"))
                 .decimalValues(List.of(123))
                 .integerValues(List.of(123))
                 .stringValues(List.of("stringValues"))
                 .build())
         // the properties below are optional
         .includeNullValue(false)
         .build();
 

See Also: