Interface CfnTemplate.CascadingControlSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.CascadingControlSourceProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.CascadingControlSourceProperty
extends software.amazon.jsii.JsiiSerializable
The source controls that are used in a
CascadingControlConfiguration .
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.*;
CascadingControlSourceProperty cascadingControlSourceProperty = CascadingControlSourceProperty.builder()
.columnToMatch(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.sourceSheetControlId("sourceSheetControlId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.CascadingControlSourcePropertystatic final classAn implementation forCfnTemplate.CascadingControlSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnToMatch
The column identifier that determines which column to look up for the source sheet control.Returns union: either
IResolvableorCfnTemplate.ColumnIdentifierProperty- See Also:
-
getSourceSheetControlId
The source sheet control ID of aCascadingControlSource.- See Also:
-
builder
-