Interface FunctionExecutionExample
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FunctionExecutionExample.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-08-20T01:46:20.834Z") @Stability(Stable) public interface FunctionExecutionExample extends software.amazon.jsii.JsiiSerializable
Interaction descriptor for a function execution which returns successfully.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classFunctionExecutionExample.BuilderA builder forFunctionExecutionExamplestatic classFunctionExecutionExample.Jsii$ProxyAn implementation forFunctionExecutionExample
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static FunctionExecutionExample.Builderbuilder()List<Object>getArguments()An array of expected function arguments (or test equivalence matchers for those arguments).StringgetFunctionName()The name of the function to be executed.ObjectgetReturnValue()A test equivalence matcher for the return value from this function.
-
-
-
Method Detail
-
getArguments
@Stability(Stable) @NotNull List<Object> getArguments()
An array of expected function arguments (or test equivalence matchers for those arguments).
-
getFunctionName
@Stability(Stable) @NotNull String getFunctionName()
The name of the function to be executed.Doubles as the handle used by registerFunction.
-
getReturnValue
@Stability(Stable) @NotNull Object getReturnValue()
A test equivalence matcher for the return value from this function.
-
builder
@Stability(Stable) static FunctionExecutionExample.Builder builder()
- Returns:
- a
FunctionExecutionExample.BuilderofFunctionExecutionExample
-
-