Interface UserPoolResourceServerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,UserPoolResourceServerOptions
- All Known Implementing Classes:
UserPoolResourceServerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.104Z")
@Stability(Stable)
public interface UserPoolResourceServerProps
extends software.amazon.jsii.JsiiSerializable, UserPoolResourceServerOptions
Properties for the UserPoolResourceServer construct.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cognito.*; ResourceServerScope resourceServerScope; UserPool userPool; UserPoolResourceServerProps userPoolResourceServerProps = UserPoolResourceServerProps.builder() .identifier("identifier") .userPool(userPool) // the properties below are optional .scopes(List.of(resourceServerScope)) .userPoolResourceServerName("userPoolResourceServerName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forUserPoolResourceServerProps
static final class
An implementation forUserPoolResourceServerProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.cognito.UserPoolResourceServerOptions
getIdentifier, getScopes, getUserPoolResourceServerName
-
Method Details
-
getUserPool
The user pool to add this resource server to. -
builder
-