Interface CfnTargetDomain.VerificationDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTargetDomain.VerificationDetailsProperty.Jsii$Proxy
Enclosing class:
CfnTargetDomain

@Stability(Stable) public static interface CfnTargetDomain.VerificationDetailsProperty extends software.amazon.jsii.JsiiSerializable
Verification details to verify registered target domain.

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.securityagent.*;
 VerificationDetailsProperty verificationDetailsProperty = VerificationDetailsProperty.builder()
         .dnsTxt(DnsVerificationProperty.builder()
                 .dnsRecordName("dnsRecordName")
                 .dnsRecordType("dnsRecordType")
                 .token("token")
                 .build())
         .httpRoute(HttpVerificationProperty.builder()
                 .routePath("routePath")
                 .token("token")
                 .build())
         .method("method")
         .build();
 

See Also: