interface FilterExpressionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DataBrew.CfnDataset.FilterExpressionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnDataset_FilterExpressionProperty |
![]() | software.amazon.awscdk.services.databrew.CfnDataset.FilterExpressionProperty |
![]() | aws_cdk.aws_databrew.CfnDataset.FilterExpressionProperty |
![]() | 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
Name | Type | Description |
---|---|---|
expression | string | The expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions. |
values | IResolvable | IResolvable | Filter [] | 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
|
Filter
[]
The map of substitution variable names to their values used in this filter expression.