Skip to content

List Trust Store Certificates

workspacesweb_list_trust_store_certificates R Documentation

Retrieves a list of trust store certificates

Description

Retrieves a list of trust store certificates.

Usage

workspacesweb_list_trust_store_certificates(trustStoreArn, nextToken,
  maxResults)

Arguments

trustStoreArn

[required] The ARN of the trust store

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.

Value

A list with the following syntax:

list(
  certificateList = list(
    list(
      thumbprint = "string",
      subject = "string",
      issuer = "string",
      notValidBefore = as.POSIXct(
        "2015-01-01"
      ),
      notValidAfter = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  trustStoreArn = "string",
  nextToken = "string"
)

Request syntax

svc$list_trust_store_certificates(
  trustStoreArn = "string",
  nextToken = "string",
  maxResults = 123
)