Uses of Class
software.amazon.lambda.durable.testing.CloudDurableTestRunner
Packages that use CloudDurableTestRunner
-
Uses of CloudDurableTestRunner in software.amazon.lambda.durable.testing
Methods in software.amazon.lambda.durable.testing that return CloudDurableTestRunnerModifier and TypeMethodDescriptionstatic <I,O> CloudDurableTestRunner<I, O> Creates a runner for the given function ARN with Class-based input/output types.static <I,O> CloudDurableTestRunner<I, O> CloudDurableTestRunner.create(String functionArn, Class<I> inputType, Class<O> outputType, software.amazon.awssdk.services.lambda.LambdaClient lambdaClient) Creates a runner with a customLambdaClientand Class-based input/output types.static <I,O> CloudDurableTestRunner<I, O> Creates a runner for the given function ARN with TypeToken-based input/output types.static <I,O> CloudDurableTestRunner<I, O> CloudDurableTestRunner.create(String functionArn, TypeToken<I> inputType, TypeToken<O> outputType, software.amazon.awssdk.services.lambda.LambdaClient lambdaClient) Creates a runner with a customLambdaClientand TypeToken-based input/output types.CloudDurableTestRunner.withInvocationType(software.amazon.awssdk.services.lambda.model.InvocationType type) Returns a new runner with the specified Lambda invocation type.CloudDurableTestRunner.withPollInterval(Duration interval) Returns a new runner with the specified poll interval between history checks.CloudDurableTestRunner.withTimeout(Duration timeout) Returns a new runner with the specified maximum wait time for execution completion.