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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnForm.FieldPositionProperty
static final class
An implementation forCfnForm.FieldPositionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
getBelow()
The field position is below the field specified by the string.default String
getFixed()
The field position is fixed and doesn't change in relation to other fields.default String
The field position is to the right of the field specified by the string.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBelow
The field position is below the field specified by the string.- See Also:
-
getFixed
The field position is fixed and doesn't change in relation to other fields.- See Also:
-
getRightOf
The field position is to the right of the field specified by the string.- See Also:
-
builder
-