@aws-cdk_integ-tests-alpha.AssertionResultData

interface AssertionResultData ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.IntegTests.Alpha.AssertionResultData
Gogithub.com/aws/aws-cdk-go/awscdkintegtestsalpha/v2#AssertionResultData
Javasoftware.amazon.awscdk.integtests.alpha.AssertionResultData
Pythonaws_cdk.integ_tests_alpha.AssertionResultData
TypeScript (source)@aws-cdk/integ-tests-alpha ยป AssertionResultData

The result of an assertion.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as integ_tests_alpha from '@aws-cdk/integ-tests-alpha';
const assertionResultData: integ_tests_alpha.AssertionResultData = {
  status: integ_tests_alpha.Status.PASS,

  // the properties below are optional
  message: 'message',
};

Properties

NameTypeDescription
status๐Ÿ”นStatusThe status of the assertion, i.e. pass or fail.
message?๐Ÿ”นstringAny message returned with the assertion result typically this will be the diff if there is any.

status๐Ÿ”น

Type: Status

The status of the assertion, i.e. pass or fail.


message?๐Ÿ”น

Type: string (optional, default: none)

Any message returned with the assertion result typically this will be the diff if there is any.