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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTargetDomain.VerificationDetailsPropertystatic final classAn implementation forCfnTargetDomain.VerificationDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDnsTxt
Represents DNS TXT verification details.Returns union: either
IResolvableorCfnTargetDomain.DnsVerificationProperty- See Also:
-
getHttpRoute
Represents HTTP route verification details.Returns union: either
IResolvableorCfnTargetDomain.HttpVerificationProperty- See Also:
-
getMethod
Type of domain ownership verification method.- See Also:
-
builder
-