Show / Hide Table of Contents

Class CfnDomainUnitProps

Properties for defining a CfnDomainUnit.

Inheritance
object
CfnDomainUnitProps
Implements
ICfnDomainUnitProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 CfnDomainUnit.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-description

DomainIdentifier

The ID of the domain where you want to crate a domain unit.

public string DomainIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-domainidentifier

Name

The name of the domain unit.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-name

ParentDomainUnitIdentifier

The ID of the parent domain unit.

public string ParentDomainUnitIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-parentdomainunitidentifier

Implements

ICfnDomainUnitProps
Back to top Generated by DocFX