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.190.0.tar.gz
(198.8 kB
view hashes)
Built Distribution
Close
Hashes for aws-cdk.aws-acmpca-1.190.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | eca81aa313f05dfb3101f910114b343f384d50e6ac37e50cc52de37c3014d3f2 |
|
MD5 | eb4f7648b778124e7d8a0a9ae23a5c31 |
|
BLAKE2b-256 | 489ed14a28a1894efbca7cdcad6a13f17cb335dd4cbffa58ac3873300826737c |
Close
Hashes for aws_cdk.aws_acmpca-1.190.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a7ea2038e0075a682490620f2570c92eb3b72e342ffcd30b9f9700b141fb390 |
|
MD5 | 48cfef1fb58b2a938ae548e303f2343e |
|
BLAKE2b-256 | 1c323450fcfddcd5a46cfcf410027dfafef8587e9057bdc2ef0a95f535c7ac44 |