interface CertificateReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.ACMPCA.CertificateReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsacmpca#CertificateReference | 
|  Java | software.amazon.awscdk.services.acmpca.CertificateReference | 
|  Python | aws_cdk.aws_acmpca.CertificateReference | 
|  TypeScript | aws-cdk-lib»aws_acmpca»CertificateReference | 
A reference to a Certificate resource.
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 certificateReference: acmpca.CertificateReference = {
  certificateArn: 'certificateArn',
  certificateAuthorityArn: 'certificateAuthorityArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| certificate | string | The Arn of the Certificate resource. | 
| certificate | string | The CertificateAuthorityArn of the Certificate resource. | 
certificateArn
Type:
string
The Arn of the Certificate resource.
certificateAuthorityArn
Type:
string
The CertificateAuthorityArn of the Certificate resource.
