interface CfnDomainUnitProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.CfnDomainUnitProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnDomainUnitProps |
Java | software.amazon.awscdk.services.datazone.CfnDomainUnitProps |
Python | aws_cdk.aws_datazone.CfnDomainUnitProps |
TypeScript | aws-cdk-lib » aws_datazone » CfnDomainUnitProps |
Properties for defining a CfnDomainUnit.
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 { aws_datazone as datazone } from 'aws-cdk-lib';
const cfnDomainUnitProps: datazone.CfnDomainUnitProps = {
domainIdentifier: 'domainIdentifier',
name: 'name',
parentDomainUnitIdentifier: 'parentDomainUnitIdentifier',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | string | The description of the domain unit. |
domainIdentifier
Type:
string
The ID of the domain where you want to crate a domain unit.
name
Type:
string
The name of the domain unit.
parentDomainUnitIdentifier
Type:
string
The ID of the parent domain unit.
description?
Type:
string
(optional)
The description of the domain unit.

.NET
Go
Java
Python
TypeScript