Class EqualsAssertion
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.integtests.EqualsAssertion
- All Implemented Interfaces:
IConstruct,IDependable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:36.694Z")
@Stability(Experimental)
public class EqualsAssertion
extends 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.*;
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 Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class(experimental) A fluent builder forEqualsAssertion.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default, IConstruct.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default, software.constructs.IConstruct.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedEqualsAssertion(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedEqualsAssertion(software.amazon.jsii.JsiiObjectRef objRef) EqualsAssertion(software.constructs.Construct scope, String id, EqualsAssertionProps props) -
Method Summary
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.constructs.Construct
toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
EqualsAssertion
protected EqualsAssertion(software.amazon.jsii.JsiiObjectRef objRef) -
EqualsAssertion
protected 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.
-