Interface CfnUserPoolResourceServerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPoolResourceServerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.964Z")
@Stability(Stable)
public interface CfnUserPoolResourceServerProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnUserPoolResourceServer.
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.*;
CfnUserPoolResourceServerProps cfnUserPoolResourceServerProps = CfnUserPoolResourceServerProps.builder()
.identifier("identifier")
.name("name")
.userPoolId("userPoolId")
// the properties below are optional
.scopes(List.of(ResourceServerScopeTypeProperty.builder()
.scopeDescription("scopeDescription")
.scopeName("scopeName")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPoolResourceServerPropsstatic final classAn implementation forCfnUserPoolResourceServerProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdentifier
A unique resource server identifier for the resource server.This could be an HTTPS endpoint where the resource server is located. For example:
https://my-weather-api.example.com. -
getName
A friendly name for the resource server. -
getUserPoolId
The user pool ID for the user pool. -
getScopes
A list of scopes.Each scope is a map with keys
ScopeNameandScopeDescription. -
builder
-