Interface CfnFormPropsMixin.FormStyleProperty

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

@Stability(Stable) public static interface CfnFormPropsMixin.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.cfnpropertymixins.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();
 

See Also: