interface CertificateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ACMPCA.CertificateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsacmpca#CertificateReference |
Java | software.amazon.awscdk.interfaces.acmpca.CertificateReference |
Python | aws_cdk.interfaces.aws_acmpca.CertificateReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_acmpca } from 'aws-cdk-lib/interfaces';
const certificateReference: interfaces_aws_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.

.NET
Go
Java
Python
TypeScript