Skip to content

List Identity Pool Usage

cognitosync_list_identity_pool_usage R Documentation

Gets a list of identity pools registered with Cognito

Description

Gets a list of identity pools registered with Cognito.

ListIdentityPoolUsage can only be called with developer credentials. You cannot make this API call with the temporary user credentials provided by Cognito Identity.

Usage

cognitosync_list_identity_pool_usage(NextToken, MaxResults)

Arguments

NextToken

A pagination token for obtaining the next page of results.

MaxResults

The maximum number of results to be returned.

Value

A list with the following syntax:

list(
  IdentityPoolUsages = list(
    list(
      IdentityPoolId = "string",
      SyncSessionsCount = 123,
      DataStorage = 123,
      LastModifiedDate = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  MaxResults = 123,
  Count = 123,
  NextToken = "string"
)

Request syntax

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