Class CfnForm.FormDataTypeConfigProperty
The FormDataTypeConfig
property specifies the data type configuration for the data source associated with a form.
Inheritance
System.Object
CfnForm.FormDataTypeConfigProperty
Implements
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FormDataTypeConfigProperty : Object, CfnForm.IFormDataTypeConfigProperty
Syntax (vb)
Public Class FormDataTypeConfigProperty
Inherits Object
Implements CfnForm.IFormDataTypeConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AmplifyUIBuilder;
var formDataTypeConfigProperty = new FormDataTypeConfigProperty {
DataSourceType = "dataSourceType",
DataTypeName = "dataTypeName"
};
Synopsis
Constructors
FormDataTypeConfigProperty() |
Properties
DataSourceType | The data source type, either an Amplify DataStore model or a custom data type. |
DataTypeName | The unique name of the data type you are using as the data source for the form. |
Constructors
FormDataTypeConfigProperty()
public FormDataTypeConfigProperty()
Properties
DataSourceType
The data source type, either an Amplify DataStore model or a custom data type.
public string DataSourceType { get; set; }
Property Value
System.String
Remarks
DataTypeName
The unique name of the data type you are using as the data source for the form.
public string DataTypeName { get; set; }
Property Value
System.String