CfnTargetDomainProps
- class aws_cdk.aws_securityagent.CfnTargetDomainProps(*, target_domain_name, verification_method, tags=None)
Bases:
objectProperties for defining a
CfnTargetDomain.- Parameters:
target_domain_name (
str) – Domain name of the target domain.verification_method (
str) – Verification method for the target domain.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags for the target domain.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_securityagent as securityagent cfn_target_domain_props = securityagent.CfnTargetDomainProps( target_domain_name="targetDomainName", verification_method="verificationMethod", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- tags
Tags for the target domain.
- target_domain_name
Domain name of the target domain.
- verification_method
Verification method for the target domain.