Show / Hide Table of Contents

Class CfnDomainUnit

The summary of the domain unit.

Inheritance
object
CfnElement
CfnRefElement
CfnResource
CfnDomainUnit
Implements
IInspectable
IDomainUnitRef
IConstruct
IDependable
IEnvironmentAware
Inherited Members
CfnResource.IsCfnResource(object)
CfnResource.AddDeletionOverride(string)
CfnResource.AddDependency(CfnResource)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(string, object)
CfnResource.AddOverride(string, object)
CfnResource.AddPropertyDeletionOverride(string)
CfnResource.AddPropertyOverride(string, object)
CfnResource.ApplyRemovalPolicy(RemovalPolicy?, IRemovalPolicyOptions)
CfnResource.CfnPropertyName(string)
CfnResource.GetAtt(string, ResolutionTypeHint?)
CfnResource.GetMetadata(string)
CfnResource.ObtainDependencies()
CfnResource.ObtainResourceDependencies()
CfnResource.RemoveDependency(CfnResource)
CfnResource.ReplaceDependency(CfnResource, CfnResource)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.Env
CfnResource.UpdatedProperites
CfnResource.UpdatedProperties
CfnRefElement.Ref
CfnElement.IsCfnElement(object)
CfnElement.OverrideLogicalId(string)
CfnElement.With(params IMixin[])
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDomainUnit : CfnResource, IInspectable, IDomainUnitRef, IConstruct, IDependable, IEnvironmentAware
Syntax (vb)
Public Class CfnDomainUnit Inherits CfnResource Implements IInspectable, IDomainUnitRef, IConstruct, IDependable, IEnvironmentAware
Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

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 cfnDomainUnit = new CfnDomainUnit(this, "MyCfnDomainUnit", new CfnDomainUnitProps {
                 DomainIdentifier = "domainIdentifier",
                 Name = "name",
                 ParentDomainUnitIdentifier = "parentDomainUnitIdentifier",

                 // the properties below are optional
                 Description = "description"
             });

Synopsis

Constructors

CfnDomainUnit(Construct, string, ICfnDomainUnitProps)

Create a new AWS::DataZone::DomainUnit.

Properties

AttrCreatedAt

The time stamp at which the domain unit was created.

AttrDomainId

The ID of the domain in which the domain unit lives.

AttrId

The ID of the domain unit.

AttrIdentifier

The identifier of the domain unit that you want to get.

AttrLastUpdatedAt

The timestamp at which the domain unit was last updated.

AttrParentDomainUnitId

The ID of the parent domain unit.

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CfnProperties

The summary of the domain unit.

CfnPropertyNames

The summary of the domain unit.

Description

The description of the domain unit.

DomainIdentifier

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

DomainUnitRef

A reference to a DomainUnit resource.

Name

The name of the domain unit.

ParentDomainUnitIdentifier

The ID of the parent domain unit.

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

IsCfnDomainUnit(object)

Checks whether the given object is a CfnDomainUnit.

RenderProperties(IDictionary<string, object>)

The summary of the domain unit.

Constructors

CfnDomainUnit(Construct, string, ICfnDomainUnitProps)

Create a new AWS::DataZone::DomainUnit.

public CfnDomainUnit(Construct scope, string id, ICfnDomainUnitProps props)
Parameters
scope Construct

Scope in which this resource is defined.

id string

Construct identifier for this resource (unique in its scope).

props ICfnDomainUnitProps

Resource properties.

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

Properties

AttrCreatedAt

The time stamp at which the domain unit was created.

public virtual string AttrCreatedAt { get; }
Property Value

string

Remarks

CloudformationAttribute: CreatedAt

AttrDomainId

The ID of the domain in which the domain unit lives.

public virtual string AttrDomainId { get; }
Property Value

string

Remarks

CloudformationAttribute: DomainId

AttrId

The ID of the domain unit.

public virtual string AttrId { get; }
Property Value

string

Remarks

CloudformationAttribute: Id

AttrIdentifier

The identifier of the domain unit that you want to get.

public virtual string AttrIdentifier { get; }
Property Value

string

Remarks

CloudformationAttribute: Identifier

AttrLastUpdatedAt

The timestamp at which the domain unit was last updated.

public virtual string AttrLastUpdatedAt { get; }
Property Value

string

Remarks

CloudformationAttribute: LastUpdatedAt

AttrParentDomainUnitId

The ID of the parent domain unit.

public virtual string AttrParentDomainUnitId { get; }
Property Value

string

Remarks

CloudformationAttribute: ParentDomainUnitId

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

string

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

CfnProperties

The summary of the domain unit.

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

IDictionary<string, object>

Overrides
CfnResource.CfnProperties
Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

CfnPropertyNames

The summary of the domain unit.

protected override IDictionary<string, string> CfnPropertyNames { get; }
Property Value

IDictionary<string, string>

Overrides
CfnResource.CfnPropertyNames
Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

Description

The description of the domain unit.

public virtual string? Description { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

DomainIdentifier

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

public virtual string DomainIdentifier { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

DomainUnitRef

A reference to a DomainUnit resource.

public virtual IDomainUnitReference DomainUnitRef { get; }
Property Value

IDomainUnitReference

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

Name

The name of the domain unit.

public virtual string Name { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

ParentDomainUnitIdentifier

The ID of the parent domain unit.

public virtual string ParentDomainUnitIdentifier { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector

tree inspector to collect and process attributes.

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

IsCfnDomainUnit(object)

Checks whether the given object is a CfnDomainUnit.

public static bool IsCfnDomainUnit(object x)
Parameters
x object
Returns

bool

Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

RenderProperties(IDictionary<string, object>)

The summary of the domain unit.

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props IDictionary<string, object>
Returns

IDictionary<string, object>

Overrides
CfnResource.RenderProperties(IDictionary<string, object>)
Remarks

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

CloudformationResource: AWS::DataZone::DomainUnit

ExampleMetadata: fixture=_generated

Implements

IInspectable
IDomainUnitRef
Constructs.IConstruct
Constructs.IDependable
IEnvironmentAware
Back to top Generated by DocFX