Interface CfnTemplate.FilterCrossSheetControlProperty

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

@Stability(Stable) public static interface CfnTemplate.FilterCrossSheetControlProperty extends software.amazon.jsii.JsiiSerializable
A control from a filter that is scoped across more than one sheet.

This represents your filter control on a sheet

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.*;
 FilterCrossSheetControlProperty filterCrossSheetControlProperty = FilterCrossSheetControlProperty.builder()
         .filterControlId("filterControlId")
         .sourceFilterId("sourceFilterId")
         // the properties below are optional
         .cascadingControlConfiguration(CascadingControlConfigurationProperty.builder()
                 .sourceControls(List.of(CascadingControlSourceProperty.builder()
                         .columnToMatch(ColumnIdentifierProperty.builder()
                                 .columnName("columnName")
                                 .dataSetIdentifier("dataSetIdentifier")
                                 .build())
                         .sourceSheetControlId("sourceSheetControlId")
                         .build()))
                 .build())
         .build();
 

See Also: