interface CfnTargetDomainProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnTargetDomainProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnTargetDomainProps |
Java | software.amazon.awscdk.services.securityagent.CfnTargetDomainProps |
Python | aws_cdk.aws_securityagent.CfnTargetDomainProps |
TypeScript | aws-cdk-lib » aws_securityagent » CfnTargetDomainProps |
Properties for defining a CfnTargetDomain.
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-lib';
const cfnTargetDomainProps: securityagent.CfnTargetDomainProps = {
targetDomainName: 'targetDomainName',
verificationMethod: 'verificationMethod',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string | Domain name of the target domain. |
| verification | string | Verification method for the target domain. |
| tags? | Cfn[] | Tags for the target domain. |
targetDomainName
Type:
string
Domain name of the target domain.
verificationMethod
Type:
string
Verification method for the target domain.
tags?
Type:
Cfn[]
(optional)
Tags for the target domain.

.NET
Go
Java
Python
TypeScript