interface FormInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnDataSourcePropsMixin.FormInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnDataSourcePropsMixin_FormInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnDataSourcePropsMixin.FormInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnDataSourcePropsMixin.FormInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » CfnDataSourcePropsMixin » FormInputProperty |
The details of a metadata form.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const formInputProperty: datazone.CfnDataSourcePropsMixin.FormInputProperty = {
content: 'content',
formName: 'formName',
typeIdentifier: 'typeIdentifier',
typeRevision: 'typeRevision',
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | The content of the metadata form. |
| form | string | The name of the metadata form. |
| type | string | The ID of the metadata form type. |
| type | string | The revision of the metadata form type. |
content?
Type:
string
(optional)
The content of the metadata form.
formName?
Type:
string
(optional)
The name of the metadata form.
typeIdentifier?
Type:
string
(optional)
The ID of the metadata form type.
typeRevision?
Type:
string
(optional)
The revision of the metadata form type.

.NET
Go
Java
Python
TypeScript