Creates a root or subordinate private certificate authority (CA). You must specify the CA configuration, the certificate revocation list (CRL) configuration, the CA type, and an optional idempotency token to avoid accidental creation of multiple CAs. The CA configuration specifies the name of the algorithm and key size to be used to create the CA private key, the type of signing algorithm that the CA uses, and X.500 subject information. The CRL configuration specifies the CRL expiration period in days (the validity period of the CRL), the Amazon S3 bucket that will contain the CRL, and a CNAME alias for the S3 bucket that is included in certificates issued by the CA. If successful, this action returns the Amazon Resource Name (ARN) of the CA.
acmpca_create_certificate_authority(CertificateAuthorityConfiguration,
RevocationConfiguration, CertificateAuthorityType, IdempotencyToken,
Tags)
[required] Name and bit size of the private key algorithm, the name of the signing algorithm, and X.500 certificate subject information.
Contains a Boolean value that you can use to enable a certification revocation list (CRL) for the CA, the name of the S3 bucket to which ACM Private CA will write the CRL, and an optional CNAME alias that you can use to hide the name of your bucket in the CRL Distribution Points extension of your CA certificate. For more information, see the CrlConfiguration structure.
[required] The type of the certificate authority.
Alphanumeric string that can be used to distinguish between calls to CreateCertificateAuthority. Idempotency tokens time out after five minutes. Therefore, if you call CreateCertificateAuthority multiple times with the same idempotency token within a five minute period, ACM Private CA recognizes that you are requesting only one certificate. As a result, ACM Private CA issues only one. If you change the idempotency token for each call, however, ACM Private CA recognizes that you are requesting multiple certificates.
Key-value pairs that will be attached to the new private CA. You can associate up to 50 tags with a private CA. For information using tags with
IAM to manage permissions, see Controlling Access Using IAM Tags.
svc$create_certificate_authority( CertificateAuthorityConfiguration = list( KeyAlgorithm = "RSA_2048"|"RSA_4096"|"EC_prime256v1"|"EC_secp384r1", SigningAlgorithm = "SHA256WITHECDSA"|"SHA384WITHECDSA"|"SHA512WITHECDSA"|"SHA256WITHRSA"|"SHA384WITHRSA"|"SHA512WITHRSA", Subject = list( Country = "string", Organization = "string", OrganizationalUnit = "string", DistinguishedNameQualifier = "string", State = "string", CommonName = "string", SerialNumber = "string", Locality = "string", Title = "string", Surname = "string", GivenName = "string", Initials = "string", Pseudonym = "string", GenerationQualifier = "string" ) ), RevocationConfiguration = list( CrlConfiguration = list( Enabled = TRUE|FALSE, ExpirationInDays = 123, CustomCname = "string", S3BucketName = "string" ) ), CertificateAuthorityType = "ROOT"|"SUBORDINATE", IdempotencyToken = "string", Tags = list( list( Key = "string", Value = "string" ) ) )