david-perez
david-perez
As far as I'm aware, `group` always emits absolute paths, and hence `link --soft`, after reading the report, always creates absolute symlinks. It would be nice if the created symlinks...
The [`httpPayload`](https://awslabs.github.io/smithy/2.0/spec/http-bindings.html#httppayload-trait) trait: > can be applied to `structure` members that target a `string`, `blob`, `structure`, `union`, `document`, `map`, or `list`. Of note is that [no AWS protocol supports `list`...
This is a feature request. Are there any protocol tests exercising [the default trait](https://awslabs.github.io/smithy/2.0/spec/type-refinement-traits.html#smithy-api-default-trait)? This trait affects serialization behavior for clients and servers. I couldn't find any in `smithy-aws-protocol-tests`.
This repository contains a test suite for the restJson1 protocol with `httpMalformedRequestTests` that need to be rejected because the request input does not adhere to the modeled constraints. The test...
As far as I'm aware, all protocols that support the `http` binding trait need to have it attached to all their `operation` shapes, which are routable using the required `http.uri`...
I've been using this project reliably over the past two years to periodically download my liked tweets, but unfortunately since 19th July I get: ``` [2023-07-19 21:00:04.937536] File "/home/pi/code/liked-tweets/lib/python3.7/site-packages/twitter_to_sqlite/utils.py", line...
This just relaxes bounds. Useful to create filters from arrays.
Consider this model where we forgot to define the `pokemon-service:RegistrationDate` IAM service condition key: ```smithy $version: "2.0" namespace com.amazonaws.simple use aws.protocols#restJson1 use aws.api#service use aws.auth#sigv4 use aws.iam#defineConditionKeys use aws.iam#conditionKeys use...
So far, all protocols supported by Smithy use text-based serialization formats. However, in protocols using a binary-based serialization format ([like the upcoming Smithy RPC v2 CBOR protocol](https://github.com/smithy-lang/smithy/pull/1911/)), the binary `body`...
Smithy `service` shapes can be annotated with multiple [protocol traits](https://smithy.io/2.0/spec/protocol-traits.html#smithy-api-protocoldefinition-trait). ```smithy $version: "2" namespace smithy.example use aws.protocols#restJson1 use aws.protocols#awsJson1_1 @restJson1 @awsJson1_1 service MyService { version: "2023-09-12" } ``` In theory...