interface DnsVerificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnTargetDomainPropsMixin.DnsVerificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnTargetDomainPropsMixin_DnsVerificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnTargetDomainPropsMixin.DnsVerificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnTargetDomainPropsMixin.DnsVerificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnTargetDomainPropsMixin » DnsVerificationProperty |
Represents DNS TXT 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/cfn-property-mixins';
const dnsVerificationProperty: securityagent.CfnTargetDomainPropsMixin.DnsVerificationProperty = {
dnsRecordName: 'dnsRecordName',
dnsRecordType: 'dnsRecordType',
token: 'token',
};
Properties
| Name | Type | Description |
|---|---|---|
| dns | string | Record name to be added in DNS for target domain. |
| dns | string | Type of record to be added in DNS for target domain. |
| token? | string | Token used to verify domain ownership. |
dnsRecordName?
Type:
string
(optional)
Record name to be added in DNS for target domain.
dnsRecordType?
Type:
string
(optional)
Type of record to be added in DNS for target domain.
token?
Type:
string
(optional)
Token used to verify domain ownership.

.NET
Go
Java
Python
TypeScript