interface CfnAcmeEndpointProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CertificateManager.CfnAcmeEndpointProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CfnAcmeEndpointProps |
Java | software.amazon.awscdk.services.certificatemanager.CfnAcmeEndpointProps |
Python | aws_cdk.aws_certificatemanager.CfnAcmeEndpointProps |
TypeScript | aws-cdk-lib » aws_certificatemanager » CfnAcmeEndpointProps |
Properties for defining a CfnAcmeEndpoint.
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 cfnAcmeEndpointProps: certificatemanager.CfnAcmeEndpointProps = {
authorizationBehavior: 'authorizationBehavior',
certificateAuthority: {
publicCertificateAuthority: {
allowedKeyAlgorithms: ['allowedKeyAlgorithms'],
},
},
// the properties below are optional
certificateTags: [{
key: 'key',
value: 'value',
}],
contact: 'contact',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | The authorization behavior for the ACME endpoint. |
| certificate | IResolvable | Certificate | The certificate authority configuration for the ACME endpoint. |
| certificate | IResolvable | (IResolvable | Cfn)[] | Tags applied to certificates issued via this endpoint. |
| contact? | string | Whether contact information is required for the ACME endpoint. |
| tags? | Tags[] | Tags associated with the ACME endpoint. |
authorizationBehavior
Type:
string
The authorization behavior for the ACME endpoint.
certificateAuthority
Type:
IResolvable | Certificate
The certificate authority configuration for the ACME endpoint.
certificateTags?
Type:
IResolvable | (IResolvable | Cfn)[]
(optional)
Tags applied to certificates issued via this endpoint.
contact?
Type:
string
(optional)
Whether contact information is required for the ACME endpoint.
tags?
Type:
Tags[]
(optional)
Tags associated with the ACME endpoint.

.NET
Go
Java
Python
TypeScript