Interface CfnDashboardPropsMixin.CustomValuesConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardPropsMixin.CustomValuesConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboardPropsMixin
@Stability(Stable)
public static interface CfnDashboardPropsMixin.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.cfnpropertymixins.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())
.includeNullValue(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboardPropsMixin.CustomValuesConfigurationPropertystatic final classAn implementation forCfnDashboardPropsMixin.CustomValuesConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnDashboardPropsMixin.CustomParameterValuesPropertydefault ObjectIncludes the null value in custom action parameter values.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomValues
Returns union: eitherIResolvableorCfnDashboardPropsMixin.CustomParameterValuesProperty- See Also:
-
getIncludeNullValue
Includes the null value in custom action parameter values.Returns union: either
BooleanorIResolvable- See Also:
-
builder
@Stability(Stable) static CfnDashboardPropsMixin.CustomValuesConfigurationProperty.Builder builder()
-