interface TxtMethodConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.VpcLattice.CfnDomainVerificationPropsMixin.TxtMethodConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsvpclattice#CfnDomainVerificationPropsMixin_TxtMethodConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.vpclattice.CfnDomainVerificationPropsMixin.TxtMethodConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_vpclattice.CfnDomainVerificationPropsMixin.TxtMethodConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_vpclattice » CfnDomainVerificationPropsMixin » TxtMethodConfigProperty |
Configuration for TXT record-based domain verification method.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_vpclattice as vpclattice } from '@aws-cdk/cfn-property-mixins';
const txtMethodConfigProperty: vpclattice.CfnDomainVerificationPropsMixin.TxtMethodConfigProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the TXT record that must be created for domain verification. |
| value? | string | The value that must be added to the TXT record for domain verification. |
name?
Type:
string
(optional)
The name of the TXT record that must be created for domain verification.
value?
Type:
string
(optional)
The value that must be added to the TXT record for domain verification.

.NET
Go
Java
Python
TypeScript