interface CfnDomainUnitMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDomainUnitMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDomainUnitMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDomainUnitMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDomainUnitMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnDomainUnitMixinProps |
Properties for CfnDomainUnitPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.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 cfnDomainUnitMixinProps: datazone_mixins.CfnDomainUnitMixinProps = {
description: 'description',
domainIdentifier: 'domainIdentifier',
name: 'name',
parentDomainUnitIdentifier: 'parentDomainUnitIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the domain unit. |
| domain | string | The ID of the domain where you want to crate a domain unit. |
| name? | string | The name of the domain unit. |
| parent | string | The ID of the parent domain unit. |
description?
Type:
string
(optional)
The description of the domain unit.
domainIdentifier?
Type:
string
(optional)
The ID of the domain where you want to crate a domain unit.
name?
Type:
string
(optional)
The name of the domain unit.
parentDomainUnitIdentifier?
Type:
string
(optional)
The ID of the parent domain unit.

.NET
Go
Java
Python
TypeScript