aws-cdk-lib.aws_amplifyuibuilder.CfnForm.FormDataTypeConfigProperty

interface FormDataTypeConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.AmplifyUIBuilder.CfnForm.FormDataTypeConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnForm_FormDataTypeConfigProperty
Javasoftware.amazon.awscdk.services.amplifyuibuilder.CfnForm.FormDataTypeConfigProperty
Pythonaws_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

NameTypeDescription
dataSourceTypestringThe data source type, either an Amplify DataStore model or a custom data type.
dataTypeNamestringThe 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.