Class EqualsAssertion
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.integtests.alpha.EqualsAssertion
- All Implemented Interfaces:
- software.amazon.jsii.JsiiSerializable,- software.constructs.IConstruct,- software.constructs.IDependable
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:51.021Z")
@Stability(Experimental)
public class EqualsAssertion
extends software.constructs.Construct
(experimental) Construct that creates a CustomResource to assert that two values are equal.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.integtests.alpha.*;
 ActualResult actualResult;
 ExpectedResult expectedResult;
 EqualsAssertion equalsAssertion = EqualsAssertion.Builder.create(this, "MyEqualsAssertion")
         .actual(actualResult)
         .expected(expectedResult)
         // the properties below are optional
         .failDeployment(false)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic final class(experimental) A fluent builder forEqualsAssertion.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstructsoftware.constructs.IConstruct.Jsii$Default, software.constructs.IConstruct.Jsii$Proxy
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedEqualsAssertion(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedEqualsAssertion(software.amazon.jsii.JsiiObjectRef objRef) EqualsAssertion(software.constructs.Construct scope, String id, EqualsAssertionProps props) 
- 
Method SummaryMethods inherited from class software.constructs.ConstructgetNode, isConstruct, toStringMethods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Constructor Details- 
EqualsAssertionprotected EqualsAssertion(software.amazon.jsii.JsiiObjectRef objRef) 
- 
EqualsAssertionprotected EqualsAssertion(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) 
- 
EqualsAssertion@Stability(Experimental) public EqualsAssertion(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull EqualsAssertionProps props) - Parameters:
- scope- This parameter is required.
- id- This parameter is required.
- props- This parameter is required.
 
 
- 
- 
Method Details- 
getResult(experimental) The result of the assertion.
 
-