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.184.0.tar.gz
(193.1 kB
view hashes)
Built Distribution
Close
Hashes for aws-cdk.aws-acmpca-1.184.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c351d89a4d44e670a9a83e15f171d87e635a5e9e1344e131a1d3e2e5a636c06b |
|
MD5 | 5ddcf35b0e6873a45d53bfaba8fbc41c |
|
BLAKE2b-256 | 732132510ae68559228006347319fd58e163e0ed38072e81a641510e8113cfe8 |
Close
Hashes for aws_cdk.aws_acmpca-1.184.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82778ba67510527d5ddaef1adf9dbe94ae200f99f32bef8ea0d5c98baf08bf6a |
|
MD5 | 26a3981c83c66fb09b5bae5cf4e599dc |
|
BLAKE2b-256 | 1d273d493d76e5d82f09facb7ba30c3c209c16d92262b955efb1d39678786f1e |