interface PublicCertificateAuthorityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CertificateManager.CfnAcmeEndpoint.PublicCertificateAuthorityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CfnAcmeEndpoint_PublicCertificateAuthorityProperty |
Java | software.amazon.awscdk.services.certificatemanager.CfnAcmeEndpoint.PublicCertificateAuthorityProperty |
Python | aws_cdk.aws_certificatemanager.CfnAcmeEndpoint.PublicCertificateAuthorityProperty |
TypeScript | aws-cdk-lib » aws_certificatemanager » CfnAcmeEndpoint » PublicCertificateAuthorityProperty |
Configuration for the public certificate authority.
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 publicCertificateAuthorityProperty: certificatemanager.CfnAcmeEndpoint.PublicCertificateAuthorityProperty = {
allowedKeyAlgorithms: ['allowedKeyAlgorithms'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | The allowed key algorithms for certificates issued via this endpoint. |
allowedKeyAlgorithms?
Type:
string[]
(optional)
The allowed key algorithms for certificates issued via this endpoint.

.NET
Go
Java
Python
TypeScript