interface TestCaseReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppTest.TestCaseReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapptest#TestCaseReference |
Java | software.amazon.awscdk.interfaces.apptest.TestCaseReference |
Python | aws_cdk.interfaces.aws_apptest.TestCaseReference |
TypeScript | aws-cdk-lib » interfaces » aws_apptest » TestCaseReference |
A reference to a TestCase resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apptest as interfaces_aws_apptest } from 'aws-cdk-lib/interfaces';
const testCaseReference: interfaces_aws_apptest.TestCaseReference = {
testCaseArn: 'testCaseArn',
testCaseId: 'testCaseId',
};
Properties
| Name | Type | Description |
|---|---|---|
| test | string | The ARN of the TestCase resource. |
| test | string | The TestCaseId of the TestCase resource. |
testCaseArn
Type:
string
The ARN of the TestCase resource.
testCaseId
Type:
string
The TestCaseId of the TestCase resource.

.NET
Go
Java
Python
TypeScript