CfnTargetDomainProps

class aws_cdk.aws_securityagent.CfnTargetDomainProps(*, target_domain_name, verification_method, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-targetdomain.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-targetdomain.html#cfn-securityagent-targetdomain-tags

target_domain_name

Domain name of the target domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-targetdomain.html#cfn-securityagent-targetdomain-targetdomainname

verification_method

Verification method for the target domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-targetdomain.html#cfn-securityagent-targetdomain-verificationmethod