Learn R Programming

paws.security.identity (version 0.1.12)

cognitoidentityprovider_list_user_pools: Lists the user pools associated with an AWS account

Description

Lists the user pools associated with an AWS account.

Usage

cognitoidentityprovider_list_user_pools(NextToken, MaxResults)

Value

A list with the following syntax:

list(
  UserPools = list(
    list(
      Id = "string",
      Name = "string",
      LambdaConfig = list(
        PreSignUp = "string",
        CustomMessage = "string",
        PostConfirmation = "string",
        PreAuthentication = "string",
        PostAuthentication = "string",
        DefineAuthChallenge = "string",
        CreateAuthChallenge = "string",
        VerifyAuthChallengeResponse = "string",
        PreTokenGeneration = "string",
        UserMigration = "string",
        CustomSMSSender = list(
          LambdaVersion = "V1_0",
          LambdaArn = "string"
        ),
        CustomEmailSender = list(
          LambdaVersion = "V1_0",
          LambdaArn = "string"
        ),
        KMSKeyID = "string"
      ),
      Status = "Enabled"|"Disabled",
      LastModifiedDate = as.POSIXct(
        "2015-01-01"
      ),
      CreationDate = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Arguments

NextToken

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

MaxResults

[required] The maximum number of results you want the request to return when listing the user pools.

Request syntax

svc$list_user_pools(
  NextToken = "string",
  MaxResults = 123
)