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:
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:
cfn_certificate_authority = acmpca.CfnCertificateAuthority(self, "CA",
type="ROOT",
key_algorithm="RSA_2048",
signing_algorithm="SHA256WITHRSA",
subject=acmpca.CfnCertificateAuthority.SubjectProperty(
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:
# cfn_certificate_authority: acmpca.CfnCertificateAuthority
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.174.0.tar.gz
(183.4 kB
view hashes)
Built Distribution
Close
Hashes for aws-cdk.aws-acmpca-1.174.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6abec8fac609dfaf5ae27b2d6faadfe37f951da25ec9ccf75126782a7fd8a9e |
|
MD5 | e46d79d8fae5d7bfd2d9b8c6b56c5d57 |
|
BLAKE2b-256 | ced97240efad6119cbaad44b1aa1d93ae2584811fcdd1d408d55825651d15258 |
Close
Hashes for aws_cdk.aws_acmpca-1.174.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 933fa96587212613ab6fb7e07123b3d4a38e9183ed28a07879c12fefea3cb0de |
|
MD5 | c614883f0020605d42d8a403f6d459ce |
|
BLAKE2b-256 | b41a25f1dfeb04270637d944eaaa2efdbc0216633d71d0de0a34e9bb2dd9e1d8 |