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

.NET
Go
Java
Python
TypeScript