Interface CfnTemplate.DestinationParameterValueConfigurationProperty

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

@Stability(Stable) public static interface CfnTemplate.DestinationParameterValueConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration of destination parameter values.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

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.*;
 DestinationParameterValueConfigurationProperty destinationParameterValueConfigurationProperty = DestinationParameterValueConfigurationProperty.builder()
         .customValuesConfiguration(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())
         .selectAllValueOptions("selectAllValueOptions")
         .sourceField("sourceField")
         .sourceParameterName("sourceParameterName")
         .build();