Skip to content

Get Trust Store

cloudfront_get_trust_store R Documentation

Gets a trust store

Description

Gets a trust store.

Usage

cloudfront_get_trust_store(Identifier)

Arguments

Identifier

[required] The trust store's identifier.

Value

A list with the following syntax:

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

Request syntax

svc$get_trust_store(
  Identifier = "string"
)