{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-private-ca/refs/heads/main/json-schema/amazon-private-ca-import-certificate-authority-certificate-request-schema.json", "title": "ImportCertificateAuthorityCertificateRequest", "description": "ImportCertificateAuthorityCertificateRequest schema from Amazon Private CA API", "type": "object", "properties": { "CertificateAuthorityArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "
The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
A PEM-encoded file that contains all of your certificates, other than the certificate you're importing, chaining up to your root CA. Your Amazon Web Services Private CA-hosted or on-premises root certificate is the last in the chain, and each certificate in the chain signs the one preceding.
This parameter must be supplied when you import a subordinate CA. When you import a root CA, there is no chain.
" } ] } }, "required": [ "CertificateAuthorityArn", "Certificate" ] }