Interface CfnForm.FormDataTypeConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnForm.FormDataTypeConfigProperty.Jsii$Proxy
- Enclosing class:
CfnForm
@Stability(Stable)
public static interface CfnForm.FormDataTypeConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.amplifyuibuilder.*;
FormDataTypeConfigProperty formDataTypeConfigProperty = FormDataTypeConfigProperty.builder()
.dataSourceType("dataSourceType")
.dataTypeName("dataTypeName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnForm.FormDataTypeConfigPropertystatic final classAn implementation forCfnForm.FormDataTypeConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The data source type, either an Amplify DataStore model or a custom data type.The unique name of the data type you are using as the data source for the form.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataSourceType
The data source type, either an Amplify DataStore model or a custom data type.- See Also:
-
getDataTypeName
The unique name of the data type you are using as the data source for the form.- See Also:
-
builder
-