interface FilterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnDatasetPropsMixin.FilterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnDatasetPropsMixin_FilterValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnDatasetPropsMixin.FilterValueProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnDatasetPropsMixin.FilterValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnDatasetPropsMixin » FilterValueProperty |
Represents a single entry in the ValuesMap of a FilterExpression .
A FilterValue associates the name of a substitution variable in an expression to its value.
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 filterValueProperty: databrew_mixins.CfnDatasetPropsMixin.FilterValueProperty = {
value: 'value',
valueReference: 'valueReference',
};
Properties
| Name | Type | Description |
|---|---|---|
| value? | string | The value to be associated with the substitution variable. |
| value | string | The substitution variable reference. |
value?
Type:
string
(optional)
The value to be associated with the substitution variable.
valueReference?
Type:
string
(optional)
The substitution variable reference.

.NET
Go
Java
Python
TypeScript