Class UserPoolReference
A reference to a UserPool resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
UserPoolId
The UserPoolId of the UserPool resource.
public string UserPoolId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated