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
object
CfnForm.FormDataTypeConfigProperty
Implements
CfnForm.IFormDataTypeConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnForm.FormDataTypeConfigProperty : CfnForm.IFormDataTypeConfigProperty
Syntax (vb)
Public Class CfnForm.FormDataTypeConfigProperty Implements CfnForm.IFormDataTypeConfigProperty
Remarks

See: 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()

The FormDataTypeConfig property specifies the data type configuration for the data source associated with a form.

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()

The FormDataTypeConfig property specifies the data type configuration for the data source associated with a form.

public FormDataTypeConfigProperty()
Remarks

See: 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"
             };

Properties

DataSourceType

The data source type, either an Amplify DataStore model or a custom data type.

public string DataSourceType { get; set; }
Property Value

string

Remarks

See: 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

string

Remarks

See: 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