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(thumbprint, trustStoreArn)

Arguments

thumbprint

[required] The thumbprint of the trust store certificate.

trustStoreArn

[required] The ARN of the trust store certificate.

Value

A list with the following syntax:

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

Request syntax

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