Show / Hide Table of Contents

Class CfnGroupMembershipProps

Properties for defining a CfnGroupMembership.

Inheritance
object
CfnGroupMembershipProps
Implements
ICfnGroupMembershipProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IdentityStore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGroupMembershipProps : ICfnGroupMembershipProps
Syntax (vb)
Public Class CfnGroupMembershipProps Implements 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

Constructors

CfnGroupMembershipProps()

Properties for defining a CfnGroupMembership.

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.

Constructors

CfnGroupMembershipProps()

Properties for defining a CfnGroupMembership.

public CfnGroupMembershipProps()
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"
                 }
             };

Properties

GroupId

The identifier for a group in the identity store.

public string GroupId { get; set; }
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.

public string IdentityStoreId { get; set; }
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.

public object MemberId { get; set; }
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

Implements

ICfnGroupMembershipProps
Back to top Generated by DocFX