interface TestCaseReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.TestCaseReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#TestCaseReference |
Java | software.amazon.awscdk.interfaces.connect.TestCaseReference |
Python | aws_cdk.interfaces.aws_connect.TestCaseReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » 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_connect as interfaces_connect } from 'aws-cdk-lib/interfaces';
const testCaseReference: interfaces_connect.TestCaseReference = {
testCaseArn: 'testCaseArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| test | string | The TestCaseArn of the TestCase resource. |
testCaseArn
Type:
string
The TestCaseArn of the TestCase resource.

.NET
Go
Java
Python
TypeScript