Interface ICfnUserPoolUserToGroupAttachmentProps
Properties for defining a CfnUserPoolUserToGroupAttachment.
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnUserPoolUserToGroupAttachmentProps
Syntax (vb)
Public Interface ICfnUserPoolUserToGroupAttachmentProps
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.Cognito;
var cfnUserPoolUserToGroupAttachmentProps = new CfnUserPoolUserToGroupAttachmentProps {
GroupName = "groupName",
Username = "username",
UserPoolId = "userPoolId"
};
Synopsis
Properties
| GroupName | The name of the group that you want to add your user to. |
| UserPoolId | The ID of the user pool that contains the group that you want to add the user to. |
| Username | The user's username. |
Properties
GroupName
The name of the group that you want to add your user to.
string GroupName { get; }
Property Value
Remarks
UserPoolId
The ID of the user pool that contains the group that you want to add the user to.
string UserPoolId { get; }
Property Value
Remarks
Username
The user's username.
string Username { get; }