Show / Hide Table of Contents

Class CfnOwnerPropsMixin.OwnerPropertiesProperty

The properties of a domain unit's owner.

Inheritance
object
CfnOwnerPropsMixin.OwnerPropertiesProperty
Implements
CfnOwnerPropsMixin.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.Mixins.Preview.AWS.DataZone.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnOwnerPropsMixin.OwnerPropertiesProperty : CfnOwnerPropsMixin.IOwnerPropertiesProperty
Syntax (vb)
Public Class CfnOwnerPropsMixin.OwnerPropertiesProperty Implements CfnOwnerPropsMixin.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.Mixins.Preview.AWS.DataZone.Mixins;

             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.Mixins.Preview.AWS.DataZone.Mixins;

             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 CfnOwnerPropsMixin.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 CfnOwnerPropsMixin.IOwnerUserPropertiesProperty

Implements

CfnOwnerPropsMixin.IOwnerPropertiesProperty
Back to top Generated by DocFX