interface FormStyleConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins.CfnFormPropsMixin.FormStyleConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamplifyuibuilder/mixins#CfnFormPropsMixin_FormStyleConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.amplifyuibuilder.mixins.CfnFormPropsMixin.FormStyleConfigProperty |
Python | aws_cdk.mixins_preview.aws_amplifyuibuilder.mixins.CfnFormPropsMixin.FormStyleConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amplifyuibuilder » mixins » CfnFormPropsMixin » FormStyleConfigProperty |
The FormStyleConfig property specifies the configuration settings for the form's style properties.
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 formStyleConfigProperty: amplifyuibuilder_mixins.CfnFormPropsMixin.FormStyleConfigProperty = {
tokenReference: 'tokenReference',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| token | string | A reference to a design token to use to bind the form's style properties to an existing theme. |
| value? | string | The value of the style setting. |
tokenReference?
Type:
string
(optional)
A reference to a design token to use to bind the form's style properties to an existing theme.
value?
Type:
string
(optional)
The value of the style setting.

.NET
Go
Java
Python
TypeScript