aws-cdk-lib.aws_quicksight.CfnTemplate.CustomActionFilterOperationProperty

interface CustomActionFilterOperationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.CustomActionFilterOperationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_CustomActionFilterOperationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.CustomActionFilterOperationProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.CustomActionFilterOperationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » CustomActionFilterOperationProperty

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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const customActionFilterOperationProperty: quicksight.CfnTemplate.CustomActionFilterOperationProperty = {
  selectedFieldsConfiguration: {
    selectedColumns: [{
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    }],
    selectedFieldOptions: 'selectedFieldOptions',
    selectedFields: ['selectedFields'],
  },
  targetVisualsConfiguration: {
    sameSheetTargetVisualConfiguration: {
      targetVisualOptions: 'targetVisualOptions',
      targetVisuals: ['targetVisuals'],
    },
  },
};

Properties

NameTypeDescription
selectedFieldsConfigurationIResolvable | FilterOperationSelectedFieldsConfigurationPropertyThe configuration that chooses the fields to be filtered.
targetVisualsConfigurationIResolvable | FilterOperationTargetVisualsConfigurationPropertyThe configuration that chooses the target visuals to be filtered.

selectedFieldsConfiguration

Type: IResolvable | FilterOperationSelectedFieldsConfigurationProperty

The configuration that chooses the fields to be filtered.


targetVisualsConfiguration

Type: IResolvable | FilterOperationTargetVisualsConfigurationProperty

The configuration that chooses the target visuals to be filtered.