Interface CfnFormPropsMixin.FormCTAProperty

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

@Stability(Stable) public static interface CfnFormPropsMixin.FormCTAProperty extends software.amazon.jsii.JsiiSerializable
The FormCTA property specifies the call to action button configuration for the 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.cfnpropertymixins.services.amplifyuibuilder.*;
 FormCTAProperty formCTAProperty = FormCTAProperty.builder()
         .cancel(FormButtonProperty.builder()
                 .children("children")
                 .excluded(false)
                 .position(FieldPositionProperty.builder()
                         .below("below")
                         .fixed("fixed")
                         .rightOf("rightOf")
                         .build())
                 .build())
         .clear(FormButtonProperty.builder()
                 .children("children")
                 .excluded(false)
                 .position(FieldPositionProperty.builder()
                         .below("below")
                         .fixed("fixed")
                         .rightOf("rightOf")
                         .build())
                 .build())
         .position("position")
         .submit(FormButtonProperty.builder()
                 .children("children")
                 .excluded(false)
                 .position(FieldPositionProperty.builder()
                         .below("below")
                         .fixed("fixed")
                         .rightOf("rightOf")
                         .build())
                 .build())
         .build();
 

See Also: