Interface ICfnUserPoolResourceServerProps
Properties for defining a CfnUserPoolResourceServer
.
public interface ICfnUserPoolResourceServerProps
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;
var cfnUserPoolResourceServerProps = new CfnUserPoolResourceServerProps {
Identifier = "identifier",
Name = "name",
UserPoolId = "userPoolId",
// the properties below are optional
Scopes = new [] { new ResourceServerScopeTypeProperty {
ScopeDescription = "scopeDescription",
ScopeName = "scopeName"
} }
};
Remarks
ExampleMetadata: fixture=_generated
Properties
Identifier
A unique resource server identifier for the resource server.
string Identifier { get; }
Property Value
Remarks
This could be an HTTPS endpoint where the resource server is located. For example: https://my-weather-api.example.com
.
Name
A friendly name for the resource server.
string Name { get; }
Property Value
Remarks
Scopes
A list of scopes.
object? Scopes { get; }
Property Value
Remarks
Each scope is a map with keys ScopeName
and ScopeDescription
.
UserPoolId
The user pool ID for the user pool.
string UserPoolId { get; }