CfnTargetDomainMixinProps

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

Bases: object

Properties for CfnTargetDomainPropsMixin.

Parameters:
  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags for the target domain.

  • target_domain_name (Optional[str]) – Domain name of the target domain.

  • verification_method (Optional[str]) – Verification method 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.cfn_property_mixins import aws_securityagent as securityagent

cfn_target_domain_mixin_props = securityagent.CfnTargetDomainMixinProps(
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    target_domain_name="targetDomainName",
    verification_method="verificationMethod"
)

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