interface FilterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnDatasetPropsMixin.FilterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnDatasetPropsMixin_FilterValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnDatasetPropsMixin.FilterValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnDatasetPropsMixin.FilterValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const filterValueProperty: databrew.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