interface CertificationValidationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CertificateManager.CertificationValidationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CertificationValidationProps |
Java | software.amazon.awscdk.services.certificatemanager.CertificationValidationProps |
Python | aws_cdk.aws_certificatemanager.CertificationValidationProps |
TypeScript (source) | aws-cdk-lib » aws_certificatemanager » CertificationValidationProps |
Properties for certificate validation.
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';
import { aws_route53 as route53 } from 'aws-cdk-lib';
declare const hostedZone: route53.HostedZone;
const certificationValidationProps: certificatemanager.CertificationValidationProps = {
hostedZone: hostedZone,
hostedZones: {
hostedZonesKey: hostedZone,
},
method: certificatemanager.ValidationMethod.EMAIL,
validationDomains: {
validationDomainsKey: 'validationDomains',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| hosted | IHosted | Hosted zone to use for DNS validation. |
| hosted | { [string]: IHosted } | A map of hosted zones to use for DNS validation. |
| method? | Validation | Validation method. |
| validation | { [string]: string } | Validation domains to use for email validation. |
hostedZone?
Type:
IHosted
(optional, default: use email validation)
Hosted zone to use for DNS validation.
hostedZones?
Type:
{ [string]: IHosted }
(optional, default: use hostedZone)
A map of hosted zones to use for DNS validation.
method?
Type:
Validation
(optional, default: ValidationMethod.EMAIL)
Validation method.
validationDomains?
Type:
{ [string]: string }
(optional, default: Apex domain)
Validation domains to use for email validation.

.NET
Go
Java
Python
TypeScript (