Interface CfnTemplate.CascadingControlConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.CascadingControlConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.CascadingControlConfigurationProperty
static final class
An implementation forCfnTemplate.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
-