interface FilterExpressionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnDatasetPropsMixin.FilterExpressionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnDatasetPropsMixin_FilterExpressionProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnDatasetPropsMixin.FilterExpressionProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnDatasetPropsMixin.FilterExpressionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnDatasetPropsMixin » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const filterExpressionProperty: databrew_mixins.CfnDatasetPropsMixin.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
(optional)
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)[]
(optional)
The map of substitution variable names to their values used in this filter expression.

.NET
Go
Java
Python
TypeScript