Interface CfnAnalysis.CascadingControlConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysis.CascadingControlConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAnalysis

@Stability(Stable) public static interface CfnAnalysis.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();
 

See Also: