interface FormTypeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.FormTypeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#FormTypeReference |
Java | software.amazon.awscdk.services.datazone.FormTypeReference |
Python | aws_cdk.aws_datazone.FormTypeReference |
TypeScript | aws-cdk-lib » aws_datazone » FormTypeReference |
A reference to a FormType resource.
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-lib';
const formTypeReference: datazone.FormTypeReference = {
domainIdentifier: 'domainIdentifier',
formTypeIdentifier: 'formTypeIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainIdentifier of the FormType resource. |
| form | string | The FormTypeIdentifier of the FormType resource. |
domainIdentifier
Type:
string
The DomainIdentifier of the FormType resource.
formTypeIdentifier
Type:
string
The FormTypeIdentifier of the FormType resource.

.NET
Go
Java
Python
TypeScript