interface CaseReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cases.CaseReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscases#CaseReference |
Java | software.amazon.awscdk.interfaces.cases.CaseReference |
Python | aws_cdk.interfaces.aws_cases.CaseReference |
TypeScript | aws-cdk-lib » interfaces » aws_cases » CaseReference |
A reference to a Case resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cases as interfaces_cases } from 'aws-cdk-lib/interfaces';
const caseReference: interfaces_cases.CaseReference = {
caseArn: 'caseArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| case | string | The Arn of the Case resource. |
caseArn
Type:
string
The Arn of the Case resource.

.NET
Go
Java
Python
TypeScript