interface CfnTargetDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnTargetDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnTargetDomainMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnTargetDomainMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnTargetDomainMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnTargetDomainMixinProps |
Properties for CfnTargetDomainPropsMixin.
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 cfnTargetDomainMixinProps: securityagent.CfnTargetDomainMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
targetDomainName: 'targetDomainName',
verificationMethod: 'verificationMethod',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | Tags for the target domain. |
| target | string | Domain name of the target domain. |
| verification | string | Verification method for the target domain. |
tags?
Type:
Cfn[]
(optional)
Tags for the target domain.
targetDomainName?
Type:
string
(optional)
Domain name of the target domain.
verificationMethod?
Type:
string
(optional)
Verification method for the target domain.

.NET
Go
Java
Python
TypeScript