interface CfnAcmeDomainValidationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CertificateManager.CfnAcmeDomainValidationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscertificatemanager#CfnAcmeDomainValidationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.certificatemanager.CfnAcmeDomainValidationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_certificatemanager.CfnAcmeDomainValidationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_certificatemanager » CfnAcmeDomainValidationMixinProps |
Properties for CfnAcmeDomainValidationPropsMixin.
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/cfn-property-mixins';
const cfnAcmeDomainValidationMixinProps: certificatemanager.CfnAcmeDomainValidationMixinProps = {
acmeEndpointArn: 'acmeEndpointArn',
domainName: 'domainName',
prevalidationOptions: {
dnsPrevalidation: {
domainScope: {
exactDomain: 'exactDomain',
subdomains: 'subdomains',
wildcards: 'wildcards',
},
hostedZoneId: 'hostedZoneId',
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| acme | string | The ARN of the ACME endpoint this domain validation is associated with. |
| domain | string | The domain name to validate. |
| prevalidation | IResolvable | Prevalidation | Prevalidation method configuration. |
| tags? | Tags[] | Tags associated with the domain validation. |
acmeEndpointArn?
Type:
string
(optional)
The ARN of the ACME endpoint this domain validation is associated with.
domainName?
Type:
string
(optional)
The domain name to validate.
prevalidationOptions?
Type:
IResolvable | Prevalidation
(optional)
Prevalidation method configuration.
Currently only DNS-based prevalidation is supported.
tags?
Type:
Tags[]
(optional)
Tags associated with the domain validation.

.NET
Go
Java
Python
TypeScript