interface FieldPositionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins.CfnFormPropsMixin.FieldPositionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamplifyuibuilder/mixins#CfnFormPropsMixin_FieldPositionProperty |
Java | software.amazon.awscdk.mixins.preview.services.amplifyuibuilder.mixins.CfnFormPropsMixin.FieldPositionProperty |
Python | aws_cdk.mixins_preview.aws_amplifyuibuilder.mixins.CfnFormPropsMixin.FieldPositionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amplifyuibuilder » mixins » CfnFormPropsMixin » 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 { mixins as amplifyuibuilder_mixins } from '@aws-cdk/mixins-preview/aws-amplifyuibuilder';
const fieldPositionProperty: amplifyuibuilder_mixins.CfnFormPropsMixin.FieldPositionProperty = {
below: 'below',
fixed: 'fixed',
rightOf: 'rightOf',
};
Properties
| Name | Type | Description |
|---|---|---|
| below? | string | The field position is below the field specified by the string. |
| fixed? | string | The field position is fixed and doesn't change in relation to other fields. |
| right | string | The 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.

.NET
Go
Java
Python
TypeScript