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();