Interface CfnCertificateAuthorityActivationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCertificateAuthorityActivationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.283Z")
@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();
-
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. -
getCertificateAuthorityArn
The Amazon Resource Name (ARN) of your private CA. -
getCertificateChain
The Base64 PEM-encoded certificate chain that chains up to the root CA certificate that you used to sign your private CA certificate. -
getStatus
Status of your private CA. -
builder
-