interface HttpVerificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnTargetDomain.HttpVerificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnTargetDomain_HttpVerificationProperty |
Java | software.amazon.awscdk.services.securityagent.CfnTargetDomain.HttpVerificationProperty |
Python | aws_cdk.aws_securityagent.CfnTargetDomain.HttpVerificationProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnTargetDomain » HttpVerificationProperty |
Represents HTTP route verification details.
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 httpVerificationProperty: securityagent.CfnTargetDomain.HttpVerificationProperty = {
routePath: 'routePath',
token: 'token',
};
Properties
| Name | Type | Description |
|---|---|---|
| route | string | Route path where verification token should be placed. |
| token? | string | Token used to verify domain ownership. |
routePath?
Type:
string
(optional)
Route path where verification token should be placed.
token?
Type:
string
(optional)
Token used to verify domain ownership.

.NET
Go
Java
Python
TypeScript