@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-13T20:01:06.121Z") @Stability(value=Stable) public interface CertificationValidationProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.certificatemanager.*;
import software.amazon.awscdk.services.route53.*;
HostedZone hostedZone;
CertificationValidationProps certificationValidationProps = CertificationValidationProps.builder()
.hostedZone(hostedZone)
.hostedZones(Map.of(
"hostedZonesKey", hostedZone))
.method(ValidationMethod.EMAIL)
.validationDomains(Map.of(
"validationDomainsKey", "validationDomains"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CertificationValidationProps.Builder
A builder for
CertificationValidationProps |
static class |
CertificationValidationProps.Jsii$Proxy
An implementation for
CertificationValidationProps |
| Modifier and Type | Method and Description |
|---|---|
static CertificationValidationProps.Builder |
builder() |
default IHostedZone |
getHostedZone()
Hosted zone to use for DNS validation.
|
default Map<String,IHostedZone> |
getHostedZones()
A map of hosted zones to use for DNS validation.
|
default ValidationMethod |
getMethod()
Validation method.
|
default Map<String,String> |
getValidationDomains()
Validation domains to use for email validation.
|
@Stability(value=Stable) @Nullable default IHostedZone getHostedZone()
Default: - use email validation
@Stability(value=Stable) @Nullable default Map<String,IHostedZone> getHostedZones()
Default: - use `hostedZone`
@Stability(value=Stable) @Nullable default ValidationMethod getMethod()
Default: ValidationMethod.EMAIL
@Stability(value=Stable) @Nullable default Map<String,String> getValidationDomains()
Default: - Apex domain
@Stability(value=Stable) static CertificationValidationProps.Builder builder()
Copyright © 2022. All rights reserved.