Learn R Programming

paws.security.identity (version 0.1.12)

cognitoidentityprovider_list_identity_providers: Lists information about all identity providers for a user pool

Description

Lists information about all identity providers for a user pool.

Usage

cognitoidentityprovider_list_identity_providers(UserPoolId, MaxResults,
  NextToken)

Value

A list with the following syntax:

list(
  Providers = list(
    list(
      ProviderName = "string",
      ProviderType = "SAML"|"Facebook"|"Google"|"LoginWithAmazon"|"SignInWithApple"|"OIDC",
      LastModifiedDate = as.POSIXct(
        "2015-01-01"
      ),
      CreationDate = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Arguments

UserPoolId

[required] The user pool ID.

MaxResults

The maximum number of identity providers to return.

NextToken

A pagination token.

Request syntax

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