interface FormTypeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DataZone.FormTypeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdatazone#FormTypeReference |
Java | software.amazon.awscdk.interfaces.datazone.FormTypeReference |
Python | aws_cdk.interfaces.aws_datazone.FormTypeReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_datazone } from 'aws-cdk-lib/interfaces';
const formTypeReference: interfaces_aws_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