Interface CfnForm.FormButtonProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnForm.FormButtonProperty.Jsii$Proxy
- Enclosing class:
CfnForm
@Stability(Stable)
public static interface CfnForm.FormButtonProperty
extends software.amazon.jsii.JsiiSerializable
The
FormButton
property specifies the configuration for a button UI element that is a part of a form.
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.*; FormButtonProperty formButtonProperty = FormButtonProperty.builder() .children("children") .excluded(false) .position(FieldPositionProperty.builder() .below("below") .fixed("fixed") .rightOf("rightOf") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnForm.FormButtonProperty
static final class
An implementation forCfnForm.FormButtonProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChildren
Describes the button's properties.- See Also:
-
getExcluded
Specifies whether the button is visible on the form.- See Also:
-
getPosition
The position of the button.- See Also:
-
builder
- Returns:
- a
CfnForm.FormButtonProperty.Builder
ofCfnForm.FormButtonProperty
-