interface FormInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDataSourcePropsMixin.FormInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDataSourcePropsMixin_FormInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDataSourcePropsMixin.FormInputProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDataSourcePropsMixin.FormInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » 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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const formInputProperty: datazone_mixins.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