Show / Hide Table of Contents

Class CfnForm.ValueMappingProperty

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

Inheritance
System.Object
CfnForm.ValueMappingProperty
Implements
CfnForm.IValueMappingProperty
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public class ValueMappingProperty : Object, CfnForm.IValueMappingProperty
Syntax (vb)
Public Class ValueMappingProperty
    Inherits Object
    Implements CfnForm.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

Constructors

ValueMappingProperty()

Properties

DisplayValue

The value to display for the complex object.

Value

The complex object.

Constructors

ValueMappingProperty()

public ValueMappingProperty()

Properties

DisplayValue

The value to display for the complex object.

public object DisplayValue { get; set; }
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.

public object Value { get; set; }
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

Implements

CfnForm.IValueMappingProperty
Back to top Generated by DocFX