CfnCaseProps
- class aws_cdk.aws_cases.CfnCaseProps(*, customer_id, domain_id, template_id, title, tags=None)
Bases:
objectProperties for defining a
CfnCase.- Parameters:
customer_id (
str) – The full customer profile ARN for the case.domain_id (
str) – The unique identifier of the Cases domain.template_id (
str) – A unique identifier of a template.title (
str) – The title of the case.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of tags for 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 import aws_cases as cases cfn_case_props = cases.CfnCaseProps( customer_id="customerId", domain_id="domainId", template_id="templateId", title="title", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- customer_id
The full customer profile ARN for the case.
- domain_id
The unique identifier of the Cases domain.
- tags
A list of tags for the case.
- template_id
A unique identifier of a template.
- title
The title of the case.