Show / Hide Table of Contents

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html#cfn-cognito-userpoolresourceserver-resourceserverscopetype-scopedescription

ScopeName

The name of the scope.

string? ScopeName { get; }
Property Value

string

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html#cfn-cognito-userpoolresourceserver-resourceserverscopetype-scopename

Back to top Generated by DocFX