Show / Hide Table of Contents

Class CfnOwner.OwnerPropertiesProperty

The properties of a domain unit's owner.

Inheritance
object
CfnOwner.OwnerPropertiesProperty
Implements
CfnOwner.IOwnerPropertiesProperty
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 CfnOwner.OwnerPropertiesProperty : CfnOwner.IOwnerPropertiesProperty
Syntax (vb)
Public Class CfnOwner.OwnerPropertiesProperty Implements CfnOwner.IOwnerPropertiesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.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 ownerPropertiesProperty = new OwnerPropertiesProperty {
                 Group = new OwnerGroupPropertiesProperty {
                     GroupIdentifier = "groupIdentifier"
                 },
                 User = new OwnerUserPropertiesProperty {
                     UserIdentifier = "userIdentifier"
                 }
             };

Synopsis

Constructors

OwnerPropertiesProperty()

The properties of a domain unit's owner.

Properties

Group

Specifies that the domain unit owner is a group.

User

Specifies that the domain unit owner is a user.

Constructors

OwnerPropertiesProperty()

The properties of a domain unit's owner.

public OwnerPropertiesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.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 ownerPropertiesProperty = new OwnerPropertiesProperty {
                 Group = new OwnerGroupPropertiesProperty {
                     GroupIdentifier = "groupIdentifier"
                 },
                 User = new OwnerUserPropertiesProperty {
                     UserIdentifier = "userIdentifier"
                 }
             };

Properties

Group

Specifies that the domain unit owner is a group.

public object? Group { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html#cfn-datazone-owner-ownerproperties-group

Type union: either IResolvable or CfnOwner.IOwnerGroupPropertiesProperty

User

Specifies that the domain unit owner is a user.

public object? User { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html#cfn-datazone-owner-ownerproperties-user

Type union: either IResolvable or CfnOwner.IOwnerUserPropertiesProperty

Implements

CfnOwner.IOwnerPropertiesProperty
Back to top Generated by DocFX