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.139.0.tar.gz
(152.0 kB
view hashes)
Built Distribution
Close
Hashes for aws-cdk.aws-acmpca-1.139.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f86570b878647b9160e7eeb5d55df0994700e60f9a2a2ba94f8cc8c4c934af77 |
|
MD5 | 16789bf6c64b485855ed27ec4694501b |
|
BLAKE2b-256 | 05cb1823ab50fa0fb5758284db4d4154e9f2aeb073f00e44e1e5da4845d21ac7 |
Close
Hashes for aws_cdk.aws_acmpca-1.139.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1f2daac7b497221b96f6a1c6a5e44ac71b4b5d7a145743fd467948e9f5316a8 |
|
MD5 | 696c08ecd3df104b53b4933ac74ecf5d |
|
BLAKE2b-256 | ffdf1fe7b0fd1546d736db2c67aa00db0411eb3932ec12d3a49894f873fee605 |