Class CfnUserPoolUserToGroupAttachmentProps
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
ExampleMetadata: fixture=_generated
Constructors
CfnUserPoolUserToGroupAttachmentProps()
public CfnUserPoolUserToGroupAttachmentProps()
Properties
GroupName
The group name.
public string GroupName { get; set; }
Property Value
Remarks
UserPoolId
The user pool ID for the user pool.
public string UserPoolId { get; set; }
Property Value
Remarks
Username
The username for the user.
public string Username { get; set; }