CfnCaseMixinProps

class aws_cdk.cfn_property_mixins.aws_cases.CfnCaseMixinProps(*, customer_id=None, domain_id=None, tags=None, template_id=None, title=None)

Bases: object

Properties for CfnCasePropsMixin.

Parameters:
  • customer_id (Optional[str]) – The full customer profile ARN for the case.

  • domain_id (Optional[str]) – The unique identifier of the Cases domain.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of tags for the case.

  • template_id (Optional[str]) – A unique identifier of a template.

  • title (Optional[str]) – The title of the case.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-case.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_cases as cases

cfn_case_mixin_props = cases.CfnCaseMixinProps(
    customer_id="customerId",
    domain_id="domainId",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    template_id="templateId",
    title="title"
)

Attributes

customer_id

The full customer profile ARN for the case.

See:

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

domain_id

The unique identifier of the Cases domain.

See:

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

tags

A list of tags for the case.

See:

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

template_id

A unique identifier of a template.

See:

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

title

The title of the case.

See:

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