interface ValueMappingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AmplifyUIBuilder.CfnForm.ValueMappingsProperty |
Java | software.amazon.awscdk.services.amplifyuibuilder.CfnForm.ValueMappingsProperty |
Python | aws_cdk.aws_amplifyuibuilder.CfnForm.ValueMappingsProperty |
TypeScript | @aws-cdk/aws-amplifyuibuilder » CfnForm » ValueMappingsProperty |
The ValueMappings property specifies the data binding configuration for a value map.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as amplifyuibuilder from '@aws-cdk/aws-amplifyuibuilder';
const valueMappingsProperty: amplifyuibuilder.CfnForm.ValueMappingsProperty = {
values: [{
value: {
value: 'value',
},
// the properties below are optional
displayValue: {
value: 'value',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| values | IResolvable | IResolvable | Value[] | The value and display value pairs. |
values
Type:
IResolvable | IResolvable | Value[]
The value and display value pairs.

.NET
Java
Python
TypeScript