interface CfnDomainVerificationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnDomainVerificationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnDomainVerificationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnDomainVerificationMixinProps |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnDomainVerificationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » CfnDomainVerificationMixinProps |
Properties for CfnDomainVerificationPropsMixin.
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 cfnDomainVerificationMixinProps: vpclattice_mixins.CfnDomainVerificationMixinProps = {
domainName: 'domainName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The domain name being verified. |
| tags? | Cfn[] | The tags associated with the domain verification. |
domainName?
Type:
string
(optional)
The domain name being verified.
tags?
Type:
Cfn[]
(optional)
The tags associated with the domain verification.

.NET
Go
Java
Python
TypeScript