Skip to content

List Website Certificate Authorities

worklink_list_website_certificate_authorities R Documentation

Retrieves a list of certificate authorities added for the current account and Region

Description

Retrieves a list of certificate authorities added for the current account and Region.

Usage

worklink_list_website_certificate_authorities(FleetArn, MaxResults,
  NextToken)

Arguments

FleetArn

[required] The ARN of the fleet.

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. If this value is null, it retrieves the first page.

Value

A list with the following syntax:

list(
  WebsiteCertificateAuthorities = list(
    list(
      WebsiteCaId = "string",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      DisplayName = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

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