Interface CfnAnalysis.ParameterSelectableValuesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ParameterSelectableValuesProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.ParameterSelectableValuesProperty
extends software.amazon.jsii.JsiiSerializable
A list of selectable values that are used in a control.
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.*; ParameterSelectableValuesProperty parameterSelectableValuesProperty = ParameterSelectableValuesProperty.builder() .linkToDataSetColumn(ColumnIdentifierProperty.builder() .columnName("columnName") .dataSetIdentifier("dataSetIdentifier") .build()) .values(List.of("values")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.ParameterSelectableValuesProperty
static final class
An implementation forCfnAnalysis.ParameterSelectableValuesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLinkToDataSetColumn
The column identifier that fetches values from the data set.- See Also:
-
getValues
The values that are used inParameterSelectableValues
.- See Also:
-
builder
-