aws-cdk-lib.aws_acmpca.CfnCertificateAuthorityActivationProps

interface CfnCertificateAuthorityActivationProps

LanguageType name
.NETAmazon.CDK.AWS.ACMPCA.CfnCertificateAuthorityActivationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsacmpca#CfnCertificateAuthorityActivationProps
Javasoftware.amazon.awscdk.services.acmpca.CfnCertificateAuthorityActivationProps
Pythonaws_cdk.aws_acmpca.CfnCertificateAuthorityActivationProps
TypeScript aws-cdk-lib » aws_acmpca » CfnCertificateAuthorityActivationProps

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 { aws_acmpca as acmpca } from 'aws-cdk-lib';
const cfnCertificateAuthorityActivationProps: acmpca.CfnCertificateAuthorityActivationProps = {
  certificate: 'certificate',
  certificateAuthorityArn: 'certificateAuthorityArn',

  // the properties below are optional
  certificateChain: 'certificateChain',
  status: 'status',
};

Properties

NameTypeDescription
certificatestringThe Base64 PEM-encoded certificate authority certificate.
certificateAuthorityArnstringThe Amazon Resource Name (ARN) of your private CA.
certificateChain?stringThe Base64 PEM-encoded certificate chain that chains up to the root CA certificate that you used to sign your private CA certificate.
status?stringStatus of your private CA.

certificate

Type: string

The Base64 PEM-encoded certificate authority certificate.


certificateAuthorityArn

Type: string

The Amazon Resource Name (ARN) of your private CA.


certificateChain?

Type: string (optional)

The Base64 PEM-encoded certificate chain that chains up to the root CA certificate that you used to sign your private CA certificate.


status?

Type: string (optional)

Status of your private CA.