interface CfnUserPoolUserToGroupAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnUserPoolUserToGroupAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnUserPoolUserToGroupAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnUserPoolUserToGroupAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnUserPoolUserToGroupAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnUserPoolUserToGroupAttachmentMixinProps |
Properties for CfnUserPoolUserToGroupAttachmentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cognito_mixins } from '@aws-cdk/mixins-preview/aws-cognito';
const cfnUserPoolUserToGroupAttachmentMixinProps: cognito_mixins.CfnUserPoolUserToGroupAttachmentMixinProps = {
groupName: 'groupName',
username: 'username',
userPoolId: 'userPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The name of the group that you want to add your user to. |
| user | string | The ID of the user pool that contains the group that you want to add the user to. |
| username? | string | The user's username. |
groupName?
Type:
string
(optional)
The name of the group that you want to add your user to.
userPoolId?
Type:
string
(optional)
The ID of the user pool that contains the group that you want to add the user to.
username?
Type:
string
(optional)
The user's username.

.NET
Go
Java
Python
TypeScript