Interface CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration of selected fields in the
CustomActionFilterOperation .
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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.*;
FilterOperationSelectedFieldsConfigurationProperty filterOperationSelectedFieldsConfigurationProperty = FilterOperationSelectedFieldsConfigurationProperty.builder()
.selectedColumns(List.of(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build()))
.selectedFieldOptions("selectedFieldOptions")
.selectedFields(List.of("selectedFields"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboard.FilterOperationSelectedFieldsConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSelectedColumns
The selected columns of a dataset.- See Also:
-
getSelectedFieldOptions
A structure that contains the options that choose which fields are filtered in theCustomActionFilterOperation.Valid values are defined as follows:
ALL_FIELDS: Applies the filter operation to all fields.
- See Also:
-
getSelectedFields
Chooses the fields that are filtered inCustomActionFilterOperation.- See Also:
-
builder
@Stability(Stable) static CfnDashboard.FilterOperationSelectedFieldsConfigurationProperty.Builder builder()
-