Interface CfnForm.FieldPositionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnForm.FieldPositionProperty.Jsii$Proxy
Enclosing class:
CfnForm

@Stability(Stable) public static interface CfnForm.FieldPositionProperty extends software.amazon.jsii.JsiiSerializable
The FieldPosition property specifies the field position.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.amplifyuibuilder.*;
 FieldPositionProperty fieldPositionProperty = FieldPositionProperty.builder()
         .below("below")
         .fixed("fixed")
         .rightOf("rightOf")
         .build();