Skip to content

Get Trust Store Certificate

workspacesweb_get_trust_store_certificate R Documentation

Gets the trust store certificate

Description

Gets the trust store certificate.

Usage

workspacesweb_get_trust_store_certificate(trustStoreArn, thumbprint)

Arguments

trustStoreArn

[required] The ARN of the trust store certificate.

thumbprint

[required] The thumbprint of the trust store certificate.

Value

A list with the following syntax:

list(
  trustStoreArn = "string",
  certificate = list(
    thumbprint = "string",
    subject = "string",
    issuer = "string",
    notValidBefore = as.POSIXct(
      "2015-01-01"
    ),
    notValidAfter = as.POSIXct(
      "2015-01-01"
    ),
    body = raw
  )
)

Request syntax

svc$get_trust_store_certificate(
  trustStoreArn = "string",
  thumbprint = "string"
)