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

.NET
Go
Java
Python
TypeScript