interface CfnCaseMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cases.CfnCaseMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscases#CfnCaseMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cases.CfnCaseMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cases.CfnCaseMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cases » CfnCaseMixinProps |
Properties for CfnCasePropsMixin.
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/cfn-property-mixins';
const cfnCaseMixinProps: cases.CfnCaseMixinProps = {
customerId: 'customerId',
domainId: 'domainId',
tags: [{
key: 'key',
value: 'value',
}],
templateId: 'templateId',
title: 'title',
};
Properties
| Name | Type | Description |
|---|---|---|
| customer | string | The full customer profile ARN for the case. |
| domain | string | The unique identifier of the Cases domain. |
| tags? | Cfn[] | A list of tags for the case. |
| template | string | A unique identifier of a template. |
| title? | string | The title of the case. |
customerId?
Type:
string
(optional)
The full customer profile ARN for the case.
domainId?
Type:
string
(optional)
The unique identifier of the Cases domain.
tags?
Type:
Cfn[]
(optional)
A list of tags for the case.
templateId?
Type:
string
(optional)
A unique identifier of a template.
title?
Type:
string
(optional)
The title of the case.

.NET
Go
Java
Python
TypeScript