CfnCertificateAuthorityActivationProps
- class aws_cdk.aws_acmpca.CfnCertificateAuthorityActivationProps(*, certificate, certificate_authority_arn, certificate_chain=None, status=None)
Bases:
object
Properties for defining a
CfnCertificateAuthorityActivation
.- Parameters:
certificate (
str
) – The Base64 PEM-encoded certificate authority certificate.certificate_authority_arn (
str
) – The Amazon Resource Name (ARN) of your private CA.certificate_chain (
Optional
[str
]) – The Base64 PEM-encoded certificate chain that chains up to the root CA certificate that you used to sign your private CA certificate.status (
Optional
[str
]) – Status of your private CA.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_acmpca as acmpca cfn_certificate_authority_activation_props = acmpca.CfnCertificateAuthorityActivationProps( certificate="certificate", certificate_authority_arn="certificateAuthorityArn", # the properties below are optional certificate_chain="certificateChain", status="status" )
Attributes
- certificate
The Base64 PEM-encoded certificate authority certificate.
- certificate_authority_arn
The Amazon Resource Name (ARN) of your private CA.
- certificate_chain
The Base64 PEM-encoded certificate chain that chains up to the root CA certificate that you used to sign your private CA certificate.