aws-cdk-lib.aws_amplifyuibuilder.CfnForm.FieldPositionProperty

interface FieldPositionProperty

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

The FieldPosition property specifies the field position.

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 fieldPositionProperty: amplifyuibuilder.CfnForm.FieldPositionProperty = {
  below: 'below',
  fixed: 'fixed',
  rightOf: 'rightOf',
};

Properties

NameTypeDescription
below?stringThe field position is below the field specified by the string.
fixed?stringThe field position is fixed and doesn't change in relation to other fields.
rightOf?stringThe field position is to the right of the field specified by the string.

below?

Type: string (optional)

The field position is below the field specified by the string.


fixed?

Type: string (optional)

The field position is fixed and doesn't change in relation to other fields.


rightOf?

Type: string (optional)

The field position is to the right of the field specified by the string.