Show / Hide Table of Contents

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
CfnForm.IFormDataTypeConfigProperty
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public class FormDataTypeConfigProperty : Object, CfnForm.IFormDataTypeConfigProperty
Syntax (vb)
Public Class FormDataTypeConfigProperty
    Inherits Object
    Implements CfnForm.IFormDataTypeConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formdatatypeconfig.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formdatatypeconfig.html#cfn-amplifyuibuilder-form-formdatatypeconfig-datasourcetype

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

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formdatatypeconfig.html#cfn-amplifyuibuilder-form-formdatatypeconfig-datatypename

Implements

CfnForm.IFormDataTypeConfigProperty
Back to top Generated by DocFX