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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forUserPoolResourceServerPropsstatic final classAn implementation forUserPoolResourceServerProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods 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
-