Interface CfnTemplate.CustomActionFilterOperationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.CustomActionFilterOperationProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.CustomActionFilterOperationProperty
extends software.amazon.jsii.JsiiSerializable
The filter operation that filters data included in a visual or in an entire 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.*;
CustomActionFilterOperationProperty customActionFilterOperationProperty = CustomActionFilterOperationProperty.builder()
.selectedFieldsConfiguration(FilterOperationSelectedFieldsConfigurationProperty.builder()
.selectedFieldOptions("selectedFieldOptions")
.selectedFields(List.of("selectedFields"))
.build())
.targetVisualsConfiguration(FilterOperationTargetVisualsConfigurationProperty.builder()
.sameSheetTargetVisualConfiguration(SameSheetTargetVisualConfigurationProperty.builder()
.targetVisualOptions("targetVisualOptions")
.targetVisuals(List.of("targetVisuals"))
.build())
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.CustomActionFilterOperationPropertystatic final classAn implementation forCfnTemplate.CustomActionFilterOperationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The configuration that chooses the fields to be filtered.The configuration that chooses the target visuals to be filtered.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSelectedFieldsConfiguration
The configuration that chooses the fields to be filtered. -
getTargetVisualsConfiguration
The configuration that chooses the target visuals to be filtered. -
builder
-