interface TxtMethodConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnDomainVerificationPropsMixin.TxtMethodConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnDomainVerificationPropsMixin_TxtMethodConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnDomainVerificationPropsMixin.TxtMethodConfigProperty |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnDomainVerificationPropsMixin.TxtMethodConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » 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 { mixins as vpclattice_mixins } from '@aws-cdk/mixins-preview/aws-vpclattice';
const txtMethodConfigProperty: vpclattice_mixins.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