-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support initial-request
and initial-response
event stream types for RPC-bound protocols
#929
Conversation
when (shape) { | ||
is OperationShape -> requiresDocumentSerializer(listOf(shape)) | ||
else -> { | ||
val topLevelMembers = shape.members() | ||
.filter { members?.contains(it) ?: true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: You don't really need this. Just make members
non-nullable since it has a default anyway and then you don't need the filter.
val topLevelMembers = members
.map {...}
...
…written to fix windows issue (#933)
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
This PR supports sending
initial-request
and receivinginitial-response
messages in event streams using an RPC-bound protocol. See the accompanying PR in aws-sdk-kotlin for more detail: awslabs/aws-sdk-kotlin#1026Issue #
Helps to close aws-sdk-kotlin/issues/693
Description of changes
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.