TestCaseReference
- class aws_cdk.interfaces.aws_apptest.TestCaseReference(*, test_case_arn, test_case_id)
Bases:
objectA 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.interfaces import aws_apptest as interfaces_aws_apptest test_case_reference = interfaces_aws_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.