interface CertificateAuthorityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CertificateManager.CfnAcmeEndpoint.CertificateAuthorityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CfnAcmeEndpoint_CertificateAuthorityProperty |
Java | software.amazon.awscdk.services.certificatemanager.CfnAcmeEndpoint.CertificateAuthorityProperty |
Python | aws_cdk.aws_certificatemanager.CfnAcmeEndpoint.CertificateAuthorityProperty |
TypeScript | aws-cdk-lib » aws_certificatemanager » CfnAcmeEndpoint » CertificateAuthorityProperty |
The certificate authority configuration for the ACME endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_certificatemanager as certificatemanager } from 'aws-cdk-lib';
const certificateAuthorityProperty: certificatemanager.CfnAcmeEndpoint.CertificateAuthorityProperty = {
publicCertificateAuthority: {
allowedKeyAlgorithms: ['allowedKeyAlgorithms'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| public | IResolvable | Public | Configuration for the public certificate authority. |
publicCertificateAuthority
Type:
IResolvable | Public
Configuration for the public certificate authority.

.NET
Go
Java
Python
TypeScript