Table of Contents

Class CfnUserPoolUserToGroupAttachmentProps

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

Properties for defining a CfnUserPoolUserToGroupAttachment.

public class CfnUserPoolUserToGroupAttachmentProps : ICfnUserPoolUserToGroupAttachmentProps
Inheritance
CfnUserPoolUserToGroupAttachmentProps
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Cognito;

             var cfnUserPoolUserToGroupAttachmentProps = new CfnUserPoolUserToGroupAttachmentProps {
                 GroupName = "groupName",
                 Username = "username",
                 UserPoolId = "userPoolId"
             };

Remarks

Constructors

CfnUserPoolUserToGroupAttachmentProps()

public CfnUserPoolUserToGroupAttachmentProps()

Properties

GroupName

The group name.

public string GroupName { get; set; }

Property Value

string

Remarks

UserPoolId

The user pool ID for the user pool.

public string UserPoolId { get; set; }

Property Value

string

Remarks

Username

The username for the user.

public string Username { get; set; }

Property Value

string

Remarks