Interface CfnDashboard.CascadingControlConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.CascadingControlConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.CascadingControlConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.
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.*;
CascadingControlConfigurationProperty cascadingControlConfigurationProperty = CascadingControlConfigurationProperty.builder()
.sourceControls(List.of(CascadingControlSourceProperty.builder()
.columnToMatch(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.sourceSheetControlId("sourceSheetControlId")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.CascadingControlConfigurationPropertystatic final classAn implementation forCfnDashboard.CascadingControlConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceControls
A list of source controls that determine the values that are used in the current control. -
builder
-