aws-cdk-lib.aws_databrew.CfnDataset.FilterValueProperty

interface FilterValueProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnDataset.FilterValueProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnDataset_FilterValueProperty
Javasoftware.amazon.awscdk.services.databrew.CfnDataset.FilterValueProperty
Pythonaws_cdk.aws_databrew.CfnDataset.FilterValueProperty
TypeScript aws-cdk-lib » aws_databrew » CfnDataset » 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-lib';
const filterValueProperty: databrew.CfnDataset.FilterValueProperty = {
  value: 'value',
  valueReference: 'valueReference',
};

Properties

NameTypeDescription
valuestringThe value to be associated with the substitution variable.
valueReferencestringThe substitution variable reference.

value

Type: string

The value to be associated with the substitution variable.


valueReference

Type: string

The substitution variable reference.