Class CfnDataSource.FormInputProperty
The details of a metadata form.
Implements
Inherited Members
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
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
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
Remarks
FormName
The name of the metadata form.
public string FormName { get; set; }
Property Value
Remarks
TypeIdentifier
The ID of the metadata form type.
public string? TypeIdentifier { get; set; }
Property Value
Remarks
TypeRevision
The revision of the metadata form type.
public string? TypeRevision { get; set; }