Class CfnDomainUnitProps
Properties for defining a CfnDomainUnit.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDomainUnitProps : ICfnDomainUnitProps
Syntax (vb)
Public Class CfnDomainUnitProps Implements ICfnDomainUnitProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var cfnDomainUnitProps = new CfnDomainUnitProps {
DomainIdentifier = "domainIdentifier",
Name = "name",
ParentDomainUnitIdentifier = "parentDomainUnitIdentifier",
// the properties below are optional
Description = "description"
};
Synopsis
Constructors
| CfnDomainUnitProps() | Properties for defining a |
Properties
| Description | The description of the domain unit. |
| DomainIdentifier | The ID of the domain where you want to crate a domain unit. |
| Name | The name of the domain unit. |
| ParentDomainUnitIdentifier | The ID of the parent domain unit. |
Constructors
CfnDomainUnitProps()
Properties for defining a CfnDomainUnit.
public CfnDomainUnitProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var cfnDomainUnitProps = new CfnDomainUnitProps {
DomainIdentifier = "domainIdentifier",
Name = "name",
ParentDomainUnitIdentifier = "parentDomainUnitIdentifier",
// the properties below are optional
Description = "description"
};
Properties
Description
The description of the domain unit.
public string? Description { get; set; }
Property Value
Remarks
DomainIdentifier
The ID of the domain where you want to crate a domain unit.
public string DomainIdentifier { get; set; }
Property Value
Remarks
Name
The name of the domain unit.
public string Name { get; set; }
Property Value
Remarks
ParentDomainUnitIdentifier
The ID of the parent domain unit.
public string ParentDomainUnitIdentifier { get; set; }