Show / Hide Table of Contents

Class UserPoolReference

A reference to a UserPool resource.

Inheritance
object
UserPoolReference
Implements
IUserPoolReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class UserPoolReference : IUserPoolReference
Syntax (vb)
Public Class UserPoolReference Implements IUserPoolReference
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.Interfaces.Cognito;

            var userPoolReference = new UserPoolReference {
                UserPoolArn = "userPoolArn",
                UserPoolId = "userPoolId"
            };

Synopsis

Constructors

UserPoolReference()

A reference to a UserPool resource.

Properties

UserPoolArn

The ARN of the UserPool resource.

UserPoolId

The UserPoolId of the UserPool resource.

Constructors

UserPoolReference()

A reference to a UserPool resource.

public UserPoolReference()
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.Interfaces.Cognito;

            var userPoolReference = new UserPoolReference {
                UserPoolArn = "userPoolArn",
                UserPoolId = "userPoolId"
            };

Properties

UserPoolArn

The ARN of the UserPool resource.

public string UserPoolArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

UserPoolId

The UserPoolId of the UserPool resource.

public string UserPoolId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IUserPoolReference
Back to top Generated by DocFX