Interface CfnDataSource.IFormInputProperty
The details of a metadata form.
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.IFormInputProperty
Syntax (vb)
Public Interface 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
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. |
Properties
Content
The content of the metadata form.
string? Content { get; }
Property Value
Remarks
FormName
The name of the metadata form.
string FormName { get; }
Property Value
Remarks
TypeIdentifier
The ID of the metadata form type.
string? TypeIdentifier { get; }
Property Value
Remarks
TypeRevision
The revision of the metadata form type.
string? TypeRevision { get; }