The CDK Construct Library for AWS::ACMPCA
Project description
AWS::ACMPCA Construct Library
---This module is part of the AWS Cloud Development Kit project.
import aws_cdk.aws_acmpca as acmpca
Certificate Authority
This package contains a CertificateAuthority
class.
At the moment, you cannot create new Authorities using it,
but you can import existing ones using the fromCertificateAuthorityArn
static method:
# Example automatically generated from non-compiling source. May contain errors.
certificate_authority = acmpca.CertificateAuthority.from_certificate_authority_arn(self, "CA", "arn:aws:acm-pca:us-east-1:123456789012:certificate-authority/023077d8-2bfa-4eb0-8f22-05c96deade77")
Low-level Cfn*
classes
You can always use the low-level classes
(starting with Cfn*
) to create resources like the Certificate Authority:
# Example automatically generated from non-compiling source. May contain errors.
cfn_certificate_authority = acmpca.CfnCertificateAuthority(self, "CA",
type="ROOT",
key_algorithm="RSA_2048",
signing_algorithm="SHA256WITHRSA",
subject={
"country": "US",
"organization": "string",
"organizational_unit": "string",
"distinguished_name_qualifier": "string",
"state": "string",
"common_name": "123",
"serial_number": "string",
"locality": "string",
"title": "string",
"surname": "string",
"given_name": "string",
"initials": "DG",
"pseudonym": "string",
"generation_qualifier": "DBG"
}
)
If you need to pass the higher-level ICertificateAuthority
somewhere,
you can get it from the lower-level CfnCertificateAuthority
using the same fromCertificateAuthorityArn
method:
# Example automatically generated from non-compiling source. May contain errors.
certificate_authority = acmpca.CertificateAuthority.from_certificate_authority_arn(self, "CertificateAuthority", cfn_certificate_authority.attr_arn)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aws-cdk.aws-acmpca-1.136.0.tar.gz
(103.1 kB
view hashes)
Built Distribution
Close
Hashes for aws-cdk.aws-acmpca-1.136.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82153ff523f578a2038c258f01244768b012f23d8a5f376f164dc8aa8cf80922 |
|
MD5 | edafdf90822d8c16b2caca3270725162 |
|
BLAKE2b-256 | 88d6afdd0bdbff4eb2ff83beeb7631d191300e0f9635c4b045710c3e2db01706 |
Close
Hashes for aws_cdk.aws_acmpca-1.136.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0476932c51e3cf1f6bcc9686dbd96719eec2aa732088403122227d8e122adaa3 |
|
MD5 | 0d189d56958ca6e3ae5c79b2084f01f1 |
|
BLAKE2b-256 | b0b1db4230c557a6756f1eb5553a419f5a2ea4bb17fe2ed19d29c9aea8c71b0c |