Show / Hide Table of Contents

Class CfnDataSource.FormInputProperty

The details of a metadata form.

Inheritance
object
CfnDataSource.FormInputProperty
Implements
CfnDataSource.IFormInputProperty
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.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.FormInputProperty : CfnDataSource.IFormInputProperty
Syntax (vb)
Public Class CfnDataSource.FormInputProperty Implements CfnDataSource.IFormInputProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-forminput.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.DataZone;

             var formInputProperty = new FormInputProperty {
                 FormName = "formName",

                 // the properties below are optional
                 Content = "content",
                 TypeIdentifier = "typeIdentifier",
                 TypeRevision = "typeRevision"
             };

Synopsis

Constructors

FormInputProperty()

The details of a metadata form.

Properties

Content

The content of the metadata form.

FormName

The name of the metadata form.

TypeIdentifier

The ID of the metadata form type.

TypeRevision

The revision of the metadata form type.

Constructors

FormInputProperty()

The details of a metadata form.

public FormInputProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-forminput.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.DataZone;

             var formInputProperty = new FormInputProperty {
                 FormName = "formName",

                 // the properties below are optional
                 Content = "content",
                 TypeIdentifier = "typeIdentifier",
                 TypeRevision = "typeRevision"
             };

Properties

Content

The content of the metadata form.

public string? Content { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-forminput.html#cfn-datazone-datasource-forminput-content

FormName

The name of the metadata form.

public string FormName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-forminput.html#cfn-datazone-datasource-forminput-formname

TypeIdentifier

The ID of the metadata form type.

public string? TypeIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-forminput.html#cfn-datazone-datasource-forminput-typeidentifier

TypeRevision

The revision of the metadata form type.

public string? TypeRevision { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-forminput.html#cfn-datazone-datasource-forminput-typerevision

Implements

CfnDataSource.IFormInputProperty
Back to top Generated by DocFX