aws.acm_pca.get_certificate_authority_certificate
Example SQL Queries
SELECT * FROMaws.acm_pca.get_certificate_authority_certificateWHERE"certificate_authority_arn" = 'VALUE';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.
Table Definition
| Column Name | Column Data Type |
|---|---|
| certificate_authority_arn Required Input Column 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 . | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| certificate Base64-encoded certificate authority (CA) certificate. | VARCHAR |
| certificate_chain Base64-encoded certificate chain that includes any intermediate certificates and chains up to root certificate that you used to sign your private CA certificate. The chain does not include your private CA certificate. If this is a root CA, the value will be null. | VARCHAR |