Interface CfnTemplate.FilterOperationSelectedFieldsConfigurationProperty

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

@Stability(Stable) public static interface CfnTemplate.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: