Table of Contents

Interface ICfnUserPoolUserToGroupAttachmentProps

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

Properties for defining a CfnUserPoolUserToGroupAttachment.

public interface ICfnUserPoolUserToGroupAttachmentProps

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

Properties

GroupName

The group name.

string GroupName { get; }

Property Value

string

Remarks

UserPoolId

The user pool ID for the user pool.

string UserPoolId { get; }

Property Value

string

Remarks

Username

The username for the user.

string Username { get; }

Property Value

string

Remarks