Giter Club home page Giter Club logo

Comments (2)

amihaiemil avatar amihaiemil commented on July 18, 2024

Big outlines, about signing the HTTP requests:

  • The signer (e.g. Aws4Signer) should be a decorator for a HTTP request object.
  • Less injection through setters, in favor of injection through the ctor (less configurable objects)
  • Better encapsulation of classes which require a lot of knowledge about the SDK (e.g. classes such as ExecutionContext)
  • I do like the Handlers part, but I don't understand why is the Request parameterized with <Void> and what else could there be.

I wrote a post about it here. Any effort towards a similar, composable design, based on interfaces, would be an advance, from my point of view.

The main idea is that users should primarly be able to sign HTTP requests. I may not want to learn the whole SDK, but just make a few requests to some service. So I should be able to figure out in a matter of minutes, that I can do something like this:

    Request req = new SignedRequest(
        new Get (
            new HttpHeaders(
                ...
            ),
            "https://us-west2-aws.amazon.com/elasticsearch/_search"
        )
     )
     Response response = req.perform();
     InputStream body = response.content();

All of the above (SignedRequest, Get, HttpHeaders etc) are decorators for Request. I shouldn't have to worry about setting regions (region can be taken from the url, right?), execution contexts and client configurations. Maybe Builder instead of Decorator is also good, but then keep it simple, one single builder and no other setters.

from aws-sdk-java-v2.

shorea avatar shorea commented on July 18, 2024

Implemented

from aws-sdk-java-v2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.