Skip to content

List Identity Providers

workspacesweb_list_identity_providers R Documentation

Retrieves a list of identity providers for a specific web portal

Description

Retrieves a list of identity providers for a specific web portal.

Usage

workspacesweb_list_identity_providers(nextToken, maxResults, portalArn)

Arguments

nextToken

The pagination token used to retrieve the next page of results for this operation.

maxResults

The maximum number of results to be included in the next page.

portalArn

[required] The ARN of the web portal.

Value

A list with the following syntax:

list(
  nextToken = "string",
  identityProviders = list(
    list(
      identityProviderArn = "string",
      identityProviderName = "string",
      identityProviderType = "SAML"|"Facebook"|"Google"|"LoginWithAmazon"|"SignInWithApple"|"OIDC"
    )
  )
)

Request syntax

svc$list_identity_providers(
  nextToken = "string",
  maxResults = 123,
  portalArn = "string"
)