Show / Hide Table of Contents

Interface CfnForm.IValueMappingProperty

The ValueMapping property specifies the association between a complex object and a display value.

Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public interface IValueMappingProperty
Syntax (vb)
Public Interface IValueMappingProperty
Remarks

Use ValueMapping to store how to represent complex objects when they are displayed.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-valuemapping.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AmplifyUIBuilder;

var valueMappingProperty = new ValueMappingProperty {
    Value = new FormInputValuePropertyProperty {
        Value = "value"
    },

    // the properties below are optional
    DisplayValue = new FormInputValuePropertyProperty {
        Value = "value"
    }
};

Synopsis

Properties

DisplayValue

The value to display for the complex object.

Value

The complex object.

Properties

DisplayValue

The value to display for the complex object.

virtual object DisplayValue { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-valuemapping.html#cfn-amplifyuibuilder-form-valuemapping-displayvalue

Value

The complex object.

object Value { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-valuemapping.html#cfn-amplifyuibuilder-form-valuemapping-value

Back to top Generated by DocFX