Interface CfnDashboard.CategoryDrillDownFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.CategoryDrillDownFilterProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.CategoryDrillDownFilterProperty
extends software.amazon.jsii.JsiiSerializable
The category drill down filter.
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.*; CategoryDrillDownFilterProperty categoryDrillDownFilterProperty = CategoryDrillDownFilterProperty.builder() .categoryValues(List.of("categoryValues")) .column(ColumnIdentifierProperty.builder() .columnName("columnName") .dataSetIdentifier("dataSetIdentifier") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.CategoryDrillDownFilterProperty
static final class
An implementation forCfnDashboard.CategoryDrillDownFilterProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of the string inputs that are the values of the category drill down filter.The column that the filter is applied to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategoryValues
A list of the string inputs that are the values of the category drill down filter.- See Also:
-
getColumn
The column that the filter is applied to.- See Also:
-
builder
-