Table of Contents

Interface IUserPoolResourceServerProps

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

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; }

Property Value

IUserPool