Learn R Programming

paws.security.identity (version 0.1.12)

cognitoidentityprovider_list_resource_servers: Lists the resource servers for a user pool

Description

Lists the resource servers for a user pool.

Usage

cognitoidentityprovider_list_resource_servers(UserPoolId, MaxResults,
  NextToken)

Value

A list with the following syntax:

list(
  ResourceServers = list(
    list(
      UserPoolId = "string",
      Identifier = "string",
      Name = "string",
      Scopes = list(
        list(
          ScopeName = "string",
          ScopeDescription = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Arguments

UserPoolId

[required] The user pool ID for the user pool.

MaxResults

The maximum number of resource servers to return.

NextToken

A pagination token.

Request syntax

svc$list_resource_servers(
  UserPoolId = "string",
  MaxResults = 123,
  NextToken = "string"
)