Skip to content

List Trust Stores

cloudfront_list_trust_stores R Documentation

Lists trust stores

Description

Lists trust stores.

Usage

cloudfront_list_trust_stores(Marker, MaxItems)

Arguments

Marker

Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

MaxItems

The maximum number of trust stores that you want returned in the response.

Value

A list with the following syntax:

list(
  NextMarker = "string",
  TrustStoreList = list(
    list(
      Id = "string",
      Arn = "string",
      Name = "string",
      Status = "pending"|"active"|"failed",
      NumberOfCaCertificates = 123,
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      Reason = "string",
      ETag = "string"
    )
  )
)

Request syntax

svc$list_trust_stores(
  Marker = "string",
  MaxItems = 123
)