Skip to content

List Crls

iamrolesanywhere_list_crls R Documentation

Lists all certificate revocation lists (CRL) in the authenticated account and Amazon Web Services Region

Description

Lists all certificate revocation lists (CRL) in the authenticated account and Amazon Web Services Region.

Required permissions: rolesanywhere:ListCrls.

Usage

iamrolesanywhere_list_crls(nextToken, pageSize)

Arguments

nextToken

A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.

pageSize

The number of resources in the paginated list.

Value

A list with the following syntax:

list(
  crls = list(
    list(
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      crlArn = "string",
      crlData = raw,
      crlId = "string",
      enabled = TRUE|FALSE,
      name = "string",
      trustAnchorArn = "string",
      updatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_crls(
  nextToken = "string",
  pageSize = 123
)