Interface CfnCertificateAuthorityActivationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCertificateAuthorityActivationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:31.188Z")
@Stability(Stable)
public interface CfnCertificateAuthorityActivationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCertificateAuthorityActivation.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.acmpca.*;
CfnCertificateAuthorityActivationProps cfnCertificateAuthorityActivationProps = CfnCertificateAuthorityActivationProps.builder()
.certificate("certificate")
.certificateAuthorityArn("certificateAuthorityArn")
// the properties below are optional
.certificateChain("certificateChain")
.status("status")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCertificateAuthorityActivationPropsstatic final classAn implementation forCfnCertificateAuthorityActivationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Base64 PEM-encoded certificate authority certificate.The Amazon Resource Name (ARN) of your private CA.default StringThe Base64 PEM-encoded certificate chain that chains up to the root CA certificate that you used to sign your private CA certificate.default StringStatus of your private CA.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificate
The Base64 PEM-encoded certificate authority certificate.- See Also:
-
getCertificateAuthorityArn
The Amazon Resource Name (ARN) of your private CA.- See Also:
-
getCertificateChain
The Base64 PEM-encoded certificate chain that chains up to the root CA certificate that you used to sign your private CA certificate.- See Also:
-
getStatus
Status of your private CA.- See Also:
-
builder
-