interface FormDataTypeConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AmplifyUIBuilder.CfnForm.FormDataTypeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnForm_FormDataTypeConfigProperty |
Java | software.amazon.awscdk.services.amplifyuibuilder.CfnForm.FormDataTypeConfigProperty |
Python | aws_cdk.aws_amplifyuibuilder.CfnForm.FormDataTypeConfigProperty |
TypeScript | aws-cdk-lib » aws_amplifyuibuilder » CfnForm » FormDataTypeConfigProperty |
The FormDataTypeConfig
property specifies the data type configuration for the data source associated with 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 formDataTypeConfigProperty: amplifyuibuilder.CfnForm.FormDataTypeConfigProperty = {
dataSourceType: 'dataSourceType',
dataTypeName: 'dataTypeName',
};
Properties
Name | Type | Description |
---|---|---|
data | string | The data source type, either an Amplify DataStore model or a custom data type. |
data | string | The unique name of the data type you are using as the data source for the form. |
dataSourceType
Type:
string
The data source type, either an Amplify DataStore model or a custom data type.
dataTypeName
Type:
string
The unique name of the data type you are using as the data source for the form.