Class CfnOwnerPropsMixin.OwnerPropertiesProperty
The properties of a domain unit's owner.
Implements
Inherited Members
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
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
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
Remarks
User
Specifies that the domain unit owner is a user.
public object? User { get; set; }