Interface CfnDashboard.CustomParameterValuesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.CustomParameterValuesProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.CustomParameterValuesProperty
extends software.amazon.jsii.JsiiSerializable
The customized 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.*;
CustomParameterValuesProperty customParameterValuesProperty = CustomParameterValuesProperty.builder()
.dateTimeValues(List.of("dateTimeValues"))
.decimalValues(List.of(123))
.integerValues(List.of(123))
.stringValues(List.of("stringValues"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.CustomParameterValuesPropertystatic final classAn implementation forCfnDashboard.CustomParameterValuesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDateTimeValues
A list of datetime-type parameter values.- See Also:
-
getDecimalValues
A list of decimal-type parameter values.Returns union: either Listinvalid input: '<'
Number> orIResolvable- See Also:
-
getIntegerValues
A list of integer-type parameter values.Returns union: either Listinvalid input: '<'
Number> orIResolvable- See Also:
-
getStringValues
A list of string-type parameter values.- See Also:
-
builder
-