docs(csharp): document the per-operation serializer override (Step/Callback/Invoke/WaitForCondition/ChildContext + Map/Parallel ItemSerializer) - #279
Draft
GarrettBeatty wants to merge 2 commits into
Conversation
The .NET SDK now supports an optional per-operation `Serializer` (an ILambdaSerializer) on StepConfig, CallbackConfig, InvokeConfig, WaitForConditionConfig<TState>, and ChildContextConfig; when null the globally-registered serializer is used. Update the C# tabs on the serialization page (Default serialization, SerDes interface, StepConfig, CallbackConfig) and the StepConfigExample/CallbackConfigExample examples. Map/Parallel C# tabs left as-is pending two-level (item + whole-result) support.
MapConfig<TItem> and ParallelConfig now expose ItemSerializer for each item/branch result; the aggregated batch envelope is SDK-internal and not user-serialized (no whole-result serializer). Update the Map/Parallel C# tab and MapConfigExample.
GarrettBeatty
had a problem deploying
to
ai-pr-review-runtime
September 2, 2026 21:16 — with
GitHub Actions
Failure
GarrettBeatty
had a problem deploying
to
ai-pr-review-runtime
September 2, 2026 21:16 — with
GitHub Actions
Failure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Documents the .NET per-operation serializer override on the C# tabs of the serialization reference. Companion to aws/aws-lambda-dotnet#2555.
SerializeronStepConfig/CallbackConfig(and note it reusesILambdaSerializer, so no new SerDes interface), and theItemSerializeronMapConfig/ParallelConfigfor per-item/branch results (the aggregate batch envelope is SDK-internal, so there is no whole-result serializer).Notes
Docs-only. Pairs with the SDK feature PR aws/aws-lambda-dotnet#2555.