interface CfnFormTypeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnFormTypeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnFormTypeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnFormTypeMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnFormTypeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnFormTypeMixinProps |
Properties for CfnFormTypePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html
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 cfnFormTypeMixinProps: datazone_mixins.CfnFormTypeMixinProps = {
description: 'description',
domainIdentifier: 'domainIdentifier',
model: {
smithy: 'smithy',
},
name: 'name',
owningProjectIdentifier: 'owningProjectIdentifier',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the metadata form type. |
| domain | string | The identifier of the Amazon DataZone domain in which the form type exists. |
| model? | IResolvable | Model | The model of the form type. |
| name? | string | The name of the form type. |
| owning | string | The identifier of the project that owns the form type. |
| status? | string | The status of the form type. |
description?
Type:
string
(optional)
The description of the metadata form type.
domainIdentifier?
Type:
string
(optional)
The identifier of the Amazon DataZone domain in which the form type exists.
model?
Type:
IResolvable | Model
(optional)
The model of the form type.
name?
Type:
string
(optional)
The name of the form type.
owningProjectIdentifier?
Type:
string
(optional)
The identifier of the project that owns the form type.
status?
Type:
string
(optional)
The status of the form type.

.NET
Go
Java
Python
TypeScript