interface SubstitutionValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnRulesetPropsMixin.SubstitutionValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnRulesetPropsMixin_SubstitutionValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnRulesetPropsMixin.SubstitutionValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnRulesetPropsMixin.SubstitutionValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » CfnRulesetPropsMixin » SubstitutionValueProperty |
A key-value pair to associate an expression's substitution variable names with their values.
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 substitutionValueProperty: databrew.CfnRulesetPropsMixin.SubstitutionValueProperty = {
value: 'value',
valueReference: 'valueReference',
};
Properties
| Name | Type | Description |
|---|---|---|
| value? | string | Value or column name. |
| value | string | Variable name. |
value?
Type:
string
(optional)
Value or column name.
valueReference?
Type:
string
(optional)
Variable name.

.NET
Go
Java
Python
TypeScript