Interface IUserPoolResourceServerProps
Properties for the UserPoolResourceServer construct.
Inherited Members
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IUserPoolResourceServerProps : IUserPoolResourceServerOptions
Syntax (vb)
Public Interface IUserPoolResourceServerProps Inherits IUserPoolResourceServerOptions
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.AWS.Cognito;
using Amazon.CDK.Interfaces.Cognito;
ResourceServerScope resourceServerScope;
IUserPoolRef userPoolRef;
var userPoolResourceServerProps = new UserPoolResourceServerProps {
Identifier = "identifier",
UserPool = userPoolRef,
// the properties below are optional
Scopes = new [] { resourceServerScope },
UserPoolResourceServerName = "userPoolResourceServerName"
};
Synopsis
Properties
| UserPool | The user pool to add this resource server to. |
Properties
UserPool
The user pool to add this resource server to.
IUserPoolRef UserPool { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated