Interface ICfnGroupMembershipProps
Properties for defining a CfnGroupMembership.
Namespace: Amazon.CDK.AWS.IdentityStore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnGroupMembershipProps
Syntax (vb)
Public Interface ICfnGroupMembershipProps
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.AWS.IdentityStore;
var cfnGroupMembershipProps = new CfnGroupMembershipProps {
GroupId = "groupId",
IdentityStoreId = "identityStoreId",
MemberId = new MemberIdProperty {
UserId = "userId"
}
};
Synopsis
Properties
| GroupId | The identifier for a group in the identity store. |
| IdentityStoreId | The globally unique identifier for the identity store. |
| MemberId | An object containing the identifier of a group member. |
Properties
GroupId
The identifier for a group in the identity store.
string GroupId { get; }
Property Value
Remarks
IdentityStoreId
The globally unique identifier for the identity store.
string IdentityStoreId { get; }
Property Value
Remarks
MemberId
An object containing the identifier of a group member.
object MemberId { get; }
Property Value
Remarks
Setting the MemberId 's UserId field to a specific User's ID indicates that user is a member of the group.
Type union: either IResolvable or CfnGroupMembership.IMemberIdProperty