aws-cdk-lib.aws_databrew.CfnDataset.FilterExpressionProperty

interface FilterExpressionProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnDataset.FilterExpressionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnDataset_FilterExpressionProperty
Javasoftware.amazon.awscdk.services.databrew.CfnDataset.FilterExpressionProperty
Pythonaws_cdk.aws_databrew.CfnDataset.FilterExpressionProperty
TypeScript aws-cdk-lib » aws_databrew » CfnDataset » FilterExpressionProperty

Represents a structure for defining parameter conditions.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_databrew as databrew } from 'aws-cdk-lib';
const filterExpressionProperty: databrew.CfnDataset.FilterExpressionProperty = {
  expression: 'expression',
  valuesMap: [{
    value: 'value',
    valueReference: 'valueReference',
  }],
};

Properties

NameTypeDescription
expressionstringThe expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions.
valuesMapIResolvable | IResolvable | FilterValueProperty[]The map of substitution variable names to their values used in this filter expression.

expression

Type: string

The expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions.

For example, "(starts_with :prefix1 or starts_with :prefix2) and (ends_with :suffix1 or ends_with :suffix2)". Substitution variables should start with ':' symbol.


valuesMap

Type: IResolvable | IResolvable | FilterValueProperty[]

The map of substitution variable names to their values used in this filter expression.