interface VerificationDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnTargetDomain.VerificationDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnTargetDomain_VerificationDetailsProperty |
Java | software.amazon.awscdk.services.securityagent.CfnTargetDomain.VerificationDetailsProperty |
Python | aws_cdk.aws_securityagent.CfnTargetDomain.VerificationDetailsProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnTargetDomain » VerificationDetailsProperty |
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 { aws_securityagent as securityagent } from 'aws-cdk-lib';
const verificationDetailsProperty: securityagent.CfnTargetDomain.VerificationDetailsProperty = {
dnsTxt: {
dnsRecordName: 'dnsRecordName',
dnsRecordType: 'dnsRecordType',
token: 'token',
},
httpRoute: {
routePath: 'routePath',
token: 'token',
},
method: 'method',
};
Properties
| Name | Type | Description |
|---|---|---|
| dns | IResolvable | Dns | Represents DNS TXT verification details. |
| http | IResolvable | Http | Represents HTTP route verification details. |
| method? | string | Type of domain ownership verification method. |
dnsTxt?
Type:
IResolvable | Dns
(optional)
Represents DNS TXT verification details.
httpRoute?
Type:
IResolvable | Http
(optional)
Represents HTTP route verification details.
method?
Type:
string
(optional)
Type of domain ownership verification method.

.NET
Go
Java
Python
TypeScript