Show / Hide Table of Contents

Class CfnUserPoolResourceServer.ResourceServerScopeTypeProperty

One custom scope associated with a user pool resource server.

Inheritance
object
CfnUserPoolResourceServer.ResourceServerScopeTypeProperty
Implements
CfnUserPoolResourceServer.IResourceServerScopeTypeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserPoolResourceServer.ResourceServerScopeTypeProperty : CfnUserPoolResourceServer.IResourceServerScopeTypeProperty
Syntax (vb)
Public Class CfnUserPoolResourceServer.ResourceServerScopeTypeProperty Implements CfnUserPoolResourceServer.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.AWS.Cognito;

             var resourceServerScopeTypeProperty = new ResourceServerScopeTypeProperty {
                 ScopeDescription = "scopeDescription",
                 ScopeName = "scopeName"
             };

Synopsis

Constructors

ResourceServerScopeTypeProperty()

One custom scope associated with a user pool resource server.

Properties

ScopeDescription

A friendly description of a custom scope.

ScopeName

The name of the scope.

Constructors

ResourceServerScopeTypeProperty()

One custom scope associated with a user pool resource server.

public ResourceServerScopeTypeProperty()
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.AWS.Cognito;

             var resourceServerScopeTypeProperty = new ResourceServerScopeTypeProperty {
                 ScopeDescription = "scopeDescription",
                 ScopeName = "scopeName"
             };

Properties

ScopeDescription

A friendly description of a custom scope.

public string ScopeDescription { get; set; }
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.

public string ScopeName { get; set; }
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

Implements

CfnUserPoolResourceServer.IResourceServerScopeTypeProperty
Back to top Generated by DocFX