Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-groupmembership.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.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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-groupmembership.html#cfn-identitystore-groupmembership-groupid

IdentityStoreId

The globally unique identifier for the identity store.

string IdentityStoreId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-groupmembership.html#cfn-identitystore-groupmembership-identitystoreid

MemberId

An object containing the identifier of a group member.

object MemberId { get; }
Property Value

object

Remarks

Setting the MemberId 's UserId field to a specific User's ID indicates that user is a member of the group.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-groupmembership.html#cfn-identitystore-groupmembership-memberid

Type union: either IResolvable or CfnGroupMembership.IMemberIdProperty

Back to top Generated by DocFX