aws-cdk-lib.aws_amplifyuibuilder.CfnForm.FormButtonProperty

interface FormButtonProperty

LanguageType name
.NETAmazon.CDK.AWS.AmplifyUIBuilder.CfnForm.FormButtonProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnForm_FormButtonProperty
Javasoftware.amazon.awscdk.services.amplifyuibuilder.CfnForm.FormButtonProperty
Pythonaws_cdk.aws_amplifyuibuilder.CfnForm.FormButtonProperty
TypeScript aws-cdk-lib » aws_amplifyuibuilder » CfnForm » FormButtonProperty

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 { aws_amplifyuibuilder as amplifyuibuilder } from 'aws-cdk-lib';
const formButtonProperty: amplifyuibuilder.CfnForm.FormButtonProperty = {
  children: 'children',
  excluded: false,
  position: {
    below: 'below',
    fixed: 'fixed',
    rightOf: 'rightOf',
  },
};

Properties

NameTypeDescription
children?stringDescribes the button's properties.
excluded?boolean | IResolvableSpecifies whether the button is visible on the form.
position?IResolvable | FieldPositionPropertyThe position of the button.

children?

Type: string (optional)

Describes the button's properties.


excluded?

Type: boolean | IResolvable (optional)

Specifies whether the button is visible on the form.


position?

Type: IResolvable | FieldPositionProperty (optional)

The position of the button.