Learn R Programming

paws.security.identity (version 0.1.11)

acmpca_get_certificate_authority_csr: Retrieves the certificate signing request (CSR) for your private certificate authority (CA)

Description

Retrieves the certificate signing request (CSR) for your private certificate authority (CA). The CSR is created when you call the create_certificate_authority action. Sign the CSR with your ACM Private CA-hosted or on-premises root or subordinate CA. Then import the signed certificate back into ACM Private CA by calling the import_certificate_authority_certificate action. The CSR is returned as a base64 PEM-encoded string.

Usage

acmpca_get_certificate_authority_csr(CertificateAuthorityArn)

Arguments

CertificateAuthorityArn

[required] The Amazon Resource Name (ARN) that was returned when you called the create_certificate_authority action. This must be of the form:

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

Value

A list with the following syntax:

list(
  Csr = "string"
)

Request syntax

svc$get_certificate_authority_csr(
  CertificateAuthorityArn = "string"
)