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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.CategoryDrillDownFilterPropertystatic final classAn 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.Returns union: either
IResolvableorCfnDashboard.ColumnIdentifierProperty- See Also:
-
builder
-