Interface CfnForm.FormStyleProperty

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

@Stability(Stable) public static interface CfnForm.FormStyleProperty extends software.amazon.jsii.JsiiSerializable
The FormStyle property specifies the configuration for the form's style.

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.*;
 FormStyleProperty formStyleProperty = FormStyleProperty.builder()
         .horizontalGap(FormStyleConfigProperty.builder()
                 .tokenReference("tokenReference")
                 .value("value")
                 .build())
         .outerPadding(FormStyleConfigProperty.builder()
                 .tokenReference("tokenReference")
                 .value("value")
                 .build())
         .verticalGap(FormStyleConfigProperty.builder()
                 .tokenReference("tokenReference")
                 .value("value")
                 .build())
         .build();