aws-cdk-lib.aws_amplifyuibuilder.CfnForm.ValueMappingsProperty

interface ValueMappingsProperty

LanguageType name
.NETAmazon.CDK.AWS.AmplifyUIBuilder.CfnForm.ValueMappingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnForm_ValueMappingsProperty
Javasoftware.amazon.awscdk.services.amplifyuibuilder.CfnForm.ValueMappingsProperty
Pythonaws_cdk.aws_amplifyuibuilder.CfnForm.ValueMappingsProperty
TypeScript aws-cdk-lib » 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 { aws_amplifyuibuilder as amplifyuibuilder } from 'aws-cdk-lib';
const valueMappingsProperty: amplifyuibuilder.CfnForm.ValueMappingsProperty = {
  values: [{
    value: {
      value: 'value',
    },

    // the properties below are optional
    displayValue: {
      value: 'value',
    },
  }],
};

Properties

NameTypeDescription
valuesIResolvable | IResolvable | ValueMappingProperty[]The value and display value pairs.

values

Type: IResolvable | IResolvable | ValueMappingProperty[]

The value and display value pairs.