interface FilterOperationSelectedFieldsConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FilterOperationSelectedFieldsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_FilterOperationSelectedFieldsConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FilterOperationSelectedFieldsConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.FilterOperationSelectedFieldsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » FilterOperationSelectedFieldsConfigurationProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const filterOperationSelectedFieldsConfigurationProperty: quicksight.CfnAnalysis.FilterOperationSelectedFieldsConfigurationProperty = {
selectedColumns: [{
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
}],
selectedFieldOptions: 'selectedFieldOptions',
selectedFields: ['selectedFields'],
};
Properties
Name | Type | Description |
---|---|---|
selected | IResolvable | IResolvable | Column [] | The selected columns of a dataset. |
selected | string | A structure that contains the options that choose which fields are filtered in the CustomActionFilterOperation . |
selected | string[] | Chooses the fields that are filtered in CustomActionFilterOperation . |
selectedColumns?
Type:
IResolvable
|
IResolvable
|
Column
[]
(optional)
The selected columns of a dataset.
selectedFieldOptions?
Type:
string
(optional)
A structure that contains the options that choose which fields are filtered in the CustomActionFilterOperation
.
Valid values are defined as follows:
ALL_FIELDS
: Applies the filter operation to all fields.
selectedFields?
Type:
string[]
(optional)
Chooses the fields that are filtered in CustomActionFilterOperation
.