Interface CfnFormPropsMixin.FormButtonProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFormPropsMixin.FormButtonProperty.Jsii$Proxy
- Enclosing class:
CfnFormPropsMixin
@Stability(Stable)
public static interface CfnFormPropsMixin.FormButtonProperty
extends software.amazon.jsii.JsiiSerializable
The
FormButton property specifies the configuration for a button UI element that is a part of a form.
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.*;
FormButtonProperty formButtonProperty = FormButtonProperty.builder()
.children("children")
.excluded(false)
.position(FieldPositionProperty.builder()
.below("below")
.fixed("fixed")
.rightOf("rightOf")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFormPropsMixin.FormButtonPropertystatic final classAn implementation forCfnFormPropsMixin.FormButtonProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChildren
Describes the button's properties.- See Also:
-
getExcluded
Specifies whether the button is visible on the form.Returns union: either
BooleanorIResolvable- See Also:
-
getPosition
The position of the button.Returns union: either
IResolvableorCfnFormPropsMixin.FieldPositionProperty- See Also:
-
builder
-