interface FormStyleConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder.CfnFormPropsMixin.FormStyleConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsamplifyuibuilder#CfnFormPropsMixin_FormStyleConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.amplifyuibuilder.CfnFormPropsMixin.FormStyleConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_amplifyuibuilder.CfnFormPropsMixin.FormStyleConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_amplifyuibuilder » 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 { aws_amplifyuibuilder as amplifyuibuilder } from '@aws-cdk/cfn-property-mixins';
const formStyleConfigProperty: amplifyuibuilder.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