Interface CfnAnalysis.CustomParameterValuesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.CustomParameterValuesProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.CustomParameterValuesProperty
static final class
An implementation forCfnAnalysis.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.- See Also:
-
getIntegerValues
A list of integer-type parameter values.- See Also:
-
getStringValues
A list of string-type parameter values.- See Also:
-
builder
-