Skip to content

List Website Authorization Providers

worklink_list_website_authorization_providers R Documentation

Retrieves a list of website authorization providers associated with a specified fleet

Description

Retrieves a list of website authorization providers associated with a specified fleet.

Usage

worklink_list_website_authorization_providers(FleetArn, NextToken,
  MaxResults)

Arguments

FleetArn

[required] The ARN of the fleet.

NextToken

The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

MaxResults

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

Value

A list with the following syntax:

list(
  WebsiteAuthorizationProviders = list(
    list(
      AuthorizationProviderId = "string",
      AuthorizationProviderType = "SAML",
      DomainName = "string",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_website_authorization_providers(
  FleetArn = "string",
  NextToken = "string",
  MaxResults = 123
)