Interface CfnProjectMembership.IMemberProperty
The details about a project member.
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnProjectMembership.IMemberProperty
Syntax (vb)
Public Interface 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
Properties
| GroupIdentifier | The ID of the group of a project member. |
| UserIdentifier | The user ID of a project member. |
Properties
GroupIdentifier
The ID of the group of a project member.
string? GroupIdentifier { get; }
Property Value
Remarks
UserIdentifier
The user ID of a project member.
string? UserIdentifier { get; }