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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnForm.FormStyleProperty
static final class
An implementation forCfnForm.FormStyleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHorizontalGap
The spacing for the horizontal gap.- See Also:
-
getOuterPadding
The size of the outer padding for the form.- See Also:
-
getVerticalGap
The spacing for the vertical gap.- See Also:
-
builder
- Returns:
- a
CfnForm.FormStyleProperty.Builder
ofCfnForm.FormStyleProperty
-