Class CfnProjectMembership.MemberProperty
The details about a project member.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnProjectMembership.MemberProperty : CfnProjectMembership.IMemberProperty
Syntax (vb)
Public Class CfnProjectMembership.MemberProperty Implements CfnProjectMembership.IMemberProperty
Remarks
Important - this data type is a UNION, so only one of the following members can be specified when used or returned.
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 memberProperty = new MemberProperty {
GroupIdentifier = "groupIdentifier",
UserIdentifier = "userIdentifier"
};
Synopsis
Constructors
| MemberProperty() | The details about a project member. |
Properties
| GroupIdentifier | The ID of the group of a project member. |
| UserIdentifier | The user ID of a project member. |
Constructors
MemberProperty()
The details about a project member.
public MemberProperty()
Remarks
Important - this data type is a UNION, so only one of the following members can be specified when used or returned.
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 memberProperty = new MemberProperty {
GroupIdentifier = "groupIdentifier",
UserIdentifier = "userIdentifier"
};
Properties
GroupIdentifier
The ID of the group of a project member.
public string? GroupIdentifier { get; set; }
Property Value
Remarks
UserIdentifier
The user ID of a project member.
public string? UserIdentifier { get; set; }