Class CfnComponent.FormBindingElementProperty
Describes how to bind a component property to form data.
Implements
Inherited Members
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
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
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
Remarks
Property
The property to retrieve a value from.
public string Property { get; set; }