Show / Hide Table of Contents

Interface IUserPoolResourceServerProps

Properties for the UserPoolResourceServer construct.

Inherited Members
IUserPoolResourceServerOptions.Identifier
IUserPoolResourceServerOptions.Scopes
IUserPoolResourceServerOptions.UserPoolResourceServerName
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;

            ResourceServerScope resourceServerScope;
            UserPool userPool;

            var userPoolResourceServerProps = new UserPoolResourceServerProps {
                Identifier = "identifier",
                UserPool = userPool,

                // 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.

IUserPool UserPool { get; }
Property Value

IUserPool

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX