CfnDomainMixinProps

class aws_cdk.mixins_preview.aws_cases.mixins.CfnDomainMixinProps(*, name=None, tags=None)

Bases: object

Properties for CfnDomainPropsMixin.

Parameters:
  • name (Optional[str]) – The name of the domain.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.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.mixins_preview.aws_cases import mixins as cases_mixins

cfn_domain_mixin_props = cases_mixins.CfnDomainMixinProps(
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

name

The name of the domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html#cfn-cases-domain-name

tags

An array of key-value pairs to apply to this resource.

See:

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