interface CfnCaseProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cases.CfnCaseProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscases#CfnCaseProps |
Java | software.amazon.awscdk.services.cases.CfnCaseProps |
Python | aws_cdk.aws_cases.CfnCaseProps |
TypeScript | aws-cdk-lib » aws_cases » CfnCaseProps |
Properties for defining a CfnCase.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-case.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cases as cases } from 'aws-cdk-lib';
const cfnCaseProps: cases.CfnCaseProps = {
customerId: 'customerId',
domainId: 'domainId',
templateId: 'templateId',
title: 'title',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| customer | string | The full customer profile ARN for the case. |
| domain | string | The unique identifier of the Cases domain. |
| template | string | A unique identifier of a template. |
| title | string | The title of the case. |
| tags? | Cfn[] | A list of tags for the case. |
customerId
Type:
string
The full customer profile ARN for the case.
domainId
Type:
string
The unique identifier of the Cases domain.
templateId
Type:
string
A unique identifier of a template.
title
Type:
string
The title of the case.
tags?
Type:
Cfn[]
(optional)
A list of tags for the case.

.NET
Go
Java
Python
TypeScript