...

Text file src/github.com/aws/smithy-go/README.md

Documentation: github.com/aws/smithy-go

     1## Smithy Go
     2
     3[![Go Build Status](https://github.com/aws/smithy-go/actions/workflows/go.yml/badge.svg?branch=main)](https://github.com/aws/smithy-go/actions/workflows/go.yml)[![Codegen Build Status](https://github.com/aws/smithy-go/actions/workflows/codegen.yml/badge.svg?branch=main)](https://github.com/aws/smithy-go/actions/workflows/codegen.yml)
     4
     5[Smithy](https://smithy.io/) code generators for Go.
     6
     7**WARNING: All interfaces are subject to change.**
     8
     9## Can I use this?
    10
    11In order to generate a usable smithy client you must provide a [protocol definition](https://github.com/aws/smithy-go/blob/main/codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/integration/ProtocolGenerator.java),
    12such as [AWS restJson1](https://smithy.io/2.0/aws/protocols/aws-restjson1-protocol.html),
    13in order to generate transport mechanisms and serialization/deserialization
    14code ("serde") accordingly.
    15
    16The code generator does not currently support any protocols out of the box,
    17therefore the useability of this project on its own is currently limited.
    18Support for all [AWS protocols](https://smithy.io/2.0/aws/protocols/index.html)
    19exists in [aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2). We are
    20tracking the movement of those out of the SDK into smithy-go in
    21[#458](https://github.com/aws/smithy-go/issues/458), but there's currently no
    22timeline for doing so.
    23
    24## License
    25
    26This project is licensed under the Apache-2.0 License.
    27

View as plain text