Describe Certificate Authority Audit Report
| acmpca_describe_certificate_authority_audit_report | R Documentation | 
Lists information about a specific audit report created by calling the CreateCertificateAuthorityAuditReport action¶
Description¶
Lists information about a specific audit report created by calling the
create_certificate_authority_audit_report action. Audit information is
created every time the certificate authority (CA) private key is used.
The private key is used when you call the issue_certificate action or
the revoke_certificate action.
Usage¶
acmpca_describe_certificate_authority_audit_report(
  CertificateAuthorityArn, AuditReportId)
Arguments¶
| CertificateAuthorityArn | [required] The Amazon Resource Name (ARN) of the private CA. This must be of the form: 
 | 
| AuditReportId | [required] The report ID returned by calling the
 | 
Value¶
A list with the following syntax:
list(
  AuditReportStatus = "CREATING"|"SUCCESS"|"FAILED",
  S3BucketName = "string",
  S3Key = "string",
  CreatedAt = as.POSIXct(
    "2015-01-01"
  )
)
Request syntax¶
svc$describe_certificate_authority_audit_report(
  CertificateAuthorityArn = "string",
  AuditReportId = "string"
)