Learn R Programming

paws.security.identity (version 0.1.12)

acmpca_get_certificate_authority_certificate: Retrieves the certificate and certificate chain for your private certificate authority (CA) or one that has been shared with you

Description

Retrieves the certificate and certificate chain for your private certificate authority (CA) or one that has been shared with you. Both the certificate and the chain are base64 PEM-encoded. The chain does not include the CA certificate. Each certificate in the chain signs the one before it.

Usage

acmpca_get_certificate_authority_certificate(CertificateAuthorityArn)

Value

A list with the following syntax:

list(
  Certificate = "string",
  CertificateChain = "string"
)

Arguments

CertificateAuthorityArn

[required] The Amazon Resource Name (ARN) of your private CA. This is of the form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012 .

Request syntax

svc$get_certificate_authority_certificate(
  CertificateAuthorityArn = "string"
)