Interface CfnForm.SectionalElementProperty

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

@Stability(Stable) public static interface CfnForm.SectionalElementProperty extends software.amazon.jsii.JsiiSerializable
The SectionalElement property specifies the configuration information for a visual helper element for a form.

A sectional element can be a header, a text block, or a divider. These elements are static and not associated with any data.

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.*;
 SectionalElementProperty sectionalElementProperty = SectionalElementProperty.builder()
         .type("type")
         // the properties below are optional
         .excluded(false)
         .level(123)
         .orientation("orientation")
         .position(FieldPositionProperty.builder()
                 .below("below")
                 .fixed("fixed")
                 .rightOf("rightOf")
                 .build())
         .text("text")
         .build();
 

See Also: