Skip to content

List Portals

workspacesweb_list_portals R Documentation

Retrieves a list or web portals

Description

Retrieves a list or web portals.

Usage

workspacesweb_list_portals(maxResults, nextToken)

Arguments

maxResults

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

nextToken

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

Value

A list with the following syntax:

list(
  nextToken = "string",
  portals = list(
    list(
      authenticationType = "Standard"|"IAM_Identity_Center",
      browserSettingsArn = "string",
      browserType = "Chrome",
      creationDate = as.POSIXct(
        "2015-01-01"
      ),
      displayName = "string",
      instanceType = "standard.regular"|"standard.large"|"standard.xlarge",
      ipAccessSettingsArn = "string",
      maxConcurrentSessions = 123,
      networkSettingsArn = "string",
      portalArn = "string",
      portalEndpoint = "string",
      portalStatus = "Incomplete"|"Pending"|"Active",
      rendererType = "AppStream",
      trustStoreArn = "string",
      userAccessLoggingSettingsArn = "string",
      userSettingsArn = "string"
    )
  )
)

Request syntax

svc$list_portals(
  maxResults = 123,
  nextToken = "string"
)