Interface CfnUserPoolResourceServerPropsMixin.IResourceServerScopeTypeProperty
One custom scope associated with a user pool resource server.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnUserPoolResourceServerPropsMixin.IResourceServerScopeTypeProperty
Syntax (vb)
Public Interface CfnUserPoolResourceServerPropsMixin.IResourceServerScopeTypeProperty
Remarks
This data type is a member of ResourceServerScopeType . For more information, see Scopes, M2M, and API authorization with resource servers .
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.Mixins.Preview.AWS.Cognito.Mixins;
var resourceServerScopeTypeProperty = new ResourceServerScopeTypeProperty {
ScopeDescription = "scopeDescription",
ScopeName = "scopeName"
};
Synopsis
Properties
| ScopeDescription | A friendly description of a custom scope. |
| ScopeName | The name of the scope. |
Properties
ScopeDescription
A friendly description of a custom scope.
string? ScopeDescription { get; }
Property Value
Remarks
ScopeName
The name of the scope.
string? ScopeName { get; }
Property Value
Remarks
Amazon Cognito renders custom scopes in the format resourceServerIdentifier/ScopeName . For example, if this parameter is exampleScope in the resource server with the identifier exampleResourceServer , you request and receive the scope exampleResourceServer/exampleScope .