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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnForm.FormButtonPropertystatic final classAn implementation forCfnForm.FormButtonProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChildren
Describes the button's properties. -
getExcluded
Specifies whether the button is visible on the form. -
getPosition
The position of the button. -
builder
- Returns:
- a
CfnForm.FormButtonProperty.BuilderofCfnForm.FormButtonProperty
-