Table of Contents

Class CfnUserPoolResourceServerProps

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

Properties for defining a CfnUserPoolResourceServer.

public class CfnUserPoolResourceServerProps : ICfnUserPoolResourceServerProps
Inheritance
CfnUserPoolResourceServerProps
Implements
Inherited Members

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

Constructors

CfnUserPoolResourceServerProps()

public CfnUserPoolResourceServerProps()

Properties

Identifier

A unique resource server identifier for the resource server.

public string Identifier { get; set; }

Property Value

string

Remarks

This could be an HTTPS endpoint where the resource server is located. For example: https://my-weather-api.example.com .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier

Name

A friendly name for the resource server.

public string Name { get; set; }

Property Value

string

Remarks

Scopes

A list of scopes.

public object? Scopes { get; set; }

Property Value

object

Remarks

UserPoolId

The user pool ID for the user pool.

public string UserPoolId { get; set; }

Property Value

string

Remarks