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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnForm.FormStylePropertystatic final classAn implementation forCfnForm.FormStyleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHorizontalGap
The spacing for the horizontal gap. -
getOuterPadding
The size of the outer padding for the form. -
getVerticalGap
The spacing for the vertical gap. -
builder
- Returns:
- a
CfnForm.FormStyleProperty.BuilderofCfnForm.FormStyleProperty
-