TestCaseReference

class aws_cdk.aws_apptest.TestCaseReference(*, test_case_arn, test_case_id)

Bases: object

A reference to a TestCase resource.

Parameters:
  • test_case_arn (str) – The ARN of the TestCase resource.

  • test_case_id (str) – The TestCaseId of the TestCase resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_apptest as apptest

test_case_reference = apptest.TestCaseReference(
    test_case_arn="testCaseArn",
    test_case_id="testCaseId"
)

Attributes

test_case_arn

The ARN of the TestCase resource.

test_case_id

The TestCaseId of the TestCase resource.