Show / Hide Table of Contents

Class CfnUserPoolUserToGroupAttachmentMixinProps

Properties for CfnUserPoolUserToGroupAttachmentPropsMixin.

Inheritance
object
CfnUserPoolUserToGroupAttachmentMixinProps
Implements
ICfnUserPoolUserToGroupAttachmentMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Cognito
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnUserPoolUserToGroupAttachmentMixinProps : ICfnUserPoolUserToGroupAttachmentMixinProps
Syntax (vb)
Public Class CfnUserPoolUserToGroupAttachmentMixinProps Implements ICfnUserPoolUserToGroupAttachmentMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html

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.CfnPropertyMixins.AWS.Cognito;

             var cfnUserPoolUserToGroupAttachmentMixinProps = new CfnUserPoolUserToGroupAttachmentMixinProps {
                 GroupName = "groupName",
                 Username = "username",
                 UserPoolId = "userPoolId"
             };

Synopsis

Constructors

CfnUserPoolUserToGroupAttachmentMixinProps()

Properties for CfnUserPoolUserToGroupAttachmentPropsMixin.

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.

Constructors

CfnUserPoolUserToGroupAttachmentMixinProps()

Properties for CfnUserPoolUserToGroupAttachmentPropsMixin.

public CfnUserPoolUserToGroupAttachmentMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html

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.CfnPropertyMixins.AWS.Cognito;

             var cfnUserPoolUserToGroupAttachmentMixinProps = new CfnUserPoolUserToGroupAttachmentMixinProps {
                 GroupName = "groupName",
                 Username = "username",
                 UserPoolId = "userPoolId"
             };

Properties

GroupName

The name of the group that you want to add your user to.

public object? GroupName { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname

Type union: either string or IUserPoolGroupRef

UserPoolId

The ID of the user pool that contains the group that you want to add the user to.

public object? UserPoolId { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid

Type union: either string or IUserPoolRef

Username

The user's username.

public object? Username { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username

Type union: either string or IUserPoolUserRef

Implements

ICfnUserPoolUserToGroupAttachmentMixinProps
Back to top Generated by DocFX