Show / Hide Table of Contents

Interface CfnOwner.IOwnerPropertiesProperty

The properties of a domain unit's owner.

Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnOwner.IOwnerPropertiesProperty
Syntax (vb)
Public Interface 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

Properties

Group

Specifies that the domain unit owner is a group.

User

Specifies that the domain unit owner is a user.

Properties

Group

Specifies that the domain unit owner is a group.

object? Group { get; }
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.

object? User { get; }
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

Back to top Generated by DocFX