Interface IUserPoolResourceServerProps
Properties for the UserPoolResourceServer construct.
public interface IUserPoolResourceServerProps : IUserPoolResourceServerOptions
- Inherited Members
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;
ResourceServerScope resourceServerScope;
UserPool userPool;
var userPoolResourceServerProps = new UserPoolResourceServerProps {
Identifier = "identifier",
UserPool = userPool,
// the properties below are optional
Scopes = new [] { resourceServerScope },
UserPoolResourceServerName = "userPoolResourceServerName"
};
Remarks
ExampleMetadata: fixture=_generated
Properties
UserPool
The user pool to add this resource server to.
IUserPool UserPool { get; }