Interface ListDurableExecutionsByFunctionRequest.Builder

    • Method Detail

      • functionName

        ListDurableExecutionsByFunctionRequest.Builder functionName​(String functionName)

        The name or ARN of the Lambda function. You can specify a function name, a partial ARN, or a full ARN.

        Parameters:
        functionName - The name or ARN of the Lambda function. You can specify a function name, a partial ARN, or a full ARN.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • qualifier

        ListDurableExecutionsByFunctionRequest.Builder qualifier​(String qualifier)

        The function version or alias. If not specified, lists executions for the $LATEST version.

        Parameters:
        qualifier - The function version or alias. If not specified, lists executions for the $LATEST version.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • durableExecutionName

        ListDurableExecutionsByFunctionRequest.Builder durableExecutionName​(String durableExecutionName)

        Filter executions by name. Only executions with names that contain this string are returned.

        Parameters:
        durableExecutionName - Filter executions by name. Only executions with names that contain this string are returned.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • statusesWithStrings

        ListDurableExecutionsByFunctionRequest.Builder statusesWithStrings​(Collection<String> statuses)

        Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.

        Parameters:
        statuses - Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • statusesWithStrings

        ListDurableExecutionsByFunctionRequest.Builder statusesWithStrings​(String... statuses)

        Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.

        Parameters:
        statuses - Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • statuses

        ListDurableExecutionsByFunctionRequest.Builder statuses​(Collection<ExecutionStatus> statuses)

        Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.

        Parameters:
        statuses - Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • statuses

        ListDurableExecutionsByFunctionRequest.Builder statuses​(ExecutionStatus... statuses)

        Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.

        Parameters:
        statuses - Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • startedAfter

        ListDurableExecutionsByFunctionRequest.Builder startedAfter​(Instant startedAfter)

        Filter executions that started after this timestamp (ISO 8601 format).

        Parameters:
        startedAfter - Filter executions that started after this timestamp (ISO 8601 format).
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • startedBefore

        ListDurableExecutionsByFunctionRequest.Builder startedBefore​(Instant startedBefore)

        Filter executions that started before this timestamp (ISO 8601 format).

        Parameters:
        startedBefore - Filter executions that started before this timestamp (ISO 8601 format).
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • reverseOrder

        ListDurableExecutionsByFunctionRequest.Builder reverseOrder​(Boolean reverseOrder)

        Set to true to return results in reverse chronological order (newest first). Default is false.

        Parameters:
        reverseOrder - Set to true to return results in reverse chronological order (newest first). Default is false.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • marker

        ListDurableExecutionsByFunctionRequest.Builder marker​(String marker)

        Pagination token from a previous request to continue retrieving results.

        Parameters:
        marker - Pagination token from a previous request to continue retrieving results.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • maxItems

        ListDurableExecutionsByFunctionRequest.Builder maxItems​(Integer maxItems)

        Maximum number of executions to return (1-1000). Default is 100.

        Parameters:
        maxItems - Maximum number of executions to return (1-1000). Default is 100.
        Returns:
        Returns a reference to this object so that method calls can be chained together.