Show / Hide Table of Contents

Class CfnComponent.FormBindingElementProperty

Describes how to bind a component property to form data.

Inheritance
object
CfnComponent.FormBindingElementProperty
Implements
CfnComponent.IFormBindingElementProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnComponent.FormBindingElementProperty : CfnComponent.IFormBindingElementProperty
Syntax (vb)
Public Class CfnComponent.FormBindingElementProperty Implements CfnComponent.IFormBindingElementProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-formbindingelement.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 formBindingElementProperty = new FormBindingElementProperty {
                 Element = "element",
                 Property = "property"
             };

Synopsis

Constructors

FormBindingElementProperty()

Describes how to bind a component property to form data.

Properties

Element

The name of the component to retrieve a value from.

Property

The property to retrieve a value from.

Constructors

FormBindingElementProperty()

Describes how to bind a component property to form data.

public FormBindingElementProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-formbindingelement.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 formBindingElementProperty = new FormBindingElementProperty {
                 Element = "element",
                 Property = "property"
             };

Properties

Element

The name of the component to retrieve a value from.

public string Element { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-formbindingelement.html#cfn-amplifyuibuilder-component-formbindingelement-element

Property

The property to retrieve a value from.

public string Property { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-formbindingelement.html#cfn-amplifyuibuilder-component-formbindingelement-property

Implements

CfnComponent.IFormBindingElementProperty
Back to top Generated by DocFX