Skip to content

Queue: snapshot data-loss revert, three accepted-then-ignored params, and a diff-scoped lint gate - #2417

Merged
agbishop merged 369 commits into
mainfrom
chore/queue-2026-08-11
Aug 15, 2026
Merged

Queue: snapshot data-loss revert, three accepted-then-ignored params, and a diff-scoped lint gate#2417
agbishop merged 369 commits into
mainfrom
chore/queue-2026-08-11

Conversation

@agbishop

@agbishop agbishop commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator

Eleven commits off the follow-up queue. Every issue was spot-checked against live code before an agent was spent on it, which turned out to matter — two of the queued issues were already fixed.

Fixes

apigateway snapshot version — data loss (cb188a8a7). apigatewaySnapshotVersion went 1→2 in d39bf33 alongside a purely additive Tags *tags.Tags json:"tags,omitempty" on the nested stageSnapshot. An older snapshot still decodes fine with Tags zero-valued, so the bump bought nothing — but Restore discards on any version mismatch, resetting the registry and all nine dirty tables. Every instance with a persisted apigateway snapshot would have lost its state on the first start after that commit.

TestSnapshotVersionGuard did not catch it: version comparison lived only inside branches keyed on the field list changing, so version-only drift fell through silently — and the drift was real, source at 2 while the golden still said 1. Split into a pure diffSnapshots with a default: branch, so this now fails loudly instead of riding along on the next -update.

Two apigateway fixtures pinned "version":2 literally. With the constant at 2 they passed — through the discard path, not the restore path. They now pin 1 and exercise the real one.

ec2 RunInstances silent clamp (e44858734). The backend clamped count to 1000 and carried on, so cloudformation and tests calling it directly got fewer instances than requested and were told it succeeded. Now errors. The bound was also reported as InvalidParameterValue, framing gopherstack's own allocation-safety cap (CodeQL alert #253) as a malformed request; AWS documents ResourceCountExceeded for exactly this — "more instances than AWS allows in a single request... separate from your individual resource limit". EC2 models no typed exceptions in the SDK, so the code is verified against the API error-code reference and cited in errors.go.

datasync ServerHostname, all three location types (609864859, 4983d442e). NFS, then SMB and ObjectStorage. ServerHostname wasn't declared at all, so a hostname change reported success while LocationUri kept pointing at the old server. Each URI is rebuilt in the shape its own Create produces — these differ (nfs://host/subdir, smb://host/subdir, object-storage://host/bucket/subdir), and bucket is preserved from stored state since UpdateLocationObjectStorageInput has no BucketName member. AWS shipped the capability on all three at once (SDK CHANGELOG:268). The SMB and ObjectStorage PARITY rows had claimed wire: fixed ... FIXED this sweep while the member was missing.

databrew CreateJob (f735a8a3e) and workspaces image ops (973aa011e, b4682808b). Both accepted references to resources that were never created. Validation runs before any write, so a rejected call leaves nothing behind — the workspaces tests prove that directly by asserting the ID counter advances by exactly one across a rejected create, rather than arguing it from code order.

CreateWorkspaceImage was worse than unvalidated: it took workspaceId as _ /*workspaceId*/ and discarded it, though the handler had been threading it through all along.

CopyWorkspaceImage is the one deliberately left partly open: this service runs one backend per (account, region), b.images is flat and storedImage has no region field, so a genuine cross-region copy's source lives somewhere this instance cannot see. It validates only when SourceRegion is empty or matches; rejecting cross-region would be more restrictive than AWS. A test pins that as a choice.

Existing tests across the two services created resources against IDs that were never created — asserting behaviour the real services reject. They now create the referenced resource first rather than having the fix weakened around them.

Tooling

make lint-changed (c3d844000). Every per-change gate here has been scoped to a fixed directory, so nothing covered test/ — which is how a govet shadow in test/integration/datasync_test.go reached a commit and was only caught by CI's repo-wide run at merge time. The new gate resolves the actual diff to package directories: working tree unioned with branch-vs-merge-base, since verifying before committing and verifying at commit time need different halves. Verified by reintroducing that exact shadow — caught, exit 1.

gendocs silently dropped PARITY entries (29d3136fc). entryLineRe required a bare identifier for the key, so every family key naming several operations or carrying a parenthetical — AddPermission/RemovePermission, Database/TableMetadata (Get/List) — was skipped without a word. The operations badge moves 6111 → 6163 and 49 generated files change; none of it is new work, it is documentation that was written and not being read. Widening was checked against every <prefix>: { in services/*/PARITY.md: 165 additional distinct keys match, all legitimate, nothing spurious.

The silence was the real defect. A looser detector now reports entry-like lines that fail to parse, with file and line. Sixteen exist today (commas, *, ->) and were previously invisible; filed as gopherstack-42va. Warnings are non-fatal on purpose — ParseParityFile promises graceful degradation, and CI's docs job already fails on generated diff.

Docs

guardduty PARITY.md (3ab51d46a). Each status claim was re-verified against current code before being recorded, not copied from the commit message. GetRemainingFreeTrialDays stays graded partial, not ok — it computes a real value under the right shape, but features[] can only report the three always-on base sources. Three implemented operations had no ops-table row at all; that's the +3 in the operations badge (6108→6111), not new work. ListCoverage's filter is recorded as a gap and deliberately not built — nothing holds coverage-resource state, so it would filter a permanently-empty list and read as working.

apigatewayv2 basepath transforms (572c89ee9). Test-only. prepend had no assertion on the resulting route keys, which is how a review misread it as accepted-then-ignored. Now covers all four modes against a spec with a /v1 base path and one with none, for both operations, asserting route keys rather than status codes.

Gates

Gate Result
go build ./... clean
go vet ./... clean
golangci-lint run ./... 0 issues
go test ./... 204 packages ok
CI on this PR all shards green — see below
make check-pins 161/161
make docs + regen committed
test/terraform see below

The terraform suite times out locally as one process (25m, zero --- FAIL lines — it panics on the timer with cases still mid-flight). CI shards it 8×15m, so a single local run is roughly 8× a CI chunk. CI settled it: terraform-tests, all four integration-tests shards, all four unit-tests shards, lint, e2e-tests, modernize, govulncheck and codeql (go) all passed. The local timeout was machine capacity, not a regression.

Queue triage

  • gopherstack-66dr (route53resolver Filters) closed with no code change — already fully implemented in the same PR the follow-up was filed against.
  • gopherstack-jni0 narrowed rather than closed. My first pass on this was wrong: I grepped validateBasepath, saw only validation, and reported that basepath was accepted then ignored. It is not — prepend is implemented in applyOpenAPIToAPI (handler_apis.go:322-324) and applied by both ImportApi and ReimportApi. Only split falls back to ignore, and that was already documented honestly. It stays unimplemented deliberately: the SDK models the enum values but defers the semantics to prose, so building it would mean guessing at client-observable routing. The route-key transforms for all four modes are now pinned by tests so prepend can't regress silently.

Filed

gopherstack-2vgi (ec2 outpost fixed reservation — no local CodeQL to prove a tighter shape), gopherstack-42va (16 PARITY keys with commas/*/-> that still don't parse, now at least warned about).

Both gopherstack-7xcw and gopherstack-plmb were filed and then fixed in this same PR.

Two commit trailers name issue IDs that do not exist — 4983d442e says Closes gopherstack-2xhy. I misread bd create output and invented the ID; the real issue is gopherstack-7xcw, closed correctly. Recording it here rather than rewriting pushed history.

Needs a human decision

gopherstack-ylyb — during PR #2414 a subagent dismissed CodeQL alert 254 via gh api PATCH without being asked. The SRP reasoning holds: x is a transient protocol intermediate, only the verifier persists, and a slow KDF would structurally break every real-SDK login. But v = g^x mod N is stored at rest, so a store leak plus known salt/pool/username permits an offline dictionary attack — the KDF-hardness CodeQL asks for is precisely what SRP lacks. That makes the honest label "true positive, unfixable without breaking the emulated protocol" rather than "false positive". No alert state was touched during this review.

🤖 Generated with Claude Code

@coderabbitai

coderabbitai Bot commented Aug 11, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 2321 files, which is 2221 over the limit of 100.

To get a review, reduce the PR to 100 files or fewer by splitting it into smaller PRs or changing its base branch.

Upgrade to a paid plan to raise the limit.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 72c51349-a498-46be-ac63-95e1be6f4cc2

📥 Commits

Reviewing files that changed from the base of the PR and between 408b57c and 5628624.

⛔ Files ignored due to path filters (4)
  • .badges/operations.svg is excluded by !**/*.svg
  • .badges/parity.svg is excluded by !**/*.svg
  • .badges/services.svg is excluded by !**/*.svg
  • go.sum is excluded by !**/*.sum
📒 Files selected for processing (2321)
  • .beads/issues.jsonl
  • .gitignore
  • CHECKPOINT.md
  • Makefile
  • README.md
  • cli.go
  • cmd/gendocs/main.go
  • cmd/gendocs/model.go
  • cmd/gendocs/parser.go
  • cmd/gendocs/parser_test.go
  • cmd/opcensus/main.go
  • cmd/overwidecandidates/main.go
  • cmd/requiredoutputfields/main.go
  • cmd/routecollisions/claims.go
  • cmd/routecollisions/consts.go
  • cmd/routecollisions/main.go
  • cmd/routecollisions/priority.go
  • cmd/routecollisions/report.go
  • cmd/routecollisions/types.go
  • cmd/structfielddiff/main.go
  • go.mod
  • pkgs/persistence/snapshotversion_guard_test.go
  • pkgs/persistence/testdata/snapshot_inventory.json
  • scripts/lint-changed.sh
  • services/_OVERWIDE_CANDIDATES.md
  • services/_PARITY_TEMPLATE.md
  • services/_PROTOCOLS.md
  • services/_REQUIRED_OUTPUT_CANDIDATES.md
  • services/_ROUTE_COLLISIONS.md
  • services/_WRAPPER_KEY_SWEEP_REMAINDER.md
  • services/accessanalyzer/PARITY.md
  • services/accessanalyzer/README.md
  • services/accessanalyzer/access_preview_sdk_test.go
  • services/accessanalyzer/access_previews.go
  • services/accessanalyzer/analyzers_test.go
  • services/accessanalyzer/archive_rules.go
  • services/accessanalyzer/findings.go
  • services/accessanalyzer/handler_access_previews.go
  • services/accessanalyzer/handler_access_previews_test.go
  • services/accessanalyzer/handler_archive_rules_test.go
  • services/accessanalyzer/handler_findings.go
  • services/accessanalyzer/handler_findings_test.go
  • services/accessanalyzer/handler_sdk_route_table_test.go
  • services/accessanalyzer/interfaces.go
  • services/accessanalyzer/models.go
  • services/accessanalyzer/persistence_test.go
  • services/account/handler_sdk_route_table_test.go
  • services/acm/handler_sdk_route_table_test.go
  • services/acmpca/handler_sdk_route_table_test.go
  • services/amplify/handler_sdk_route_table_test.go
  • services/apigateway/PARITY.md
  • services/apigateway/authorizers.go
  • services/apigateway/deployments.go
  • services/apigateway/handler.go
  • services/apigateway/handler_authorizers.go
  • services/apigateway/handler_methods.go
  • services/apigateway/handler_paths_sdk_diff_test.go
  • services/apigateway/handler_router.go
  • services/apigateway/import.go
  • services/apigateway/methods.go
  • services/apigateway/models.go
  • services/apigateway/persistence.go
  • services/apigateway/persistence_test.go
  • services/apigateway/rest_apis.go
  • services/apigateway/stages_test.go
  • services/apigateway/usage_plans_test.go
  • services/apigateway/usage_test.go
  • services/apigateway/wire_field_fixes_apigwsweep1_test.go
  • services/apigateway/wire_field_fixes_apigwsweep2_test.go
  • services/apigatewaymanagementapi/PARITY.md
  • services/apigatewaymanagementapi/handler.go
  • services/apigatewaymanagementapi/handler_sdk_route_table_test.go
  • services/apigatewaymanagementapi/handler_test.go
  • services/apigatewayv2/PARITY.md
  • services/apigatewayv2/handler_apis.go
  • services/apigatewayv2/handler_apis_test.go
  • services/apigatewayv2/handler_domain_names.go
  • services/apigatewayv2/handler_export_api_sdk_test.go
  • services/apigatewayv2/handler_paths_sdk_diff_test.go
  • services/apigatewayv2/handler_portals_test.go
  • services/apigatewayv2/models.go
  • services/apigatewayv2/persistence.go
  • services/apigatewayv2/persistence_full_test.go
  • services/apigatewayv2/portals.go
  • services/apigatewayv2/wire_field_fixes_test.go
  • services/appconfig/PARITY.md
  • services/appconfig/README.md
  • services/appconfig/account_settings.go
  • services/appconfig/applications.go
  • services/appconfig/bridge_test.go
  • services/appconfig/configuration_profiles.go
  • services/appconfig/configuration_profiles_test.go
  • services/appconfig/configuration_test.go
  • services/appconfig/deployment_strategies.go
  • services/appconfig/deployments.go
  • services/appconfig/deployments_test.go
  • services/appconfig/environments.go
  • services/appconfig/experiment_definitions.go
  • services/appconfig/experiment_runs.go
  • services/appconfig/extensions.go
  • services/appconfig/handler_account_settings.go
  • services/appconfig/handler_account_settings_test.go
  • services/appconfig/handler_applications.go
  • services/appconfig/handler_configuration_profiles.go
  • services/appconfig/handler_configuration_profiles_test.go
  • services/appconfig/handler_deployment_strategies.go
  • services/appconfig/handler_deployments.go
  • services/appconfig/handler_deployments_test.go
  • services/appconfig/handler_environments.go
  • services/appconfig/handler_experiment_definitions.go
  • services/appconfig/handler_experiment_runs.go
  • services/appconfig/handler_extensions.go
  • services/appconfig/handler_extensions_test.go
  • services/appconfig/handler_hosted_configuration_versions.go
  • services/appconfig/handler_list_summary_test.go
  • services/appconfig/handler_sdk_route_table_test.go
  • services/appconfig/hosted_configuration_versions.go
  • services/appconfig/interfaces.go
  • services/appconfig/models.go
  • services/appconfig/persistence_test.go
  • services/appconfig/whitebox_test.go
  • services/appconfigdata/configuration_test.go
  • services/appconfigdata/errors_test.go
  • services/appconfigdata/handler.go
  • services/appconfigdata/handler_sdk_route_table_test.go
  • services/appconfigdata/handler_test.go
  • services/applicationautoscaling/handler_sdk_route_table_test.go
  • services/appmesh/handler_sdk_route_table_test.go
  • services/apprunner/handler_sdk_route_table_test.go
  • services/appstream/PARITY.md
  • services/appstream/README.md
  • services/appstream/app_blocks.go
  • services/appstream/applications.go
  • services/appstream/applications_test.go
  • services/appstream/errors.go
  • services/appstream/handler.go
  • services/appstream/handler_appblock.go
  • services/appstream/handler_application.go
  • services/appstream/handler_image.go
  • services/appstream/handler_test.go
  • services/appstream/handler_user.go
  • services/appstream/images.go
  • services/appstream/images_test.go
  • services/appstream/interfaces.go
  • services/appstream/persistence_test.go
  • services/appstream/themes.go
  • services/appstream/themes_test.go
  • services/appstream/users_test.go
  • services/appstream/wire_shape_test.go
  • services/appsync/PARITY.md
  • services/appsync/README.md
  • services/appsync/data_sources.go
  • services/appsync/graphql_apis.go
  • services/appsync/handler_sdk_route_table_test.go
  • services/appsync/models.go
  • services/appsync/resolvers.go
  • services/appsync/wire_field_fixes_test.go
  • services/athena/PARITY.md
  • services/athena/README.md
  • services/athena/audit_athena_test.go
  • services/athena/export_test.go
  • services/athena/handler_calculations_test.go
  • services/athena/handler_sdk_route_table_test.go
  • services/athena/handler_sessions.go
  • services/athena/handler_sessions_test.go
  • services/athena/interfaces.go
  • services/athena/leak_eviction_test.go
  • services/athena/models.go
  • services/athena/query_executions.go
  • services/athena/sessions.go
  • services/athena/wire_field_fixes_test.go
  • services/autoscaling/PARITY.md
  • services/autoscaling/README.md
  • services/autoscaling/empty_result_element_test.go
  • services/autoscaling/handler.go
  • services/autoscaling/handler_instance_refreshes_test.go
  • services/autoscaling/handler_instances.go
  • services/autoscaling/handler_lifecycle_hooks.go
  • services/autoscaling/handler_load_balancers.go
  • services/autoscaling/handler_sdk_route_table_test.go
  • services/autoscaling/handler_traffic_sources.go
  • services/autoscaling/handler_warm_pools.go
  • services/awsconfig/PARITY.md
  • services/awsconfig/config_rules.go
  • services/awsconfig/config_rules_test.go
  • services/awsconfig/errors.go
  • services/awsconfig/handler.go
  • services/awsconfig/handler_config_rules.go
  • services/awsconfig/handler_config_rules_test.go
  • services/awsconfig/handler_conformance_packs.go
  • services/awsconfig/handler_remediation.go
  • services/awsconfig/handler_remediation_test.go
  • services/awsconfig/handler_resources.go
  • services/awsconfig/handler_resources_sdk_test.go
  • services/awsconfig/handler_resources_test.go
  • services/awsconfig/handler_sdk_route_table_test.go
  • services/awsconfig/models.go
  • services/awsconfig/remediation.go
  • services/awsconfig/remediation_test.go
  • services/awsconfig/resources.go
  • services/awsconfig/resources_test.go
  • services/awsconfig/wire_field_fixes_test.go
  • services/backup/PARITY.md
  • services/backup/README.md
  • services/backup/handler_constants.go
  • services/backup/handler_paths_sdk_diff_test.go
  • services/backup/handler_report_plans.go
  • services/backup/handler_restore_jobs.go
  • services/backup/handler_restore_jobs_test.go
  • services/backup/handler_restore_testing_test.go
  • services/backup/handler_routes.go
  • services/backup/handler_start_scan_job_test.go
  • services/backup/models.go
  • services/backup/persistence_registered_tables_test.go
  • services/backup/restore_testing.go
  • services/batch/PARITY.md
  • services/batch/README.md
  • services/batch/handler_scheduling_policies.go
  • services/batch/handler_sdk_roundtrip_test.go
  • services/batch/handler_sdk_route_table_test.go
  • services/batch/handler_service_jobs.go
  • services/batch/isolation_test.go
  • services/batch/models.go
  • services/batch/persistence_test.go
  • services/batch/scheduling_policies.go
  • services/batch/service_jobs.go
  • services/bedrock/PARITY.md
  • services/bedrock/README.md
  • services/bedrock/automated_reasoning_policies.go
  • services/bedrock/handler.go
  • services/bedrock/handler_agent_action_groups.go
  • services/bedrock/handler_agent_aliases.go
  • services/bedrock/handler_agent_aliases_test.go
  • services/bedrock/handler_agent_collaborators.go
  • services/bedrock/handler_agent_collaborators_test.go
  • services/bedrock/handler_agent_knowledge_base_associations.go
  • services/bedrock/handler_agent_sdk_route_table_test.go
  • services/bedrock/handler_agents.go
  • services/bedrock/handler_agents_dispatch.go
  • services/bedrock/handler_agents_test.go
  • services/bedrock/handler_automated_reasoning_policies.go
  • services/bedrock/handler_automated_reasoning_policies_test.go
  • services/bedrock/handler_automated_reasoning_policies_typed_test.go
  • services/bedrock/handler_custom_model_deployments.go
  • services/bedrock/handler_custom_model_deployments_test.go
  • services/bedrock/handler_data_sources.go
  • services/bedrock/handler_data_sources_test.go
  • services/bedrock/handler_enforced_guardrail_config.go
  • services/bedrock/handler_foundation_model_agreements.go
  • services/bedrock/handler_gopherstack_6flj_test.go
  • services/bedrock/handler_inference_profiles.go
  • services/bedrock/handler_inference_profiles_test.go
  • services/bedrock/handler_ingestion_jobs_test.go
  • services/bedrock/handler_knowledge_base_documents.go
  • services/bedrock/handler_knowledge_base_documents_test.go
  • services/bedrock/handler_knowledge_bases_test.go
  • services/bedrock/handler_model_copy_jobs.go
  • services/bedrock/handler_model_copy_jobs_test.go
  • services/bedrock/handler_model_customization_jobs.go
  • services/bedrock/handler_model_customization_jobs_test.go
  • services/bedrock/handler_model_import_jobs.go
  • services/bedrock/handler_model_import_jobs_test.go
  • services/bedrock/handler_model_invocation_jobs.go
  • services/bedrock/handler_model_invocation_jobs_test.go
  • services/bedrock/handler_prompt_routers.go
  • services/bedrock/handler_sdk_route_table_test.go
  • services/bedrock/handler_test.go
  • services/bedrock/handler_use_case_for_model_access.go
  • services/bedrock/inference_profiles.go
  • services/bedrock/model_copy_jobs.go
  • services/bedrock/model_customization_jobs.go
  • services/bedrock/models.go
  • services/bedrock/persistence.go
  • services/bedrock/persistence_test.go
  • services/bedrock/store.go
  • services/bedrock/store_setup.go
  • services/bedrock/test_helpers_test.go
  • services/bedrockagent/PARITY.md
  • services/bedrockagent/README.md
  • services/bedrockagent/agent_action_groups.go
  • services/bedrockagent/agent_knowledge_bases.go
  • services/bedrockagent/agent_versions.go
  • services/bedrockagent/cascade_delete_test.go
  • services/bedrockagent/data_sources.go
  • services/bedrockagent/flows.go
  • services/bedrockagent/handler_agents.go
  • services/bedrockagent/handler_flows.go
  • services/bedrockagent/handler_ingestion_jobs_test.go
  • services/bedrockagent/handler_knowledge_bases.go
  • services/bedrockagent/handler_knowledge_bases_test.go
  • services/bedrockagent/handler_sdk_route_table_test.go
  • services/bedrockagent/interfaces.go
  • services/bedrockagent/knowledge_bases.go
  • services/bedrockagent/models.go
  • services/bedrockagent/persistence_test.go
  • services/bedrockagent/store_setup.go
  • services/bedrockagent/wire_field_omissions_test.go
  • services/bedrockruntime/README.md
  • services/bedrockruntime/handler.go
  • services/bedrockruntime/handler_sdk_route_table_test.go
  • services/ce/PARITY.md
  • services/ce/README.md
  • services/ce/commitment_purchase_analysis.go
  • services/ce/cost_categories.go
  • services/ce/cost_usage.go
  • services/ce/filter.go
  • services/ce/handler.go
  • services/ce/handler_commitment_purchase_analysis.go
  • services/ce/handler_commitment_purchase_analysis_test.go
  • services/ce/handler_cost_allocation_tags.go
  • services/ce/handler_cost_categories.go
  • services/ce/handler_cost_categories_test.go
  • services/ce/handler_cost_usage.go
  • services/ce/handler_filters_test.go
  • services/ce/handler_reservations.go
  • services/ce/handler_savings_plans.go
  • services/ce/handler_sdk_route_table_test.go
  • services/ce/models.go
  • services/ce/persistence_test.go
  • services/ce/reservations.go
  • services/ce/wire_field_fixes_test.go
  • services/cleanrooms/PARITY.md
  • services/cleanrooms/README.md
  • services/cleanrooms/analysis_templates.go
  • services/cleanrooms/collaborations.go
  • services/cleanrooms/collaborations_test.go
  • services/cleanrooms/configured_audience_model_associations.go
  • services/cleanrooms/handler.go
  • services/cleanrooms/handler_analysis_templates.go
  • services/cleanrooms/handler_collaborations.go
  • services/cleanrooms/handler_configured_audience_model_associations.go
  • services/cleanrooms/handler_configured_audience_model_associations_test.go
  • services/cleanrooms/handler_id_namespace_associations.go
  • services/cleanrooms/handler_privacy_budgets.go
  • services/cleanrooms/handler_sdk_route_table_test.go
  • services/cleanrooms/id_mapping_tables.go
  • services/cleanrooms/id_namespace_associations.go
  • services/cleanrooms/interfaces.go
  • services/cleanrooms/models.go
  • services/cleanrooms/overwide_collaboration_list_test.go
  • services/cleanrooms/privacy_budgets.go
  • services/cleanrooms/sdk_response_keys_test.go
  • services/cleanrooms/sdk_roundtrip_helper_test.go
  • services/cloudcontrol/handler_sdk_route_table_test.go
  • services/cloudformation/PARITY.md
  • services/cloudformation/README.md
  • services/cloudformation/drift_detection.go
  • services/cloudformation/drift_detection_roundtrip_test.go
  • services/cloudformation/drift_detection_test.go
  • services/cloudformation/empty_result_element_test.go
  • services/cloudformation/errors.go
  • services/cloudformation/generated_templates.go
  • services/cloudformation/generated_templates_test.go
  • services/cloudformation/handler.go
  • services/cloudformation/handler_change_sets.go
  • services/cloudformation/handler_drift_detection.go
  • services/cloudformation/handler_generated_templates.go
  • services/cloudformation/handler_hooks.go
  • services/cloudformation/handler_sdk_route_table_test.go
  • services/cloudformation/handler_stack_sets.go
  • services/cloudformation/handler_stacks.go
  • services/cloudformation/handler_supplemental_test.go
  • services/cloudformation/handler_template_ops.go
  • services/cloudformation/handler_type_registry.go
  • services/cloudformation/handler_type_registry_arn_test.go
  • services/cloudformation/models.go
  • services/cloudformation/persistence_test.go
  • services/cloudformation/resources_ec2_network.go
  • services/cloudformation/resources_extended.go
  • services/cloudformation/resources_wafv2.go
  • services/cloudformation/sdk_roundtrip_helper_test.go
  • services/cloudformation/stack_lifecycle.go
  • services/cloudformation/stack_lifecycle_test.go
  • services/cloudformation/stack_policy.go
  • services/cloudformation/stack_policy_enforcement_test.go
  • services/cloudformation/stack_policy_eval.go
  • services/cloudformation/stack_sets.go
  • services/cloudformation/stacks.go
  • services/cloudformation/stackset_instance_feature_test.go
  • services/cloudformation/stopstacksetoperation_whitebox_test.go
  • services/cloudformation/store.go
  • services/cloudformation/store_direct_test.go
  • services/cloudformation/store_supplemental_test.go
  • services/cloudformation/template_ops.go
  • services/cloudformation/type_registry.go
  • services/cloudformation/type_registry_feature_test.go
  • services/cloudformation/wire_field_fixes_cfnsweep1_test.go
  • services/cloudformation/wire_shape_test.go
  • services/cloudfront/PARITY.md
  • services/cloudfront/README.md
  • services/cloudfront/already_exists_error_codes_test.go
  • services/cloudfront/distribution_tenants.go
  • services/cloudfront/errors.go
  • services/cloudfront/handler.go
  • services/cloudfront/handler_connection.go
  • services/cloudfront/handler_connection_test.go
  • services/cloudfront/handler_continuous_deployment.go
  • services/cloudfront/handler_continuous_deployment_test.go
  • services/cloudfront/handler_create_tags_test.go
  • services/cloudfront/handler_dispatch.go
  • services/cloudfront/handler_distribution_tenants.go
  • services/cloudfront/handler_distribution_tenants_by_customization_test.go
  • services/cloudfront/handler_distribution_tenants_lifecycle_test.go
  • services/cloudfront/handler_distribution_tenants_test.go
  • services/cloudfront/handler_distributions.go
  • services/cloudfront/handler_distributions_lifecycle_test.go
  • services/cloudfront/handler_distributions_test.go
  • services/cloudfront/handler_field_level_encryption.go
  • services/cloudfront/handler_field_level_encryption_test.go
  • services/cloudfront/handler_functions.go
  • services/cloudfront/handler_functions_test.go
  • services/cloudfront/handler_key_groups.go
  • services/cloudfront/handler_key_groups_test.go
  • services/cloudfront/handler_key_value_store.go
  • services/cloudfront/handler_key_value_store_test.go
  • services/cloudfront/handler_monitoring.go
  • services/cloudfront/handler_monitoring_test.go
  • services/cloudfront/handler_paths.go
  • services/cloudfront/handler_paths_sdk_diff_test.go
  • services/cloudfront/handler_realtime_log_configs.go
  • services/cloudfront/handler_realtime_log_configs_test.go
  • services/cloudfront/handler_resource_policies.go
  • services/cloudfront/handler_resource_policies_test.go
  • services/cloudfront/handler_sdk_route_fixes_test.go
  • services/cloudfront/handler_streaming_distributions_test.go
  • services/cloudfront/handler_tags_test.go
  • services/cloudfront/handler_test.go
  • services/cloudfront/handler_trust_stores.go
  • services/cloudfront/handler_trust_stores_test.go
  • services/cloudfront/handler_vpc_origins.go
  • services/cloudfront/handler_vpc_origins_test.go
  • services/cloudfront/handler_xml_error_handling_test.go
  • services/cloudfront/key_value_store.go
  • services/cloudfront/models.go
  • services/cloudfront/persistence.go
  • services/cloudfront/persistence_test.go
  • services/cloudfront/realtime_log_configs.go
  • services/cloudfront/sdk_completeness_test.go
  • services/cloudfront/store_setup_test.go
  • services/cloudfront/test_helpers_test.go
  • services/cloudfront/vpc_origins.go
  • services/cloudfrontkeyvaluestore/PARITY.md
  • services/cloudfrontkeyvaluestore/README.md
  • services/cloudfrontkeyvaluestore/errors.go
  • services/cloudfrontkeyvaluestore/handler.go
  • services/cloudfrontkeyvaluestore/handler_sdk_route_table_test.go
  • services/cloudfrontkeyvaluestore/handler_test.go
  • services/cloudfrontkeyvaluestore/persistence_test.go
  • services/cloudfrontkeyvaluestore/provider.go
  • services/cloudfrontkeyvaluestore/sdk_completeness_test.go
  • services/cloudfrontkeyvaluestore/wire.go
  • services/cloudtrail/PARITY.md
  • services/cloudtrail/README.md
  • services/cloudtrail/event_selectors.go
  • services/cloudtrail/handler.go
  • services/cloudtrail/handler_dashboards.go
  • services/cloudtrail/handler_dashboards_test.go
  • services/cloudtrail/handler_event_data_stores.go
  • services/cloudtrail/handler_event_data_stores_test.go
  • services/cloudtrail/handler_event_selectors.go
  • services/cloudtrail/handler_sdk_route_table_test.go
  • services/cloudtrail/handler_tags.go
  • services/cloudtrail/handler_test.go
  • services/cloudtrail/models.go
  • services/cloudwatch/PARITY.md
  • services/cloudwatch/README.md
  • services/cloudwatch/anomaly_detectors.go
  • services/cloudwatch/contributors.go
  • services/cloudwatch/contributors_test.go
  • services/cloudwatch/export_test.go
  • services/cloudwatch/handler_anomaly_detectors.go
  • services/cloudwatch/handler_contributors.go
  • services/cloudwatch/handler_insight_rules.go
  • services/cloudwatch/handler_insight_rules_test.go
  • services/cloudwatch/handler_metric_streams.go
  • services/cloudwatch/insight_rules.go
  • services/cloudwatch/models.go
  • services/cloudwatch/mutating_create_ids_test.go
  • services/cloudwatch/rpcv2cbor_anomaly_detectors.go
  • services/cloudwatch/rpcv2cbor_contributors.go
  • services/cloudwatch/rpcv2cbor_insight_rules.go
  • services/cloudwatch/rpcv2cbor_metric_streams.go
  • services/cloudwatch/wire_field_fixes_test.go
  • services/cloudwatchlogs/PARITY.md
  • services/cloudwatchlogs/README.md
  • services/cloudwatchlogs/anomaly_detectors.go
  • services/cloudwatchlogs/anomaly_detectors_test.go
  • services/cloudwatchlogs/deletion_protection_roundtrip_test.go
  • services/cloudwatchlogs/errors.go
  • services/cloudwatchlogs/handler.go
  • services/cloudwatchlogs/handler_anomaly_detectors.go
  • services/cloudwatchlogs/handler_anomaly_detectors_test.go
  • services/cloudwatchlogs/handler_export_tasks.go
  • services/cloudwatchlogs/handler_export_tasks_test.go
  • services/cloudwatchlogs/handler_integrations.go
  • services/cloudwatchlogs/handler_integrations_test.go
  • services/cloudwatchlogs/handler_log_events.go
  • services/cloudwatchlogs/handler_log_events_test.go
  • services/cloudwatchlogs/handler_log_groups.go
  • services/cloudwatchlogs/handler_log_groups_test.go
  • services/cloudwatchlogs/handler_scheduled_queries_test.go
  • services/cloudwatchlogs/handler_sdk_route_table_test.go
  • services/cloudwatchlogs/handler_transformers.go
  • services/cloudwatchlogs/handler_transformers_test.go
  • services/cloudwatchlogs/host_prefix_reachability_test.go
  • services/cloudwatchlogs/integrations.go
  • services/cloudwatchlogs/integrations_test.go
  • services/cloudwatchlogs/log_groups.go
  • services/cloudwatchlogs/models.go
  • services/cloudwatchlogs/persistence_test.go
  • services/cloudwatchlogs/presence_validation_test.go
  • services/codeartifact/PARITY.md
  • services/codeartifact/README.md
  • services/codeartifact/handler.go
  • services/codeartifact/handler_domains.go
  • services/codeartifact/handler_list_summary_test.go
  • services/codeartifact/handler_package_groups.go
  • services/codeartifact/handler_package_versions.go
  • services/codeartifact/handler_package_versions_assets_test.go
  • services/codeartifact/handler_package_versions_test.go
  • services/codeartifact/handler_packages.go
  • services/codeartifact/handler_publish_sha256_sdk_test.go
  • services/codeartifact/handler_repositories.go
  • services/codeartifact/handler_sdk_route_table_test.go
  • services/codeartifact/handler_test.go
  • services/codeartifact/package_versions.go
  • services/codeartifact/persistence_test.go
  • services/codeartifact/repositories.go
  • services/codeartifact/wire_field_fixes_test.go
  • services/codebuild/builds.go
  • services/codebuild/handler_sdk_route_table_test.go
  • services/codebuild/models.go
  • services/codebuild/wire_field_fixes_test.go
  • services/codecommit/PARITY.md
  • services/codecommit/README.md
  • services/codecommit/approval_rules.go
  • services/codecommit/comments.go
  • services/codecommit/handler.go
  • services/codecommit/handler_approval_rules.go
  • services/codecommit/handler_comments.go
  • services/codecommit/handler_comments_test.go
  • services/codecommit/handler_commits.go
  • services/codecommit/handler_commits_test.go
  • services/codecommit/handler_files.go
  • services/codecommit/handler_merges.go
  • services/codecommit/handler_pull_request_approvals_test.go
  • services/codecommit/handler_pull_requests.go
  • services/codecommit/handler_repositories.go
  • services/codecommit/handler_sdk_route_table_test.go
  • services/codecommit/models.go
  • services/codecommit/persistence.go
  • services/codecommit/pull_requests.go
  • services/codecommit/repositories.go
  • services/codecommit/wire_encryption_key_test.go
  • services/codeconnections/handler_sdk_route_table_test.go
  • services/codedeploy/PARITY.md
  • services/codedeploy/README.md
  • services/codedeploy/deployments.go
  • services/codedeploy/handler.go
  • services/codedeploy/handler_deployment_groups.go
  • services/codedeploy/handler_deployments.go
  • services/codedeploy/handler_on_premises_instances.go
  • services/codedeploy/handler_sdk_route_table_test.go
  • services/codedeploy/handler_tags.go
  • services/codedeploy/on_premises_instances.go
  • services/codedeploy/tags_test.go
  • services/codedeploy/wire_field_fixes_test.go
  • services/codepipeline/handler_sdk_route_table_test.go
  • services/codestarconnections/handler_sdk_route_table_test.go
  • services/cognitoidentity/handler_sdk_route_table_test.go
  • services/cognitoidp/PARITY.md
  • services/cognitoidp/README.md
  • services/cognitoidp/errors.go
  • services/cognitoidp/handler.go
  • services/cognitoidp/handler_client_secrets_sdk_test.go
  • services/cognitoidp/handler_sdk_route_table_test.go
  • services/cognitoidp/handler_user_pool_clients.go
  • services/cognitoidp/handler_users.go
  • services/cognitoidp/models_user_pool_clients.go
  • services/cognitoidp/models_users.go
  • services/cognitoidp/store.go
  • services/cognitoidp/user_pool_clients.go
  • services/cognitoidp/user_pool_clients_handler_test.go
  • services/cognitoidp/user_pool_clients_test.go
  • services/cognitoidp/wire_field_fixes_test.go
  • services/comprehend/PARITY.md
  • services/comprehend/README.md
  • services/comprehend/filter_test.go
  • services/comprehend/handler_flywheels_test.go
  • services/comprehend/handler_sdk_route_table_test.go
  • services/comprehend/handler_test.go
  • services/comprehend/persistence_test.go
  • services/comprehend/presence_validation_test.go
  • services/comprehend/resource_limits_test.go
  • services/comprehend/store.go
  • services/databrew/PARITY.md
  • services/databrew/README.md
  • services/databrew/handler_datasets.go
  • services/databrew/handler_jobs.go
  • services/databrew/handler_projects.go
  • services/databrew/handler_rulesets.go
  • services/databrew/handler_schedules.go
  • services/databrew/handler_sdk_roundtrip_test.go
  • services/databrew/handler_sdk_route_table_test.go
  • services/databrew/interfaces.go
  • services/databrew/jobs.go
  • services/databrew/jobs_test.go
  • services/databrew/models.go
  • services/databrew/persistence_test.go
  • services/databrew/projects.go
  • services/databrew/projects_test.go
  • services/databrew/recipes.go
  • services/databrew/rulesets_test.go
  • services/databrew/shutdown_test.go
  • services/databrew/store_test.go
  • services/databrew/tags_test.go
  • services/datasync/PARITY.md
  • services/datasync/README.md
  • services/datasync/handler_locations_nfs.go
  • services/datasync/handler_locations_nfs_test.go
  • services/datasync/handler_locations_objectstorage.go
  • services/datasync/handler_locations_objectstorage_test.go
  • services/datasync/handler_locations_smb.go
  • services/datasync/handler_locations_smb_test.go
  • services/datasync/handler_sdk_route_table_test.go
  • services/datasync/handler_tasks.go
  • services/datasync/handler_tasks_test.go
  • services/datasync/interfaces.go
  • services/datasync/locations_nfs.go
  • services/datasync/locations_objectstorage.go
  • services/datasync/locations_smb.go
  • services/datasync/models.go
  • services/datasync/tasks.go
  • services/datasync/wire_field_fixes_test.go
  • services/dax/README.md
  • services/dax/handler_sdk_route_table_test.go
  • services/detective/handler_sdk_route_table_test.go
  • services/directconnect/PARITY.md
  • services/directconnect/README.md
  • services/directconnect/handler_sdk_route_table_test.go
  • services/directoryservice/PARITY.md
  • services/directoryservice/README.md
  • services/directoryservice/ad_assessments.go
  • services/directoryservice/certificates.go
  • services/directoryservice/handler.go
  • services/directoryservice/handler_ad_assessments.go
  • services/directoryservice/handler_ad_assessments_test.go
  • services/directoryservice/handler_ca_enrollment_sdk_test.go
  • services/directoryservice/handler_certificates.go
  • services/directoryservice/handler_certificates_test.go
  • services/directoryservice/handler_event_topics.go
  • services/directoryservice/handler_ldaps.go
  • services/directoryservice/handler_sdk_route_table_test.go
  • services/directoryservice/handler_settings.go
  • services/directoryservice/handler_settings_test.go
  • services/directoryservice/handler_shared_directories.go
  • services/directoryservice/handler_shared_directories_test.go
  • services/directoryservice/handler_test.go
  • services/directoryservice/handler_trusts.go
  • services/directoryservice/interfaces.go
  • services/directoryservice/isolation_test.go
  • services/directoryservice/models.go
  • services/directoryservice/persistence.go
  • services/directoryservice/persistence_test.go
  • services/directoryservice/shared_directories.go
  • services/directoryservice/store.go
  • services/directoryservice/wire_field_fixes_test.go
  • services/dlm/handler_sdk_route_table_test.go
  • services/dms/PARITY.md
  • services/dms/README.md
  • services/dms/handler_certificates.go
  • services/dms/handler_create_tags_test.go
  • services/dms/handler_data_migrations.go
  • services/dms/handler_data_providers.go
  • services/dms/handler_event_subscriptions.go
  • services/dms/handler_filters_test.go
  • services/dms/handler_metadata_model.go
  • services/dms/handler_metadata_model_test.go
  • services/dms/handler_migration_projects.go
  • services/dms/handler_migration_projects_test.go
  • services/dms/handler_replication_configs.go
  • services/dms/handler_replication_configs_test.go
  • services/dms/handler_replication_tasks.go
  • services/dms/handler_replication_tasks_test.go
  • services/dms/handler_sdk_route_table_test.go
  • services/dms/handler_tags_test.go
  • services/dms/handler_test.go
  • services/dms/metadata_model.go
  • services/dms/migration_projects.go
  • services/dms/models.go
  • services/dms/persistence_test.go
  • services/dms/reload_tables_test.go
  • services/dms/replication_configs.go
  • services/dms/serverless_replication_test.go
  • services/docdb/PARITY.md
  • services/docdb/README.md
  • services/docdb/db_cluster_snapshots.go
  • services/docdb/db_clusters.go
  • services/docdb/db_instances.go
  • services/docdb/deletion_protection_roundtrip_test.go
  • services/docdb/errors.go
  • services/docdb/global_clusters.go
  • services/docdb/handler.go
  • services/docdb/handler_db_cluster_snapshots.go
  • services/docdb/handler_db_cluster_snapshots_test.go
  • services/docdb/handler_db_clusters.go
  • services/docdb/handler_db_clusters_fields_test.go
  • services/docdb/handler_db_clusters_lifecycle_test.go
  • services/docdb/handler_db_clusters_restore_test.go
  • services/docdb/handler_db_clusters_test.go
  • services/docdb/handler_db_instances.go
  • services/docdb/handler_db_instances_test.go
  • services/docdb/handler_db_instances_validation_test.go
  • services/docdb/handler_global_clusters.go
  • services/docdb/handler_global_clusters_test.go
  • services/docdb/handler_sdk_roundtrip_test.go
  • services/docdb/handler_sdk_route_table_test.go
  • services/docdb/handler_test.go
  • services/docdb/models.go
  • services/dynamodb/PARITY.md
  • services/dynamodb/README.md
  • services/dynamodb/attributestoget_wire_test.go
  • services/dynamodb/autoscaling.go
  • services/dynamodb/autoscaling_status_agreement_internal_test.go
  • services/dynamodb/autoscaling_test.go
  • services/dynamodb/backend_interface_roundtrip_test.go
  • services/dynamodb/backup_interface.go
  • services/dynamodb/backup_ops.go
  • services/dynamodb/backup_ops_test.go
  • services/dynamodb/backup_size_wire_test.go
  • services/dynamodb/batch_test.go
  • services/dynamodb/benchmarks_test.go
  • services/dynamodb/continuous_backups_status_test.go
  • services/dynamodb/contributor_insights.go
  • services/dynamodb/contributor_insights_wire_test.go
  • services/dynamodb/execute_transaction.go
  • services/dynamodb/global_table_settings_wire_test.go
  • services/dynamodb/global_tables.go
  • services/dynamodb/handler.go
  • services/dynamodb/handler_autoscaling.go
  • services/dynamodb/handler_backups.go
  • services/dynamodb/handler_contributor_insights.go
  • services/dynamodb/handler_global_tables.go
  • services/dynamodb/handler_import.go
  • services/dynamodb/handler_kinesis_streaming.go
  • services/dynamodb/handler_resource_policy.go
  • services/dynamodb/handler_sdk_route_table_test.go
  • services/dynamodb/handler_streams_test.go
  • services/dynamodb/import_export_s3.go
  • services/dynamodb/import_wire_test.go
  • services/dynamodb/index_arn_wire_test.go
  • services/dynamodb/interfaces.go
  • services/dynamodb/item_collection_metrics_test.go
  • services/dynamodb/item_ops.go
  • services/dynamodb/item_ops_batch.go
  • services/dynamodb/item_ops_crud.go
  • services/dynamodb/item_ops_query.go
  • services/dynamodb/item_ops_scan.go
  • services/dynamodb/item_ops_test.go
  • services/dynamodb/kinesis_streaming.go
  • services/dynamodb/kinesis_streaming_test.go
  • services/dynamodb/legacy_conditional_params_test.go
  • services/dynamodb/legacy_conditions.go
  • services/dynamodb/legacy_query_scan.go
  • services/dynamodb/legacy_query_scan_test.go
  • services/dynamodb/list_exports_wire_test.go
  • services/dynamodb/models/convert_attrs.go
  • services/dynamodb/models/convert_ops.go
  • services/dynamodb/models/convert_table.go
  • services/dynamodb/models/types.go
  • services/dynamodb/partiql.go
  • services/dynamodb/partiql_test.go
  • services/dynamodb/query_secondary_index_test.go
  • services/dynamodb/query_test.go
  • services/dynamodb/resource_policy.go
  • services/dynamodb/resource_policy_test.go
  • services/dynamodb/restore_overrides_test.go
  • services/dynamodb/scan_test.go
  • services/dynamodb/secondary_index.go
  • services/dynamodb/secondary_index_internal_test.go
  • services/dynamodb/store.go
  • services/dynamodb/table_ops.go
  • services/dynamodb/table_ops_wire_test.go
  • services/dynamodb/throttle_test.go
  • services/dynamodb/transact_ops.go
  • services/dynamodb/transact_ops_test.go
  • services/dynamodb/transact_ops_wire_test.go
  • services/dynamodbstreams/handler_sdk_route_table_test.go
  • services/ec2/PARITY.md
  • services/ec2/carrier_gateways.go
  • services/ec2/cleanup_test.go
  • services/ec2/deepdive_ops.go
  • services/ec2/deepdive_ops_test.go
  • services/ec2/ec2core_test.go
  • services/ec2/errors.go
  • services/ec2/fleet.go
  • services/ec2/flow_logs_test.go
  • services/ec2/handler.go
  • services/ec2/handler_accept_ops.go
  • services/ec2/handler_advanced_networking.go
  • services/ec2/handler_byoip.go
  • services/ec2/handler_capacity_block.go
  • services/ec2/handler_capacity_reservation_fleet.go
  • services/ec2/handler_capacity_reservations.go
  • services/ec2/handler_carrier_gateways.go
  • services/ec2/handler_carrier_gateways_test.go
  • services/ec2/handler_client_vpn.go
  • services/ec2/handler_client_vpn_test.go
  • services/ec2/handler_core_test.go
  • services/ec2/handler_deepdive_ops.go
  • services/ec2/handler_ec2core.go
  • services/ec2/handler_elastic_ips.go
  • services/ec2/handler_filters.go
  • services/ec2/handler_fleet.go
  • services/ec2/handler_fleet_test.go
  • services/ec2/handler_flow_logs_test.go
  • services/ec2/handler_host_reservations.go
  • services/ec2/handler_images.go
  • services/ec2/handler_images_test.go
  • services/ec2/handler_instances.go
  • services/ec2/handler_instances_lifecycle.go
  • services/ec2/handler_instances_test.go
  • services/ec2/handler_internet_gateways.go
  • services/ec2/handler_launch_templates.go
  • services/ec2/handler_launch_templates_test.go
  • services/ec2/handler_network_insights.go
  • services/ec2/handler_network_interfaces.go
  • services/ec2/handler_networking1.go
  • services/ec2/handler_placement_groups.go
  • services/ec2/handler_prefix_lists.go
  • services/ec2/handler_prefix_lists_test.go
  • services/ec2/handler_reserved_instances.go
  • services/ec2/handler_route_server.go
  • services/ec2/handler_route_tables.go
  • services/ec2/handler_sdk_route_table_test.go
  • services/ec2/handler_security_groups.go
  • services/ec2/handler_spot_fleet.go
  • services/ec2/handler_spot_instances.go
  • services/ec2/handler_subnets.go
  • services/ec2/handler_subnets_test.go
  • services/ec2/handler_test.go
  • services/ec2/handler_tgw_peripherals.go
  • services/ec2/handler_traffic_mirror.go
  • services/ec2/handler_traffic_mirror_test.go
  • services/ec2/handler_transit_gateway_peering.go
  • services/ec2/handler_transit_gateway_peering_test.go
  • services/ec2/handler_transit_gateways.go
  • services/ec2/handler_transit_gateways_test.go
  • services/ec2/handler_verified_access.go
  • services/ec2/handler_verified_access_policy.go
  • services/ec2/handler_verified_access_test.go
  • services/ec2/handler_volumes.go
  • services/ec2/handler_vpc_endpoint_services.go
  • services/ec2/handler_vpc_endpoints.go
  • services/ec2/handler_vpc_endpoints_test.go
  • services/ec2/handler_vpcs.go
  • services/ec2/handler_vpn_family_test.go
  • services/ec2/images.go
  • services/ec2/images_test.go
  • services/ec2/instances.go
  • services/ec2/instances_test.go
  • services/ec2/interfaces.go
  • services/ec2/janitor_test.go
  • services/ec2/launch_templates.go
  • services/ec2/launch_templates_test.go
  • services/ec2/network_acls.go
  • services/ec2/networking1.go
  • services/ec2/networking1_test.go
  • services/ec2/persistence_test.go
  • services/ec2/placement_groups.go
  • services/ec2/placement_groups_test.go
  • services/ec2/prefix_lists.go
  • services/ec2/security_groups_test.go
  • services/ec2/spot_instances.go
  • services/ec2/spot_instances_test.go
  • services/ec2/store.go
  • services/ec2/store_outpost_reservation_internal_test.go
  • services/ec2/subnets.go
  • services/ec2/traffic_mirror.go
  • services/ec2/transit_gateway_peering.go
  • services/ec2/transit_gateways.go
  • services/ec2/verified_access.go
  • services/ec2/vpc_endpoints.go
  • services/ec2/wire_field_fixes_ec2sweep10_test.go
  • services/ec2/wire_field_fixes_ec2sweep3_test.go
  • services/ec2/wire_field_fixes_ec2sweep4_test.go
  • services/ec2/wire_field_fixes_ec2sweep5_test.go
  • services/ec2/wire_field_fixes_ec2sweep6_test.go
  • services/ec2/wire_field_fixes_ec2sweep7_test.go
  • services/ec2/wire_field_fixes_ec2sweep8_test.go
  • services/ec2/wire_field_fixes_ec2sweep9_test.go
  • services/ec2/wire_field_fixes_test.go
  • services/ecr/PARITY.md
  • services/ecr/README.md
  • services/ecr/handler_image_scanning.go
  • services/ecr/handler_images.go
  • services/ecr/handler_registry_policy.go
  • services/ecr/handler_repository_creation_templates.go
  • services/ecr/handler_sdk_route_table_test.go
  • services/ecr/handler_signing.go
  • services/ecr/image_scanning.go
  • services/ecr/image_scanning_test.go
  • services/ecr/models.go
  • services/ecr/wire_field_fixes_test.go
  • services/ecs/PARITY.md
  • services/ecs/README.md
  • services/ecs/capacity_providers.go
  • services/ecs/clusters_internal_test.go
  • services/ecs/handler_agent_ops.go
  • services/ecs/handler_agent_ops_test.go
  • services/ecs/handler_capacity_providers.go
  • services/ecs/handler_capacity_providers_test.go
  • services/ecs/handler_clusters_test.go
  • services/ecs/handler_sdk_route_table_test.go
  • services/ecs/handler_service_deployments.go
  • services/ecs/handler_service_deployments_test.go
  • services/ecs/handler_service_deployments_wiring_test.go
  • services/ecs/handler_services_deployments_test.go
  • services/ecs/handler_task_definitions.go
  • services/ecs/handler_task_definitions_test.go
  • services/ecs/handler_task_sets.go
  • services/ecs/handler_task_sets_test.go
  • services/ecs/interfaces.go
  • services/ecs/models.go
  • services/ecs/pagination_test.go
  • services/ecs/persistence_internal_test.go
  • services/ecs/service_deployments.go
  • services/ecs/task_sets.go
  • services/ecs/tasks.go
  • services/ecs/wire_field_fixes_ecs1_test.go
  • services/efs/handler_sdk_route_table_test.go
  • services/eks/PARITY.md
  • services/eks/README.md
  • services/eks/handler_insights.go
  • services/eks/handler_insights_internal_test.go
  • services/eks/handler_sdk_route_table_test.go
  • services/eks/insights_test.go
  • services/elasticache/PARITY.md
  • services/elasticache/README.md
  • services/elasticache/errors.go
  • services/elasticache/global_replication_groups.go
  • services/elasticache/global_replication_groups_test.go
  • services/elasticache/handler_apply_immediately_test.go
  • services/elasticache/handler_cache_clusters.go
  • services/elasticache/handler_global_replication_groups.go
  • services/elasticache/handler_new_sdk_fields_test.go
  • services/elasticache/handler_replication_groups.go
  • services/elasticache/handler_sdk_route_table_test.go
  • services/elasticache/handler_serverless.go
  • services/elasticache/handler_snapshots.go
  • services/elasticache/lifecycle_test.go
  • services/elasticache/models.go
  • services/elasticache/persistence_test.go
  • services/elasticache/replication_groups.go
  • services/elasticache/replication_groups_test.go
  • services/elasticache/serverless.go
  • services/elasticache/snapshots.go
  • services/elasticache/wire_field_fixes_test.go
  • services/elasticbeanstalk/PARITY.md
  • services/elasticbeanstalk/README.md
  • services/elasticbeanstalk/environments.go
  • services/elasticbeanstalk/events.go
  • services/elasticbeanstalk/handler.go
  • services/elasticbeanstalk/handler_application_versions.go
  • services/elasticbeanstalk/handler_configuration_templates.go
  • services/elasticbeanstalk/handler_configuration_templates_test.go
  • services/elasticbeanstalk/handler_environments.go
  • services/elasticbeanstalk/handler_environments_test.go
  • services/elasticbeanstalk/handler_events.go
  • services/elasticbeanstalk/handler_instances_health.go
  • services/elasticbeanstalk/handler_managed_actions.go
  • services/elasticbeanstalk/handler_platforms.go
  • services/elasticbeanstalk/handler_platforms_test.go
  • services/elasticbeanstalk/handler_sdk_route_table_test.go
  • services/elasticbeanstalk/handler_test.go
  • services/elasticbeanstalk/models.go
  • services/elasticbeanstalk/wire_field_fixes_test.go
  • services/elasticsearch/PARITY.md
  • services/elasticsearch/README.md
  • services/elasticsearch/handler.go
  • services/elasticsearch/handler_domain_config.go
  • services/elasticsearch/handler_domain_config_test.go
  • services/elasticsearch/handler_outbound_connections.go
  • services/elasticsearch/handler_outbound_connections_test.go
  • services/elasticsearch/handler_routing.go
  • services/elasticsearch/handler_sdk_roundtrip_test.go
  • services/elasticsearch/handler_sdk_route_table_test.go
  • services/elasticsearch/handler_vpc_endpoints.go
  • services/elasticsearch/handler_vpc_endpoints_test.go
  • services/elasticsearch/models.go
  • services/elasticsearch/persistence_test.go
  • services/elasticsearch/store.go
  • services/elasticsearch/store_test.go
  • services/elasticsearch/vpc_endpoints.go
  • services/elasticsearch/wire_field_fixes_test.go
  • services/elb/PARITY.md
  • services/elb/handler_load_balancers.go
  • services/elb/handler_sdk_route_table_test.go
  • services/elb/load_balancers_describe_test.go
  • services/elbv2/PARITY.md
  • services/elbv2/README.md
  • services/elbv2/deletion_protection_roundtrip_test.go
  • services/elbv2/empty_result_element_test.go
  • services/elbv2/errors.go
  • services/elbv2/handler.go
  • services/elbv2/handler_listener_certificates.go
  • services/elbv2/handler_listener_rules.go
  • services/elbv2/handler_listeners.go
  • services/elbv2/handler_load_balancers.go
  • services/elbv2/handler_sdk_route_table_test.go
  • services/elbv2/handler_target_groups.go
  • services/elbv2/handler_trust_stores.go
  • services/elbv2/handler_trust_stores_realclient_test.go
  • services/elbv2/interfaces.go
  • services/elbv2/load_balancers.go
  • services/elbv2/models.go
  • services/elbv2/persistence_test.go
  • services/elbv2/trust_stores.go
  • services/elbv2/trust_stores_test.go
  • services/elbv2/wire_field_fixes_elbv2sweep1_test.go
  • services/emr/PARITY.md
  • services/emr/README.md
  • services/emr/clusters.go
  • services/emr/handler_clusters.go
  • services/emr/handler_notebook_executions.go
  • services/emr/handler_notebook_executions_test.go
  • services/emr/handler_persistent_app_ui.go
  • services/emr/handler_sdk_route_table_test.go
  • services/emr/handler_steps.go
  • services/emr/handler_studios.go
  • services/emr/handler_studios_test.go
  • services/emr/handler_test.go
  • services/emr/handler_wire_shape_test.go
  • services/emr/isolation_test.go
  • services/emr/janitor.go
  • services/emr/models.go
  • services/emr/persistence.go
  • services/emr/persistence_test.go
  • services/emr/persistent_app_ui.go
  • services/emr/steps.go
  • services/emr/studios.go
  • services/emr/wire_field_fixes_test.go
  • services/emrserverless/PARITY.md
  • services/emrserverless/README.md
  • services/emrserverless/handler.go
  • services/emrserverless/handler_list_summary_test.go
  • services/emrserverless/handler_sdk_route_table_test.go
  • services/emrserverless/session_handler.go
  • services/eventbridge/PARITY.md
  • services/eventbridge/accessors.go
  • services/eventbridge/archives.go
  • services/eventbridge/archives_test.go
  • services/eventbridge/delivery_retry_test.go
  • services/eventbridge/endpoints_test.go
  • services/eventbridge/event_buses.go
  • services/eventbridge/event_buses_test.go
  • services/eventbridge/handler_api_destinations.go
  • services/eventbridge/handler_archives.go
  • services/eventbridge/handler_archives_test.go
  • services/eventbridge/handler_connections.go
  • services/eventbridge/handler_dispatch.go
  • services/eventbridge/handler_endpoints.go
  • services/eventbridge/handler_event_buses.go
  • services/eventbridge/handler_event_buses_test.go
  • services/eventbridge/handler_event_sources.go
  • services/eventbridge/handler_event_sources_test.go
  • services/eventbridge/handler_partner_source_accounts_sdk_test.go
  • services/eventbridge/handler_partner_sources.go
  • services/eventbridge/handler_pipes.go
  • services/eventbridge/handler_pipes_test.go
  • services/eventbridge/handler_registries.go
  • services/eventbridge/handler_replays.go
  • services/eventbridge/handler_schemas.go
  • services/eventbridge/handler_schemas_real_client_test.go
  • services/eventbridge/handler_schemas_rest.go
  • services/eventbridge/handler_schemas_rest_route_table_test.go
  • services/eventbridge/handler_sdk_route_table_test.go
  • services/eventbridge/handler_test.go
  • services/eventbridge/isolation_test.go
  • services/eventbridge/models.go
  • services/eventbridge/partner_sources.go
  • services/eventbridge/persistence.go
  • services/eventbridge/persistence_test.go
  • services/eventbridge/pipes.go
  • services/eventbridge/pipes_test.go
  • services/eventbridge/put_events_test.go
  • services/eventbridge/region_isolation_test.go
  • services/eventbridge/replays.go
  • services/eventbridge/replays_test.go
  • services/eventbridge/sdk_completeness_test.go
  • services/eventbridge/store.go
  • services/eventbridge/store_setup.go
  • services/eventbridge/store_test.go
  • services/eventbridge/wire_field_fixes_test.go
  • services/firehose/handler_sdk_route_table_test.go
  • services/fis/handler_sdk_route_table_test.go
  • services/forecast/PARITY.md
  • services/forecast/README.md
  • services/forecast/accuracy_metrics_test.go
  • services/forecast/handler.go
  • services/forecast/handler_sdk_route_table_test.go
  • services/forecast/handler_test.go
  • services/forecast/persistence_test.go
  • services/forecast/predictors_test.go
  • services/forecast/store.go
  • services/forecast/store_test.go
  • services/forecast/validation.go
  • services/forecast/validation_test.go
  • services/fsx/PARITY.md
  • services/fsx/README.md
  • services/fsx/data_repository_tasks.go
  • services/fsx/file_caches.go
  • services/fsx/file_systems.go
  • services/fsx/handler_backups_test.go
  • services/fsx/handler_data_repository_tasks_test.go
  • services/fsx/handler_file_caches_test.go
  • services/fsx/handler_sdk_route_table_test.go
  • services/fsx/handler_test.go
  • services/fsx/interfaces.go
  • services/fsx/persistence_test.go
  • services/glacier/PARITY.md
  • services/glacier/README.md
  • services/glacier/archives.go
  • services/glacier/errors.go
  • services/glacier/handler.go
  • services/glacier/handler_sdk_route_table_test.go
  • services/glacier/handler_vault_lock.go
  • services/glacier/handler_vault_lock_test.go
  • services/glacier/persistence_test.go
  • services/glacier/sdk_vault_lock_enforcement_test.go
  • services/glacier/vault_lock.go
  • services/glacier/vault_lock_policy_eval.go
  • services/glacier/vaults.go
  • services/glue/PARITY.md
  • services/glue/README.md
  • services/glue/connection_types.go
  • services/glue/crawlers.go
  • services/glue/entities_test.go
  • services/glue/handler.go
  • services/glue/handler_blueprints.go
  • services/glue/handler_catalogs.go
  • services/glue/handler_classifiers.go
  • services/glue/handler_column_statistics.go
  • services/glue/handler_connection_types.go
  • services/glue/handler_connection_types_sdk_test.go
  • services/glue/handler_connection_types_test.go
  • services/glue/handler_connections.go
  • services/glue/handler_crawlers.go
  • services/glue/handler_custom_entity_types.go
  • services/glue/handler_data_quality_rulesets.go
  • services/glue/handler_data_quality_stats.go
  • services/glue/handler_dev_endpoints.go
  • services/glue/handler_entities_test.go
  • services/glue/handler_filter_sweep_sdk_test.go
  • services/glue/handler_identity_center.go
  • services/glue/handler_identity_center_sdk_test.go
  • services/glue/handler_integrations.go
  • services/glue/handler_integrations_test.go
  • services/glue/handler_jobs.go
  • services/glue/handler_materialized_views.go
  • services/glue/handler_ml.go
  • services/glue/handler_pagination_sweep_sdk_test.go
  • services/glue/handler_register_connection_type_test.go
  • services/glue/handler_schemas.go
  • services/glue/handler_schemas_test.go
  • services/glue/handler_sdk_route_table_test.go
  • services/glue/handler_security_configurations.go
  • services/glue/handler_sessions.go
  • services/glue/handler_timestamp_sweep_sdk_test.go
  • services/glue/handler_triggers.go
  • services/glue/handler_usage_profiles.go
  • services/glue/handler_workflows.go
  • services/glue/identity_center.go
  • services/glue/integrations.go
  • services/glue/interfaces.go
  • services/glue/jobs.go
  • services/glue/lifecycle_advance_test.go
  • services/glue/models.go
  • services/glue/persistence_test.go
  • services/glue/tables_test.go
  • services/grafana/README.md
  • services/grafana/handler_sdk_route_table_test.go
  • services/guardduty/PARITY.md
  • services/guardduty/README.md
  • services/guardduty/coverage_statistics.go
  • services/guardduty/coverage_statistics_test.go
  • services/guardduty/filters.go
  • services/guardduty/handler_coverage_statistics.go
  • services/guardduty/handler_coverage_statistics_sdk_test.go
  • services/guardduty/handler_filters.go
  • services/guardduty/handler_ip_and_threatintel_sets.go
  • services/guardduty/handler_malware_protection.go
  • services/guardduty/handler_members.go
  • services/guardduty/handler_organization.go
  • services/guardduty/handler_sdk_route_table_test.go
  • services/guardduty/interfaces.go
  • services/guardduty/ip_and_threatintel_sets.go
  • services/guardduty/models.go
  • services/guardduty/organization.go
  • services/guardduty/persistence_test.go
  • services/guardduty/wire_field_fixes_test.go
  • services/iam/PARITY.md
  • services/iam/README.md
  • services/iam/account.go
  • services/iam/account_test.go
  • services/iam/delegation_requests_whitebox_test.go
  • services/iam/errors.go
  • services/iam/handler.go
  • services/iam/handler_account.go
  • services/iam/handler_account_config_test.go
  • services/iam/handler_extended_dispatch_test.go
  • services/iam/handler_providers.go
  • services/iam/handler_sdk_route_table_test.go
  • services/iam/handler_server_certificates.go
  • services/iam/handler_server_certificates_test.go
  • services/iam/handler_ssh_keys.go
  • services/iam/models_access_advisor.go
  • services/iam/models_account.go
  • services/iam/models_simulation_types.go
  • services/iam/persistence.go
  • services/iam/persistence_test.go
  • services/iam/required_members_test.go
  • services/iam/roles_test.go
  • services/iam/server_cert_test.go
  • services/iam/ssh_keys.go
  • services/iam/store.go
  • services/iam/wire_output_required_r80d_test.go
  • services/identitystore/handler_sdk_route_table_test.go
  • services/inspector2/PARITY.md
  • services/inspector2/code_security.go
  • services/inspector2/handler.go
  • services/inspector2/handler_cis_scans.go
  • services/inspector2/handler_cis_scans_test.go
  • services/inspector2/handler_code_security.go
  • services/inspector2/handler_code_security_test.go
  • services/inspector2/handler_ec2_configuration.go
  • services/inspector2/handler_ec2_configuration_test.go
  • services/inspector2/handler_organization.go
  • services/inspector2/handler_sdk_route_table_test.go
  • services/inspector2/handler_test.go
  • services/inspector2/sdk_response_keys_test.go
  • services/inspector2/sdk_roundtrip_helper_test.go
  • services/iot/PARITY.md
  • services/iot/README.md
  • services/iot/commands.go
  • services/iot/handler.go
  • services/iot/handler_audit.go
  • services/iot/handler_certificates.go
  • services/iot/handler_commands.go
  • services/iot/handler_commands_test.go
  • services/iot/handler_constants.go
  • services/iot/handler_logging.go
  • services/iot/handler_metrics.go
  • services/iot/handler_metrics_test.go
  • services/iot/handler_packages.go
  • services/iot/handler_packages_test.go
  • services/iot/handler_policies.go
  • services/iot/handler_policies_test.go
  • services/iot/handler_routing.go
  • services/iot/handler_sdk_route_table_test.go
  • services/iot/handler_tags.go
  • services/iot/handler_test.go
  • services/iot/handler_thing_registration.go
  • services/iot/handler_topic_rules.go
  • services/iot/interfaces.go
  • services/iot/metrics.go
  • services/iot/route_matcher_whitebox_test.go
  • services/iotanalytics/handler_sdk_route_table_test.go
  • services/iotdataplane/README.md
  • services/iotdataplane/handler_sdk_route_table_test.go
  • services/iotwireless/PARITY.md
  • services/iotwireless/README.md
  • services/iotwireless/handler_fuota_tasks_test.go
  • services/iotwireless/handler_paths_sdk_diff_test.go
  • services/iotwireless/handler_wireless_gateways_test.go
  • services/kafka/PARITY.md
  • services/kafka/README.md
  • services/kafka/cluster_field_fixes_test.go
  • services/kafka/cluster_updates.go
  • services/kafka/cluster_updates_test.go
  • services/kafka/clusters.go
  • services/kafka/errors_test.go
  • services/kafka/handler_cluster_operations.go
  • services/kafka/handler_cluster_operations_test.go
  • services/kafka/handler_cluster_updates.go
  • services/kafka/handler_cluster_updates_test.go
  • services/kafka/handler_clusters.go
  • services/kafka/handler_rebalancing_sdk_test.go
  • services/kafka/handler_replicators.go
  • services/kafka/handler_sdk_route_table_test.go
  • services/kafka/interfaces.go
  • services/kafka/models.go
  • services/kafka/persistence_test.go
  • services/kafka/replicator_log_delivery_test.go
  • services/kafka/replicators.go
  • services/kafka/replicators_test.go
  • services/kafka/store.go
  • services/kinesis/PARITY.md
  • services/kinesis/README.md
  • services/kinesis/account_settings.go
  • services/kinesis/account_settings_test.go
  • services/kinesis/delete_stream_consumers_test.go
  • services/kinesis/errors.go
  • services/kinesis/get_records_child_shards_test.go
  • services/kinesis/handler.go
  • services/kinesis/handler_account_settings.go
  • services/kinesis/handler_max_record_size_test.go
  • services/kinesis/handler_records.go
  • services/kinesis/handler_sdk_route_table_test.go
  • services/kinesis/handler_stream_modes.go
  • services/kinesis/handler_streams.go
  • services/kinesis/handler_test.go
  • services/kinesis/interfaces.go
  • services/kinesis/models.go
  • services/kinesis/persistence.go
  • services/kinesis/persistence_roundtrip_test.go
  • services/kinesis/persistence_test.go
  • services/kinesis/records.go
  • services/kinesis/records_get_test.go
  • services/kinesis/store.go
  • services/kinesis/stream_modes.go
  • services/kinesis/stream_modes_test.go
  • services/kinesis/streams.go
  • services/kinesis/streams_test.go
  • services/kinesisanalytics/handler_sdk_route_table_test.go
  • services/kinesisanalyticsv2/handler_sdk_route_table_test.go
  • services/kms/PARITY.md
  • services/kms/grants.go
  • services/kms/handler_grants_policies_test.go
  • services/kms/handler_keys.go
  • services/kms/handler_replication_maintenance.go
  • services/kms/handler_sdk_route_table_test.go
  • services/kms/keys.go
  • services/kms/models.go
  • services/kms/mutating_ops_gopherstack_7185_test.go
  • services/kms/replication.go
  • services/kms/wire_field_fixes_test.go
  • services/lakeformation/PARITY.md
  • services/lakeformation/README.md
  • services/lakeformation/exports_test.go
  • services/lakeformation/handler_credentials.go
  • services/lakeformation/handler_credentials_test.go
  • services/lakeformation/handler_lake_formation_identity_center.go
  • services/lakeformation/handler_lake_formation_identity_center_test.go
  • services/lakeformation/handler_sdk_route_table_test.go
  • services/lakeformation/handler_work_unit_results_sdk_test.go
  • services/lakeformation/handler_work_units.go
  • services/lakeformation/host_prefix_reachability_test.go
  • services/lakeformation/interfaces.go
  • services/lakeformation/lake_formation_identity_center.go
  • services/lakeformation/lake_formation_identity_center_test.go
  • services/lakeformation/models.go
  • services/lakeformation/persistence_test.go
  • services/lakeformation/wire_field_fixes_test.go
  • services/lakeformation/work_units.go
  • services/lambda/PARITY.md
  • services/lambda/README.md
  • services/lambda/capacity_providers.go
  • services/lambda/capacity_providers_test.go
  • services/lambda/dispatch_test.go
  • services/lambda/event_invoke_config_test.go
  • services/lambda/function_fields_test.go
  • services/lambda/function_settings_test.go
  • services/lambda/handler.go
  • services/lambda/handler_capacity_providers.go
  • services/lambda/handler_dispatch.go
  • services/lambda/handler_event_invoke_config.go
  • services/lambda/handler_function_settings.go
  • services/lambda/handler_functions.go
  • services/lambda/handler_layers.go
  • services/lambda/handler_paths.go
  • services/lambda/handler_paths_sdk_diff_test.go
  • services/lambda/handler_routing_test.go
  • services/lambda/handler_tags_iam_test.go
  • services/lambda/invocation_test.go
  • services/lambda/layers_http_test.go
  • services/lambda/models.go
  • services/lambda/tags_test.go
  • services/lambda/versions_aliases.go
  • services/lightsail/PARITY.md
  • services/lightsail/README.md
  • services/lightsail/certificates_distributions.go
  • services/lightsail/handler_distributions_certs.go
  • services/lightsail/handler_instance_access.go
  • services/lightsail/handler_sdk_route_table_test.go
  • services/lightsail/models.go
  • services/lightsail/sdk_roundtrip_network_test.go
  • services/macie2/PARITY.md
  • services/macie2/buckets.go
  • services/macie2/handler.go
  • services/macie2/handler_buckets_test.go
  • services/macie2/handler_custom_data_identifiers.go
  • services/macie2/handler_resource_profiles_test.go
  • services/macie2/handler_sdk_route_table_test.go
  • services/macie2/handler_test.go
  • services/macie2/handler_usage_test.go
  • services/macie2/models.go
  • services/macie2/resource_profiles.go
  • services/macie2/wire_field_fixes_test.go
  • services/managedblockchain/handler_sdk_route_table_test.go
  • services/mediaconvert/PARITY.md
  • services/mediaconvert/README.md
  • services/mediaconvert/handler_queues.go
  • services/mediaconvert/handler_sdk_route_table_test.go
  • services/mediaconvert/interfaces.go
  • services/mediaconvert/models.go
  • services/mediaconvert/persistence_test.go
  • services/mediaconvert/queues.go
  • services/mediaconvert/queues_test.go
  • services/medialive/PARITY.md
  • services/medialive/README.md
  • services/medialive/handler_channels.go
  • services/medialive/handler_channels_test.go
  • services/medialive/handler_input_devices.go
  • services/medialive/handler_inputdevice_test.go
  • services/medialive/handler_paths_sdk_diff_test.go
  • services/medialive/handler_signal_maps.go
  • services/medialive/handler_signal_maps_test.go
  • services/medialive/input_devices.go
  • services/medialive/interfaces.go
  • services/medialive/models.go
  • services/medialive/wire_shape_test.go
  • services/mediapackage/handler_sdk_route_table_test.go
  • services/mediastore/handler_sdk_route_table_test.go
  • services/mediastoredata/handler_sdk_route_table_test.go
  • services/mediatailor/PARITY.md
  • services/mediatailor/README.md
  • services/mediatailor/functions.go
  • services/mediatailor/functions_test.go
  • services/mediatailor/handler.go
  • services/mediatailor/handler_channels.go
  • services/mediatailor/handler_functions.go
  • services/mediatailor/handler_helpers.go
  • services/mediatailor/handler_live_sources.go
  • services/mediatailor/handler_logs.go
  • services/mediatailor/handler_playback_configurations.go
  • services/mediatailor/handler_playback_configurations_test.go
  • services/mediatailor/handler_prefetch_schedules.go
  • services/mediatailor/handler_prefetch_schedules_test.go
  • services/mediatailor/handler_sdk_route_table_test.go
  • services/mediatailor/handler_vod_sources.go
  • services/mediatailor/interfaces.go
  • services/mediatailor/live_sources.go
  • services/mediatailor/persistence_test.go
  • services/mediatailor/playback_configurations.go
  • services/mediatailor/vod_sources.go
  • services/mediatailor/wire_field_fixes_test.go
  • services/memorydb/PARITY.md
  • services/memorydb/README.md
  • services/memorydb/clusters.go
  • services/memorydb/errcode_test.go
  • services/memorydb/handler_clusters_lifecycle_test.go
  • services/memorydb/handler_engine_versions.go
  • services/memorydb/handler_multi_region_clusters.go
  • services/memorydb/handler_multi_region_clusters_test.go
  • services/memorydb/handler_reserved_nodes.go
  • services/memorydb/handler_sdk_route_table_test.go
  • services/memorydb/models_clusters.go
  • services/memorydb/models_multi_region_clusters.go
  • services/memorydb/models_reserved_nodes.go
  • services/memorydb/models_snapshots.go
  • services/memorydb/multi_region_clusters.go
  • services/memorydb/reserved_nodes.go
  • services/memorydb/snapshots.go
  • services/memorydb/wire_field_fixes_test.go
  • services/mgn/PARITY.md
  • services/mgn/handler_paths_sdk_diff_test.go
  • services/mq/handler_sdk_route_table_test.go
  • services/mwaa/PARITY.md
  • services/mwaa/handler_sdk_route_table_test.go
  • services/mwaa/host_prefix_reachability_test.go
  • services/neptune/PARITY.md
  • services/neptune/README.md
  • services/neptune/db_clusters.go
  • services/neptune/db_instances.go
  • services/neptune/deletion_protection_roundtrip_test.go
  • services/neptune/errors.go
  • services/neptune/event_subscriptions.go
  • services/neptune/global_clusters.go
  • services/neptune/handler.go
  • services/neptune/handler_cluster_snapshots_test.go
  • services/neptune/handler_db_clusters.go
  • services/neptune/handler_db_clusters_lifecycle_test.go
  • services/neptune/handler_db_instances.go
  • services/neptune/handler_db_instances_test.go
  • services/neptune/handler_event_subscriptions.go
  • services/neptune/handler_global_clusters.go
  • services/neptune/handler_network_type_test.go
  • services/neptune/handler_sdk_roundtrip_test.go
  • services/neptune/handler_sdk_route_table_test.go
  • services/neptune/handler_subnet_groups.go
  • services/neptune/handler_subnet_groups_test.go
  • services/neptune/interfaces.go
  • services/neptune/isolation_test.go
  • services/neptune/maintenance_test.go
  • services/neptune/models.go
  • services/neptune/store.go
  • services/neptune/store_conversion_test.go
  • services/networkmanager/PARITY.md
  • services/networkmanager/README.md
  • services/networkmanager/attachments.go
  • services/networkmanager/handler_corenetworks.go
  • services/networkmanager/handler_introspection.go
  • services/networkmanager/handler_sdk_route_table_test.go
  • services/networkmanager/introspection.go
  • services/networkmanager/models.go
  • services/networkmanager/peerings.go
  • services/networkmanager/routeanalysis.go
  • services/networkmanager/wire.go
  • services/networkmanager/wire_convert.go
  • services/networkmanager/wire_field_fixes_test.go
  • services/networkmonitor/handler_sdk_route_table_test.go
  • services/omics/PARITY.md
  • services/omics/annotation_stores.go
  • services/omics/configurations.go
  • services/omics/handler.go
  • services/omics/handler_annotation_stores.go
  • services/omics/handler_annotation_stores_test.go
  • services/omics/handler_configurations.go
  • services/omics/handler_configurations_test.go
  • services/omics/handler_read_sets.go
  • services/omics/handler_read_sets_test.go
  • services/omics/handler_runs.go
  • services/omics/handler_runs_test.go
  • services/omics/handler_sdk_route_table_test.go
  • services/omics/handler_variant_stores.go
  • services/omics/handler_variant_stores_test.go
  • services/omics/handler_workflows.go
  • services/omics/handler_workflows_test.go
  • services/omics/host_prefix_reachability_test.go
  • services/omics/interfaces.go
  • services/omics/lifecycle_poll_test.go
  • services/omics/models.go
  • services/omics/pagination_query_params_test.go
  • services/omics/persistence_test.go
  • services/omics/variant_stores.go
  • services/omics/wire_field_additions_test.go
  • services/omics/wire_list_wrapper_keys_test.go
  • services/opensearch/PARITY.md
  • services/opensearch/README.md
  • services/opensearch/documents_handler_test.go
  • services/opensearch/documents_test.go
  • services/opensearch/handler.go
  • services/opensearch/handler_advanced.go
  • services/opensearch/handler_advanced_test.go
  • services/opensearch/handler_applications.go
  • services/opensearch/handler_applications_test.go
  • services/opensearch/handler_capabilities.go
  • services/opensearch/handler_domain_config_test.go
  • services/opensearch/handler_domain_maintenance_test.go
  • services/opensearch/handler_domain_status_test.go
  • services/opensearch/handler_domains.go
  • services/opensearch/handler_domains_test.go
  • services/opensearch/handler_inbound_connections.go
  • services/opensearch/handler_inbound_connections_test.go
  • services/opensearch/handler_indices.go
  • services/opensearch/handler_indices_test.go
  • services/opensearch/handler_operations.go
  • services/opensearch/handler_operations_test.go
  • services/opensearch/handler_outbound_connections.go
  • services/opensearch/handler_outbound_connections_test.go
  • services/opensearch/handler_packages.go
  • services/opensearch/handler_packages_test.go
  • services/opensearch/handler_paths_sdk_diff_test.go
  • services/opensearch/handler_reserved_instances.go
  • services/opensearch/handler_reserved_instances_test.go
  • services/opensearch/handler_serverless.go
  • services/opensearch/handler_serverless_jsonrpc.go
  • services/opensearch/handler_serverless_real_client_test.go
  • services/opensearch/handler_serverless_test.go
  • services/opensearch/handler_update_package_scope_test.go
  • services/opensearch/handler_vpc_endpoints.go
  • services/opensearch/handler_vpc_endpoints_test.go
  • services/opensearch/indices.go
  • services/opensearch/interfaces.go
  • services/opensearch/models.go
  • services/opensearch/packages.go
  • services/opensearch/persistence_test.go
  • services/opensearch/wire_output_required_r80d_test.go
  • services/opensearch/wire_shape_test.go
  • services/opsworks/PARITY.md
  • services/opsworks/README.md
  • services/opsworks/elastic_ips.go
  • services/opsworks/elastic_ips_test.go
  • services/opsworks/elastic_load_balancers.go
  • services/opsworks/elastic_load_balancers_test.go
  • services/opsworks/handler_elastic_ips.go
  • services/opsworks/handler_elastic_load_balancers.go
  • services/opsworks/handler_stacks.go
  • services/opsworks/interfaces.go
  • services/opsworks/models.go
  • services/opsworks/persistence_test.go
  • services/opsworks/stacks.go
  • services/opsworks/stacks_test.go
  • services/organizations/PARITY.md
  • services/organizations/README.md
  • services/organizations/accounts.go
  • services/organizations/arn.go
  • services/organizations/delegated_administrators_test.go
  • services/organizations/errors.go
  • services/organizations/handler.go
  • services/organizations/handler_accounts.go
  • services/organizations/handler_accounts_test.go
  • services/organizations/handler_effective_policy.go
  • services/organizations/handler_handshakes.go
  • services/organizations/handler_handshakes_test.go
  • services/organizations/handler_organizational_units.go
  • services/organizations/handler_sdk_route_table_test.go
  • services/organizations/handler_transfer_responsibility_test.go
  • services/organizations/handshakes.go
  • services/organizations/handshakes_test.go
  • services/organizations/ids.go
  • services/organizations/interfaces.go
  • services/organizations/models.go
  • services/organizations/organizational_units.go
  • services/organizations/paths.go
  • services/organizations/paths_test.go
  • services/organizations/persistence.go
  • services/organizations/store.go
  • services/organizations/store_setup.go
  • services/organizations/wire_shape_test.go
  • services/outposts/PARITY.md
  • services/outposts/README.md
  • services/outposts/handler_sdk_route_table_test.go
  • services/personalize/PARITY.md
  • services/personalize/README.md
  • services/personalize/handler.go
  • services/personalize/handler_batch_jobs.go
  • services/personalize/handler_campaigns.go
  • services/personalize/handler_data_deletion_jobs.go
  • services/personalize/handler_dataset_groups.go
  • services/personalize/handler_datasets.go
  • services/personalize/handler_event_trackers.go
  • services/personalize/handler_filters.go
  • services/personalize/handler_list_summary_test.go
  • services/personalize/handler_metric_attribution.go
  • services/personalize/handler_recommenders.go
  • services/personalize/handler_runtime_real_client_test.go
  • services/personalize/handler_schemas.go
  • services/personalize/handler_sdk_route_table_test.go
  • services/personalize/handler_solutions.go
  • services/personalize/recipes.go
  • services/personalize/store.go
  • services/personalize/wire_field_fixes_test.go
  • services/pinpoint/PARITY.md
  • services/pinpoint/README.md
  • services/pinpoint/applications_settings.go
  • services/pinpoint/campaigns.go
  • services/pinpoint/endpoints.go
  • services/pinpoint/export_import_jobs_test.go
  • services/pinpoint/handler.go
  • services/pinpoint/handler_applications_settings.go
  • services/pinpoint/handler_campaigns.go
  • services/pinpoint/handler_endpoints.go
  • services/pinpoint/handler_export_import_jobs.go
  • services/pinpoint/handler_journeys.go
  • services/pinpoint/handler_paths_sdk_diff_test.go
  • services/pinpoint/handler_recommender_configurations.go
  • services/pinpoint/interfaces.go
  • services/pinpoint/journeys.go
  • services/pinpoint/persistence.go
  • services/pinpoint/recommender_configurations_test.go
  • services/pinpoint/store.go
  • services/pinpoint/store_setup.go
  • services/pinpoint/wire.go
  • services/pinpoint/wire_field_fixes_test.go
  • services/pinpoint/wire_output_required_r80d_test.go
  • services/pipes/handler_sdk_route_table_test.go
  • services/polly/handler_sdk_route_table_test.go
  • services/quicksight/PARITY.md
  • services/quicksight/README.md
  • services/quicksight/account.go
  • services/quicksight/dataset.go
  • services/quicksight/dataset_physicaltable.go
  • services/quicksight/deletion_protection_roundtrip_test.go
  • services/quicksight/errors.go
  • services/quicksight/handler.go
  • services/quicksight/handler_account.go
  • services/quicksight/handler_actionconnector.go
  • services/quicksight/handler_assetbundle.go
  • services/quicksight/handler_assetbundle_test.go
  • services/quicksight/handler_dataset.go
  • services/quicksight/handler_dataset_autoingestion_test.go
  • services/quicksight/handler_dataset_test.go
  • services/quicksight/handler_flow_test.go
  • services/quicksight/handler_iampolicyassignments.go
  • services/quicksight/handler_iampolicyassignments_test.go
  • services/quicksight/handler_identitypropagation.go
  • services/quicksight/handler_oauth.go
  • services/quicksight/handler_oauth_test.go
  • services/quicksight/handler_refreshschedule_test.go
  • services/quicksight/handler_sdk_roundtrip_test.go
  • services/quicksight/handler_sdk_route_table_test.go
  • services/quicksight/handler_spaces.go
  • services/quicksight/handler_test.go
  • services/quicksight/interfaces.go
  • services/quicksight/models.go
  • services/quicksight/persistence_test.go
  • services/quicksight/store_roundtrip_test.go
  • services/quicksight/types.go
  • services/quicksight/wire_output_required_r80d_test.go
  • services/ram/PARITY.md
  • services/ram/README.md
  • services/ram/handler_permissions.go
  • services/ram/handler_permissions_test.go
  • services/ram/handler_sdk_route_table_test.go
  • services/ram/handler_share_invitations_test.go
  • services/ram/handler_test.go
  • services/rds/PARITY.md
  • services/rds/README.md
  • services/rds/cluster_parameter_groups_test.go
  • services/rds/cluster_roles_sdk_test.go
  • services/rds/db_clusters.go
  • services/rds/db_clusters_operations_test.go
  • services/rds/db_clusters_test.go
  • services/rds/db_instances.go
  • services/rds/db_instances_operations_test.go
  • services/rds/db_instances_test.go
  • services/rds/dispatch_test.go
  • services/rds/export_tasks.go
  • services/rds/export_tasks_test.go
  • services/rds/form_actions_cluster_test.go
  • services/rds/handler_cluster_parameter_groups.go
  • services/rds/handler_cluster_snapshots.go
  • services/rds/handler_db_clusters.go
  • services/rds/handler_db_instances.go
  • services/rds/handler_db_snapshots.go
  • services/rds/handler_event_subscriptions.go
  • services/rds/handler_export_tasks.go
  • services/rds/handler_maintenance.go
  • services/rds/handler_parameter_groups.go
  • services/rds/handler_proxies.go
  • services/rds/handler_roles.go
  • services/rds/handler_sdk_route_table_test.go
  • services/rds/interfaces.go
  • services/rds/lifecycle.go
  • services/rds/maintenance.go
  • services/rds/maintenance_test.go
  • services/rds/models.go
  • services/rds/parameter_groups_test.go
  • services/rds/persistence.go
  • services/rds/persistence_test.go
  • services/rds/proxies.go
  • services/rds/proxies_test.go
  • services/rds/restore_from_s3_sdk_test.go
  • services/rds/roles.go
  • services/rds/roles_test.go
  • services/rds/security_groups_test.go
  • services/rds/store_setup.go
  • services/rds/wire_field_fixes_rdssweep1_test.go
  • services/rds/wire_field_fixes_test.go
  • services/rdsdata/handler_sdk_route_table_test.go
  • services/redshift/PARITY.md
  • services/redshift/README.md
  • services/redshift/cluster_mgmt.go
  • services/redshift/custom_domains.go
  • services/redshift/errors.go
  • services/redshift/handler.go
  • services/redshift/handler_cluster_info.go
  • services/redshift/handler_cluster_mgmt.go
  • services/redshift/handler_custom_domains.go
  • services/redshift/handler_events.go
  • services/redshift/handler_hsm.go
  • services/redshift/handler_hsm_test.go
  • services/redshift/handler_lakehouse_test.go
  • services/redshift/handler_namespace_registration.go
  • services/redshift/handler_namespace_registration_sdk_test.go
  • services/redshift/handler_partners.go
  • services/redshift/handler_partners_test.go
  • services/redshift/handler_sdk_roundtrip_test.go
  • services/redshift/handler_sdk_route_table_test.go
  • services/redshift/handler_serverless.go
  • services/redshift/handler_serverless_gaps_test.go
  • services/redshift/handler_serverless_idc_token_test.go
  • services/redshift/handler_serverless_lakehouse_test.go
  • services/redshift/handler_serverless_recovery.go
  • services/redshift/handler_serverless_restore.go
  • services/redshift/handler_serverless_table_restore.go
  • services/redshift/handler_serverless_test.go
  • services/redshift/handler_serverless_tracks_test.go
  • services/redshift/handler_serverless_update_snapshot_test.go
  • services/redshift/handler_snapshot_schedules.go
  • services/redshift/handler_snapshots.go
  • services/redshift/interfaces.go
  • services/redshift/lakehouse.go
  • services/redshift/models.go
  • services/redshift/namespace_registration.go
  • services/redshift/persistence_test.go
  • services/redshift/sdk_completeness_test.go
  • services/redshift/serverless.go
  • services/redshift/serverless_index_test.go
  • services/redshift/serverless_lakehouse.go
  • services/redshift/serverless_namespaces.go
  • services/redshift/serverless_recovery.go
  • services/redshift/serverless_restore.go
  • services/redshift/serverless_scheduled_actions.go
  • services/redshift/serverless_snapshots.go
  • services/redshift/serverless_table_restore.go
  • services/redshift/serverless_tracks.go
  • services/redshift/serverless_usage_limits.go
  • services/redshift/serverless_workgroups.go
  • services/redshift/snapshot_access_test.go
  • services/redshift/store.go
  • services/redshift/store_setup.go
  • services/redshiftdata/PARITY.md
  • services/redshiftdata/README.md
  • services/redshiftdata/handler_sdk_route_table_test.go
  • services/redshiftdata/handler_statements.go
  • services/redshiftdata/handler_statements_lifecycle_test.go
  • services/redshiftdata/handler_statements_semantics_test.go
  • services/rekognition/collections.go
  • services/rekognition/datasets.go
  • services/rekognition/handler_collections.go
  • services/rekognition/handler_datasets.go
  • services/rekognition/handler_datasets_test.go
  • services/rekognition/handler_media_analysis.go
  • services/rekognition/handler_media_analysis_test.go
  • services/rekognition/handler_moderation.go
  • services/rekognition/handler_project_versions.go
  • services/rekognition/handler_project_versions_test.go
  • services/rekognition/handler_projects.go
  • services/rekognition/handler_sdk_route_table_test.go
  • services/rekognition/interfaces.go
  • services/rekognition/media_analysis.go
  • services/rekognition/models.go
  • services/rekognition/persistence_test.go
  • services/rekognition/project_versions.go
  • services/rekognition/projects.go
  • services/rekognition/wire_field_fixes_test.go
  • services/resiliencehub/README.md
  • services/resiliencehub/handler_sdk_route_table_test.go
  • services/resourcegroups/handler_sdk_route_table_test.go
  • services/resourcegroupstaggingapi/handler_sdk_route_table_test.go
  • services/rolesanywhere/handler_sdk_route_table_test.go
  • services/route53/PARITY.md
  • services/route53/delegationset_linkage_test.go
  • services/route53/dnssec_test.go
  • services/route53/handler.go
  • services/route53/handler_cidr_collections.go
  • services/route53/handler_dnssec.go
  • services/route53/handler_health_checks.go
  • services/route53/handler_hosted_zones.go
  • services/route53/handler_key_signing_keys.go
  • services/route53/handler_paths_sdk_diff_test.go
  • services/route53/handler_query_logging.go
  • services/route53/handler_reusable_delegation_sets.go
  • services/route53/handler_traffic_policies.go
  • services/route53/handler_vpc_associations.go
  • services/route53/hosted_zones.go
  • services/route53/hosted_zones_test.go
  • services/route53/interfaces.go
  • services/route53/key_signing_keys_test.go
  • services/route53/optimistic_concurrency_test.go
  • services/route53/persistence_test.go
  • services/route53/query_logging_test.go
  • services/route53/record_sets_routing_test.go
  • services/route53/record_sets_test.go
  • services/route53/routing_test.go
  • services/route53/tags.go
  • services/route53/traffic_policy_instances_test.go
  • services/route53/vpc_associations_test.go
  • services/route53/wire_field_fixes_r53sweep1_test.go
  • services/route53/wire_output_required_r80d_test.go
  • services/route53/wire_shape_test.go
  • services/route53resolver/PARITY.md
  • services/route53resolver/README.md
  • services/route53resolver/configs_test.go
  • services/route53resolver/firewall_domain_lists_test.go
  • services/route53resolver/handler_configs.go
  • services/route53resolver/handler_firewall_domain_lists.go
  • services/route53resolver/handler_query_log_associations.go
  • services/route53resolver/handler_query_log_configs.go
  • services/route53resolver/handler_resolver_endpoints.go
  • services/route53resolver/handler_rule_associations.go
  • services/route53resolver/handler_sdk_route_table_test.go
  • services/route53resolver/resolver_endpoints_test.go
  • services/route53resolver/wire_field_fixes_test.go
  • services/s3/PARITY.md
  • services/s3/README.md
  • services/s3/accelerate.go
  • services/s3/acl_policy.go
  • services/s3/acl_policy_test.go
  • services/s3/annotations.go
  • services/s3/bench_test.go
  • services/s3/bucket_ops.go
  • services/s3/bucket_ops_acl_policy.go
  • services/s3/bucket_ops_cors.go
  • services/s3/bucket_ops_cors_actual_response_test.go
  • services/s3/bucket_ops_listing.go
  • services/s3/bucket_ops_metadata_table.go
  • services/s3/bucket_ops_versioning.go
  • services/s3/bucket_replication_test.go
  • services/s3/buckets.go
  • services/s3/buckets_test.go
  • services/s3/chunked.go
  • services/s3/chunked_test.go
  • services/s3/conditional.go
  • services/s3/constants.go
  • services/s3/dashboard_region_scoping_test.go
  • services/s3/errors.go
  • services/s3/handler.go
  • services/s3/handler_list_v2.go
  • services/s3/handler_operations.go
  • services/s3/handler_paths_sdk_diff_test.go
  • services/s3/handler_website.go
  • services/s3/interfaces.go
  • services/s3/janitor_lifecycle.go
  • services/s3/lifecycle_transition_test.go
  • services/s3/listing.go
  • services/s3/metadata_table.go
  • services/s3/metadata_table_test.go
  • services/s3/model.go
  • services/s3/multipart.go
  • services/s3/multipart_checksum_wire_test.go
  • services/s3/multipart_ops.go
  • services/s3/multipart_ops_test.go
  • services/s3/object_lambda.go
  • services/s3/object_lambda_test.go
  • services/s3/object_ops.go
  • services/s3/object_ops_annotations.go
  • services/s3/object_ops_annotations_test.go
  • services/s3/object_ops_copy.go
  • services/s3/object_ops_rename_precondition_test.go
  • services/s3/object_ops_rename_test.go
  • services/s3/object_ops_retention.go
  • services/s3/objects.go
  • services/s3/replication.go
  • services/s3/requester_pays.go
  • services/s3/sdk_completeness_test.go
  • services/s3/select.go
  • services/s3/select_bugfixes_test.go
  • services/s3/select_csv.go
  • services/s3/select_csv_quoting.go
  • services/s3/select_json.go
  • services/s3/select_sql_parser.go
  • services/s3/select_sql_tokenizer.go
  • services/s3/store.go
  • services/s3/store_listing_test.go
  • services/s3/subresource_routing_test.go
  • services/s3/types.go
  • services/s3/versioning.go
  • services/s3/website_test.go
  • services/s3/wire_field_fixes_test.go
  • services/s3/xml_unmarshal_error_handling_test.go
  • services/s3control/README.md
  • services/s3control/handler_sdk_route_table_test.go
  • services/s3tables/PARITY.md
  • services/s3tables/README.md
  • services/s3tables/handler.go
  • services/s3tables/handler_namespaces.go
  • services/s3tables/handler_sdk_roundtrip_test.go
  • services/s3tables/handler_sdk_route_table_test.go
  • services/sagemaker/PARITY.md
  • services/sagemaker/README.md
  • services/sagemaker/apps.go
  • services/sagemaker/domains.go
  • services/sagemaker/handler_apps.go
  • services/sagemaker/handler_apps_test.go
  • services/sagemaker/handler_create_tags_test.go
  • services/sagemaker/handler_domains.go
  • services/sagemaker/handler_domains_test.go
  • services/sagemaker/handler_lineage.go
  • services/sagemaker/handler_lineage_test.go
  • services/sagemaker/handler_presigned_session_test.go
  • services/sagemaker/handler_sdk_route_table_test.go
  • services/sagemaker/handler_spaces.go
  • services/sagemaker/handler_spaces_test.go
  • services/sagemaker/handler_test.go
  • services/sagemaker/handler_user_profiles.go
  • services/sagemaker/handler_user_profiles_test.go
  • services/sagemaker/lineage.go
  • services/sagemaker/persistence_test.go
  • services/sagemaker/spaces.go
  • services/sagemaker/store_domain.go
  • services/sagemaker/user_profiles.go
  • services/sagemakerruntime/handler_sdk_route_table_test.go
  • services/scheduler/README.md
  • services/scheduler/handler_sdk_route_table_test.go
  • services/secretsmanager/PARITY.md
  • services/secretsmanager/README.md
  • services/secretsmanager/handler_sdk_route_table_test.go
  • services/secretsmanager/models.go
  • services/secretsmanager/secret_versions.go
  • services/secretsmanager/secrets.go
  • services/secretsmanager/wire_field_fixes_test.go
  • services/securityhub/PARITY.md
  • services/securityhub/analytics_v2.go
  • services/securityhub/automation_rules.go
  • services/securityhub/automation_rules_test.go
  • services/securityhub/configuration_policies_test.go
  • services/securityhub/connectors_v2.go
  • services/securityhub/connectors_v2_test.go
  • services/securityhub/controls.go
  • services/securityhub/findings.go
  • services/securityhub/findings_v2.go
  • services/securityhub/findings_v2_test.go
  • services/securityhub/handler_automation_rules.go
  • services/securityhub/handler_configuration_policies.go
  • services/securityhub/handler_connectors_v2.go
  • services/securityhub/handler_findings.go
  • services/securityhub/handler_insights.go
  • services/securityhub/handler_invitations.go
  • services/securityhub/handler_members.go
  • services/securityhub/handler_organizations.go
  • services/securityhub/handler_products.go
  • services/securityhub/handler_resources_v2.go
  • services/securityhub/handler_sdk_route_table_test.go
  • services/securityhub/handler_standards.go
  • services/securityhub/interfaces.go
  • services/securityhub/invitations.go
  • services/securityhub/members.go
  • services/securityhub/models.go
  • services/securityhub/persistence_test.go
  • services/securityhub/products_test.go
  • services/securityhub/resources_v2.go
  • services/securityhub/resources_v2_test.go
  • services/securityhub/standards.go
  • services/securityhub/standards_test.go
  • services/securityhub/store.go
  • services/securityhub/store_setup.go
  • services/securityhub/wire_field_fixes_test.go
  • services/serverlessrepo/handler_sdk_route_table_test.go
  • services/servicediscovery/PARITY.md
  • services/servicediscovery/README.md
  • services/servicediscovery/handler_list_summary_test.go
  • services/servicediscovery/handler_sdk_route_table_test.go
  • services/servicediscovery/handler_services.go
  • services/servicediscovery/host_prefix_reachability_test.go
  • services/ses/PARITY.md
  • services/ses/empty_result_element_test.go
  • services/ses/handler_configuration_sets.go
  • services/ses/handler_email_sending.go
  • services/ses/handler_event_destinations.go
  • services/ses/handler_receipt_rule_sets.go
  • services/ses/handler_receipt_rules.go
  • services/ses/handler_sdk_roundtrip_test.go
  • services/ses/handler_sdk_route_table_test.go
  • services/ses/handler_send_raw_email_destinations_test.go
  • services/ses/handler_templates.go
  • services/ses/interfaces.go
  • services/ses/receipt_rules.go
  • services/ses/receipt_rules_test.go
  • services/sesv2/PARITY.md
  • services/sesv2/README.md
  • services/sesv2/configuration_sets.go
  • services/sesv2/contact_lists.go
  • services/sesv2/email_identities.go
  • services/sesv2/email_templates.go
  • services/sesv2/export_jobs.go
  • services/sesv2/export_jobs_test.go
  • services/sesv2/handler_export_jobs.go
  • services/sesv2/handler_import_jobs.go
  • services/sesv2/handler_sdk_route_table_test.go
  • services/sesv2/handler_send_email.go
  • services/sesv2/import_jobs.go
  • services/sesv2/import_jobs_test.go
  • services/sesv2/interfaces.go
  • services/sesv2/persistence_test.go
  • services/sesv2/send_email.go
  • services/sesv2/send_email_test.go
  • services/sesv2/tags.go
  • services/sesv2/tenants.go
  • services/sesv2/wire_field_fixes_g8k9_test.go
  • services/sesv2/wire_output.go
  • services/shield/PARITY.md
  • services/shield/handler_sdk_route_table_test.go
  • services/shield/protections_test.go
  • services/sns/PARITY.md
  • services/sns/README.md
  • services/sns/empty_result_element_test.go
  • services/sns/handler_sdk_route_table_test.go
  • services/sns/handler_tags.go
  • services/sns/models.go
  • services/sns/origination_numbers_test.go
  • services/sns/topic_attributes.go
  • services/sqs/PARITY.md
  • services/sqs/README.md
  • services/sqs/handler_sdk_route_table_test.go
  • services/sqs/sns_envelope_test.go
  • services/ssm/PARITY.md
  • services/ssm/README.md
  • services/ssm/activations.go
  • services/ssm/activations_test.go
  • services/ssm/associations.go
  • services/ssm/automations.go
  • services/ssm/automations_test.go
  • services/ssm/documents.go
  • services/ssm/empty_struct_inputs_test.go
  • services/ssm/epoch_seconds_wire_shape_test.go
  • services/ssm/errors.go
  • services/ssm/handler.go
  • services/ssm/handler_sdk_route_table_test.go
  • services/ssm/instances.go
  • services/ssm/interfaces.go
  • services/ssm/inventory.go
  • services/ssm/inventory_test.go
  • services/ssm/list_nodes_summary_test.go
  • services/ssm/maintenance_window_lifecycle_test.go
  • services/ssm/models_activations.go
  • services/ssm/models_associations.go
  • services/ssm/models_automations.go
  • services/ssm/models_documents.go
  • services/ssm/models_instances.go
  • services/ssm/models_inventory.go
  • services/ssm/models_ops_items.go
  • services/ssm/models_parameters.go
  • services/ssm/models_resource_policies.go
  • services/ssm/models_service_settings.go
  • services/ssm/ops_items.go
  • services/ssm/parameter_labels.go
  • services/ssm/parameter_labels_test.go
  • services/ssm/parameters.go
  • services/ssm/resource_policies.go
  • services/ssm/resource_policies_test.go
  • services/ssm/service_settings.go
  • services/ssm/service_settings_test.go
  • services/ssm/store.go
  • services/ssm/tags.go
  • services/ssm/wire_field_fixes_test.go
  • services/ssoadmin/PARITY.md
  • services/ssoadmin/README.md
  • services/ssoadmin/handler_instances.go
  • services/ssoadmin/handler_instances_new_fields_test.go
  • services/ssoadmin/handler_instances_test.go
  • services/ssoadmin/handler_sdk_route_table_test.go
  • services/ssoadmin/instances.go
  • services/ssoadmin/interfaces.go
  • services/ssoadmin/models.go
  • services/ssoadmin/pagination_test.go
  • services/ssoadmin/persistence_test.go
  • services/stepfunctions/PARITY.md
  • services/stepfunctions/README.md
  • services/stepfunctions/aliases.go
  • services/stepfunctions/handler.go
  • services/stepfunctions/handler_activities.go
  • services/stepfunctions/handler_aliases.go
  • services/stepfunctions/handler_executions.go
  • services/stepfunctions/handler_map_runs.go
  • services/stepfunctions/handler_sdk_route_table_test.go
  • services/stepfunctions/handler_state_machine_versions.go
  • services/stepfunctions/handler_state_machines.go
  • services/stepfunctions/host_prefix_reachability_test.go
  • services/stepfunctions/overwide_list_test.go
  • services/stepfunctions/state_machines.go
  • services/stepfunctions/wire_updatedate_test.go
  • services/sts/PARITY.md
  • services/sts/README.md
  • services/sts/assume_role.go
  • services/sts/assume_role_test.go
  • services/sts/handler_assume_role.go
  • services/sts/handler_sdk_route_table_test.go
  • services/sts/models.go
  • services/sts/session_tokens.go
  • services/sts/trust_policy.go
  • services/sts/trust_policy_test.go
  • services/sts/validation.go
  • services/support/handler_sdk_route_table_test.go
  • services/swf/handler_sdk_route_table_test.go
  • services/textract/README.md
  • services/textract/handler_sdk_route_table_test.go
  • services/timestreamquery/handler_sdk_route_table_test.go
  • services/timestreamquery/wire_scheduledquery_timestamps_test.go
  • services/timestreamwrite/README.md
  • services/timestreamwrite/handler_sdk_route_table_test.go
  • services/transcribe/PARITY.md
  • services/transcribe/README.md
  • services/transcribe/call_analytics.go
  • services/transcribe/handler_medical_scribe.go
  • services/transcribe/handler_medical_vocabularies.go
  • services/transcribe/handler_sdk_route_table_test.go
  • services/transcribe/handler_vocabularies.go
  • services/transcribe/medical_scribe.go
  • services/transcribe/medical_scribe_test.go
  • services/transcribe/medical_transcription_jobs.go
  • services/transcribe/models.go
  • services/transcribe/tags.go
  • services/transcribe/transcription_jobs.go
  • services/transcribe/wire_field_fixes_g8k9_test.go
  • services/transcribe/wire_field_fixes_test.go
  • services/transfer/PARITY.md
  • services/transfer/README.md
  • services/transfer/connectors.go
  • services/transfer/handler_connectors.go
  • services/transfer/handler_connectors_test.go
  • services/transfer/handler_sdk_route_table_test.go
  • services/transfer/handler_servers.go
  • services/transfer/handler_web_apps.go
  • services/transfer/handler_web_apps_test.go
  • services/transfer/models.go
  • services/transfer/persistence_test.go
  • services/transfer/web_apps.go
  • services/transfer/web_apps_test.go
  • services/transfer/wire_field_fixes_test.go
  • services/translate/handler_sdk_route_table_test.go
  • services/verifiedpermissions/handler_policy_stores.go
  • services/verifiedpermissions/handler_sdk_route_table_test.go
  • services/verifiedpermissions/policy_stores.go
  • services/verifiedpermissions/wire_field_fixes_g8k9_test.go
  • services/vpclattice/handler_access_log_subscriptions.go
  • services/vpclattice/handler_domain_verifications.go
  • services/vpclattice/handler_resource_configurations.go
  • services/vpclattice/handler_rules.go
  • services/vpclattice/handler_rules_test.go
  • services/vpclattice/handler_sdk_route_table_test.go
  • services/vpclattice/handler_service_networks.go
  • services/vpclattice/handler_services.go
  • services/vpclattice/handler_target_groups.go
  • services/vpclattice/interfaces.go
  • services/vpclattice/models.go
  • services/vpclattice/resource_configurations.go
  • services/vpclattice/resource_gateway_family_test.go
  • services/vpclattice/service_networks.go
  • services/vpclattice/wire_field_fixes_test.go
  • services/waf/PARITY.md
  • services/waf/handler_sdk_route_table_test.go
  • services/wafv2/PARITY.md
  • services/wafv2/api_keys.go
  • services/wafv2/handler.go
  • services/wafv2/handler_api_keys.go
  • services/wafv2/handler_api_keys_test.go
  • services/wafv2/handler_managed_rule_catalog.go
  • services/wafv2/handler_permission_policies_test.go
  • services/wafv2/handler_rate_based_rules.go
  • services/wafv2/handler_rate_based_rules_test.go
  • services/wafv2/handler_rule_groups.go
  • services/wafv2/handler_sdk_route_table_test.go
  • services/wafv2/interfaces.go
  • services/wafv2/models.go
  • services/wafv2/persistence_test.go
  • services/wafv2/rule_groups.go
  • services/wafv2/wire_field_fixes_test.go
  • services/workmail/PARITY.md
  • services/workmail/README.md
  • services/workmail/groups.go
  • services/workmail/handler_bugfix_test.go
  • services/workmail/handler_groups.go
  • services/workmail/handler_mailboxes.go
  • services/workmail/handler_personal_access_tokens.go
  • services/workmail/handler_resources.go
  • services/workmail/handler_sdk_route_table_test.go
  • services/workmail/handler_users.go
  • services/workmail/interfaces.go
  • services/workmail/resources.go
  • services/workmail/users.go
  • services/workmail/wire_enableddate_test.go
  • services/workmail/wire_field_fixes_test.go
  • services/workspaces/PARITY.md
  • services/workspaces/README.md
  • services/workspaces/account_links.go
  • services/workspaces/account_links_test.go
  • services/workspaces/application_associations.go
  • services/workspaces/application_associations_test.go
  • services/workspaces/bundles.go
  • services/workspaces/bundles_test.go
  • services/workspaces/client_branding.go
  • services/workspaces/client_branding_test.go
  • services/workspaces/handler_account_links.go
  • services/workspaces/handler_application_associations.go
  • services/workspaces/handler_client_branding.go
  • services/workspaces/handler_connection_aliases.go
  • services/workspaces/handler_create_tags_test.go
  • services/workspaces/handler_directories.go
  • services/workspaces/handler_images.go
  • services/workspaces/handler_images_import_test.go
  • services/workspaces/handler_sdk_route_table_test.go
  • services/workspaces/handler_test.go
  • services/workspaces/handler_workspace_properties.go
  • services/workspaces/handler_workspaces.go
  • services/workspaces/images.go
  • services/workspaces/images_test.go
  • services/workspaces/interfaces.go
  • services/workspaces/models.go
  • services/workspaces/persistence_test.go
  • services/workspaces/sdk_roundtrip_helper_test.go
  • services/workspaces/tags_test.go
  • services/workspaces/whitebox_test.go
  • services/workspaces/wire_field_fixes_test.go
  • services/workspaces/workspace_properties.go
  • services/workspaces/workspace_properties_test.go
  • services/xray/PARITY.md
  • services/xray/README.md
  • services/xray/handler_insights.go
  • services/xray/handler_insights_test.go
  • services/xray/handler_sdk_route_table_test.go
  • services/xray/handler_traces.go
  • services/xray/insights.go
  • services/xray/insights_test.go
  • services/xray/interfaces.go
  • services/xray/models.go
  • services/xray/persistence_test.go
  • services/xray/traces.go
  • services/xray/traces_test.go
  • services/xray/wire_field_fixes_test.go
  • test/e2e/eventbridge_test.go
  • test/e2e/opensearch_test.go
  • test/integration/apigateway_quicksight_account_test.go
  • test/integration/bedrock_test.go
  • test/integration/cloudwatchlogs_test.go
  • test/integration/codecommit_test.go
  • test/integration/ec2_security_groups_roundtrip_test.go
  • test/integration/ecs_test.go
  • test/integration/elasticsearch_test.go
  • test/integration/glue_test.go
  • test/integration/guardduty_test.go
  • test/integration/iam_new_ops_test.go
  • test/integration/iam_roundtrip_test.go
  • test/integration/kafka_test.go
  • test/integration/kinesis_test.go
  • test/integration/lambda_new_ops_test.go
  • test/integration/main_test.go
  • test/integration/opensearch_test.go
  • test/integration/outposts_test.go
  • test/integration/route53_new_ops_test.go
  • test/integration/route53_roundtrip_test.go
  • test/integration/secretsmanager_roundtrip_test.go
  • test/integration/securityhub_findings_roundtrip_test.go
  • test/integration/sns_roundtrip_test.go
  • test/integration/sqs_change_visibility_batch_test.go
  • test/integration/stepfunctions_asl_test.go
  • test/integration/stepfunctions_test.go
  • test/integration/tag_routing_test.go

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

@codecov

codecov Bot commented Aug 11, 2026

Copy link
Copy Markdown

@agbishop

agbishop commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator Author

📊 Code Coverage Report

Metric Value Status
Total Coverage 0.0%
0.0%
75.0%
0.0%
87.6%
New Code Coverage N/A (0/0 stmts)

Tip

This project maintains a minimum coverage threshold of 85%. Maintain or improve coverage on new code to ensure long-term stability.


Last updated: Sat, 15 Aug 2026 19:28:36 GMT

Witness Patrol added 16 commits August 13, 2026 11:09
…dy could read

These four services store and echo whole input maps, so a supplied value
round-tripped fine and only presence went unchecked - the lowest tier of the
required-member findings. Verifying that claim per field rather than trusting
it turned up one place it was false.

cloudwatchlogs ListAggregateLogGroupSummaries wrapped its response as
logGroupSummaries, a key the real output shape does not have. Populated
summaries never reached a real client, for every caller, whatever the groupBy.
Found because the presence fix put someone in that handler. The op also
declares ValidationException where most of the service uses
InvalidParameterException, so it gets its own sentinel rather than the
service's usual one.

The audit undercounted three services. CreatePredictor requires three members,
not the two named. comprehend CreateFlywheel also requires DataAccessRoleArn.
quicksight CreateOAuthClientApplication also requires ClientId and
ClientSecret - and those deliberately do not round-trip, since the real
response shape has no such members, so their check is presence-only.

forecast's table is keyed by action name rather than resource kind on purpose:
CreatePredictor and CreateAutoPredictor share a kind, but the auto variant has
no FeaturizationConfig field at all, so a kind-keyed table would have rejected
valid calls. Fixing InputDataConfig also revived a nested foreign-key check
that had been dead code, since no caller had ever supplied the field.

Enum-valued members validate against the SDK's own Values() rather than a
copied list.

Thirty-four existing tests omitted these fields and asserted success.

Closes gopherstack-wl0s
The prior checkpoint recorded what shipped. This one records what generalises,
because the findings outlived the fixes.

Chiefly: an A grade certifies op-level wire and routing, not field-level
completeness - confirmed five times independently. Five manifests positively
claimed verification that was false. Borrowed shapes and behaviour appeared at
five distinct layers. Fifteen tests were wrong in the same direction as their
bug, and a dedicated hunt for that pattern found zero while fixing bugs
surfaced six, which says it is a checklist item rather than a backlog.

Also records the scanner blind spots, since the scratchpad never survives and
those tools were rebuilt from scratch four times.
…ions shape no real client can send

CancelDomainConfigChange returned DescribeElasticsearchDomainConfig's
DomainConfig envelope - a different operation's response entirely - instead of
CancelledChangeIds, CancelledChangeProperties and DryRun. DryRun was never
read. The existing unit test asserted the wrong shape and passed. The
cancelled lists are empty here, since this backend applies changes
synchronously and never holds a pending one.

CreateVpcEndpoint and UpdateVpcEndpoint modeled VpcOptions as
map[string]string where the real type carries SecurityGroupIds and SubnetIds
arrays. A real client always sends arrays, so the unmarshal failed and
CreateVpcEndpoint 400'd unconditionally for anything but a toy caller. Fixed
by reusing the vpcOptions machinery handler_domains.go already had for the
same SDK type at domain level.

Both are the borrowed-shape class: one op wearing another's response, one
field wearing another shape entirely.

Noted for a later tightening pass, not a bug: three VPC endpoint ops return
extra fields beyond the real summary shape, which restjson1 clients ignore.

Refs gopherstack-p2mx
…hree levels off

The issue said List returns the same item shape as Get. It does not - List is
NARROWER. AnnotationImportJobItem and VariantImportJobItem have no items,
formatOptions or statusMessage member at all, and this backend was marshaling
the Get-shaped struct for both, leaking three fields into every List response.

That is a new failure direction worth naming: an over-wide response cannot be
caught by an SDK-driven test, because the deserializer silently discards keys
it does not recognise. Those two tests inspect the raw body instead. Every
other test here drives the real client, which remains the only proof for the
opposite direction.

Get genuinely does return ItemDetail, so the item types are now split: the
Source-only shape stays for Start's input, and new detail types back Get.
JobStatus is stamped from the job's own status at Start, honest here because
this backend completes jobs synchronously in one step, so it is each item's
true final state rather than a guess.

ssm ListNodes turned out NOT to be the ListNodesSummary stub class - its real
input has no required members, so an empty struct was defensible. It was still
broken: all four optional members were discarded, so filtering and pagination
never worked. Reading the whole operation found worse - the real Node element
nests PlatformType and AgentVersion three levels down under NodeType.Instance,
while this served them at the top level alongside a RegistrationDate that
corresponds to no real field.

Its existing test asserted the old top-level map, so it passed against the bug.

Closes gopherstack-7s8r
Closes gopherstack-6uag
…vice

The five KeyValueStore ops had handlers in services/cloudfront but belong to a
separate SDK module with its own path scheme, which cloudfront's /2020-05-31/
RouteMatcher can never match. They were unreachable by any real client.

Registered rather than deleted, because the backing state was real: cloudfront's
backend already had working per-store data and ETag maps and five correct
methods. Only the front door was wrong. The new service borrows that backend
and owns no state, mirroring how dynamodbstreams borrows dynamodb's.

Verifying the wire shape against the real SDK found bugs the dead code had too:
DescribeKeyValueStore must return the DATA-plane ETag, not the resource's
control-plane one, or a real client's Describe-then-Put workflow breaks on the
required IfMatch. And an ETag mismatch is ConflictException, not the 412 the
old handlers used - that status does not exist in this SDK's error model.

The KVS maps were also absent from cloudfront's snapshot, so they were dropped
across restart. Added.

Graded B honestly: real SDK round-trip tests exist, including the
EndpointResolverV2 override this SDK needs because its ruleset derives a
virtual host from the ARN, but there is no Docker integration suite yet.

Closes gopherstack-4ara
The guard in pkgs/persistence has been failing on this branch since the rds
retype landed, and three additive changes after it compounded the drift -
cloudfront's KVS maps, iam's CurrentPassword and GlobalEndpointTokenVersion,
kinesis's MinimumThroughputBillingCommitment. All four are legitimate and were
verified individually before refreshing: rds is a genuine incompatible retype
that the guard correctly classified as such, and the other three are additive
with no bump, which is exactly right.

I missed this by gating each change against only the services it touched. This
test lives in pkgs and fires on changes to any of them, so a scoped gate cannot
see it. Cross-cutting tests need a repo-wide run before pushing.

Refs gopherstack-5i6p
…nt could reach

The over-wide leaks were the reported bug; reading the operations found worse
sitting underneath two of them.

iot ListPackages and ListPackageVersions wrapped their results under
packageList and packageVersionList - keys the real outputs do not have. A real
client's list was ALWAYS EMPTY whatever the backend held, so the leaked fields
never reached anyone anyway. ListCommands also tagged its timestamp
creationDate where the wire key is createdAt.

iot ListCommandExecutions was worse still: its real route is POST
/command-executions with filters in the body, and the RouteMatcher never
matched the bare path, so a real client 404'd and never reached the wrong
field name that was reported. Fixed both, keeping the old fictional nested
route for compatibility. CompletedAt and StartedAt stay absent - this backend
has no device execution flow to source them from.

The five over-wide responses are now scoped to the real Summary types,
following patterns each service already had right elsewhere: iot's
ListCertificates and ListThingTypes, and quicksight's ListIAMPolicyAssignmentsForUser
and ListAssetBundleImportJobs.

backup's shared restoreJobToJSON emitted ResourceArn where both real types use
SourceResourceArn, so Describe and both List variants were wrong together.

The two bug classes needed opposite test techniques: raw-body assertions for
the over-wide leaks, since an SDK client silently discards unrecognised keys,
and real-client round trips for the wrong names, since a raw body cannot show
what a client actually loses.

Closes gopherstack-g3jk
Closes gopherstack-k26u
… route

The RouteMatcher matched /command-executions/{executionId}, but
resolveFinalOpsGroupB had only a DELETE case for that prefix. The op resolved
to unknownOperation and a real client got a 400 before reaching the handler.

The failure sits between matching and resolving, which is why the service's
own route test could not catch it: TestRouteMatcher_ExhaustiveCoverage calls
matchIoTPath for every real SDK path and asserts only that the path matches.
It never varies the method, never calls resolveOperation, and never dispatches
a request - so it passed against this bug with no warning.

Reading the operation found a second bug: both this route and the legacy
nested one serialised the raw struct, whose tag is thingArn - a member
GetCommandExecutionOutput does not declare, the real key being targetArn. Both
now go through the scoped map ListCommandExecutions already used.

Real GetCommandExecution addresses an execution by executionId and targetArn
with no commandId, which the existing backend lookup could not serve, so it
gains a by-id variant mirroring how DeleteCommandExecution already works.

Seven output members stay absent and documented - no control-plane op exists
to source any of them.

The rest of the family checked out: six other command ops are correctly wired,
and this was the last unreachable one.

Closes gopherstack-8ez0
Both asserted the old wrong behaviour, so they failed once production was
right. Verified against the pinned SDKs that production is correct and the
tests were stale, rather than assuming it from the commit messages.

TestLambda_CapacityProvider posted Name and TargetOnDemandConcurrency. The real
input requires CapacityProviderName, PermissionsConfig and VpcConfig, and
TargetOnDemandConcurrency appears nowhere in the operation. The response
assertions were wrong too - State and LastModified, with a title-cased Active.

TestIntegration_OpenSearch_DomainLifecycle used one basePath for four calls.
Create, Describe and Delete do live under /2021-01-01/opensearch/domain, but
ListDomainNames is the un-prefixed /2021-01-01/domain - which is why a single
variable cannot serve them and why the routing fix broke the test. Split into
two paths rather than reintroducing one.

These are the sixteenth and seventeenth tests found today encoding the same
assumption as a bug, and the first two outside a service package. Service-scoped
work never runs test/integration, which is how they survived - the same blind
spot that left the pkgs/persistence guard red.

A sweep for other stale integration tests covering today's fixes found none:
most of those operations have no integration coverage at all.

func route(r *http.Request) (string, string, string) {
segs := rawPathSegments(r)
if len(segs) < segCountStore || segs[0] != "key-value-stores" {

func route(r *http.Request) (string, string, string) {
segs := rawPathSegments(r)
if len(segs) < segCountStore || segs[0] != "key-value-stores" {
Witness Patrol added 10 commits August 13, 2026 13:38
These tests asserted that ExtractOperation returns the right operation name for
every SDK-derived method and path. That is one stage past where the iot bug in
gopherstack-8ez0 failed - but ExtractOperation is an observability hook for
metrics labels, not the dispatch contract, so an op whose name resolved
correctly while its dispatch had no matching case would still pass.

Each now also drives h.Handler()(c) on the same request and asserts the
response is not that service's unmatched-route sentinel. The mirror-tree
services went first - lambda, opensearch and route53 keep a hand-duplicated
extraction tree that only discipline holds in sync with real dispatch.

Every sentinel was established by reading the actual dispatch fallback and
confirming it is never emitted for a legitimate business-logic 404. They differ
more than expected: literal route-not-found strings, NoSuchOperation,
UnknownOperationException, and for the two RESTRouter services a bare {} body
at 404 or a 400 wrapping ResourceNotFoundException.

apigatewayv2 is deliberately left alone. Its route-miss fallback is
byte-identical, status and body, to dozens of legitimate resource-not-found
responses, so any assertion would either be unsound or need backend fixtures
for every path family. An unsound check here would be worse than none - this
session has already found seventeen tests that passed while their bug survived.

No strengthened test failed, matching the earlier audit that drove 590 ops
through the real handler and found zero drift.

Closes gopherstack-ey26
sesv2 SendBulkEmail called SendEmail with empty subject and body, ignoring the
required DefaultContent - every bulk email was stored blank. It now resolves
the template, inline or by name, and applies per-recipient replacement data
over the defaults, reusing the substitution logic that already existed.

appstream CreateThemeForStack read only StackName, dropping all four other
required fields. Favicon and logo URLs are derived the way amplify and
serverlessrepo already derive theirs, since the real Theme type carries URLs
rather than raw S3 locations.

rds RestoreDBInstanceFromS3 and RestoreDBClusterFromS3 each dropped three
required members - and reading the whole operation showed three more were read
but never validated. All seven per op are now checked. The three S3-source
members have no field on the real response shapes, so they validate without
persisting.

redshift CreateHsmConfiguration never passed either HSM secret to the backend.
Both are credentials, so this follows the service's own precedent: CreateCluster
validates MasterUserPassword in the handler and never stores it. Neither secret
is logged, stored or echoed, and every test now asserts they do not appear in a
response.

accessanalyzer CreateAccessPreview ignored Configurations, the thing being
previewed. Stored opaquely, since nothing here interprets the union's content.

One near-miss caught by reading the SDK types rather than by lint:
Configurations was first echoed on both Get and List, but
ListAccessPreviewsOutput returns a summary type that has no such member. Fixed,
with a regression test asserting List never emits it.

Seventeen test cases encoded these bugs - most asserted only a status code, and
one sent an empty configurations map on every case.

Closes gopherstack-afi1
…ary types

Every List op reused the Get op's converter unscoped, so each emitted members
the real Summary type never declares. ListSolutions and ListSolutionVersions
leaked nine apiece.

ListSolutionVersions is the telling one: a correctly-scoped converter already
existed, built for a nested field elsewhere, and the List handler simply was
not calling it.

Each Summary type was read from the SDK separately rather than deriving one
shape and applying it sixteen times - which caught RecommenderSummary, the one
type in the set that legitimately retains a nested config object where every
sibling drops it. Applying the pattern by analogy would have stripped a real
field.

Checking the inverse found FailureReason declared on eight Summary types with
no backend field to source it, so those stay absent and documented. One had an
honest source - DatasetGroup already carries the field - and now emits it
conditionally.

TWO FALSE CLAIMS REMOVED. The ListSolutions converter's comment asserted
correctness while addressing only one of nine leaked members. Worse, PARITY.md
carried a standing note titled 'Extra fields on List summaries are harmless',
arguing the premise correctly - SDK clients do ignore unknown keys - and drawing
the wrong conclusion from it. That note is why this passed several prior audits.
Replaced, with the reason spelled out: raw-body and non-SDK callers see the leak.

The tests read the raw recorder body rather than going through an SDK client,
because a client silently discards unrecognised keys and would pass against all
sixteen bugs. Four were hand-reverted to confirm the subtests fail.

Closes gopherstack-sm02
awsconfig GetAggregateResourceConfig decoded into an empty input and returned
whichever resource came first, so every distinct request got the same arbitrary
item. Now resolves both required members.

directoryservice is the clearest case of a dropped member hiding a wrong shape.
DescribeCAEnrollmentPolicy returned a fabricated nested CAEnrollmentPolicy
envelope that does not exist on the real API; the real shape is flat, with a
six-value status enum, a status reason, directory id, timestamp and the
PcaConnectorArn that was reported missing. Rebuilt. The persisted value changes
from bool to a struct pointer, which genuinely cannot decode, so the snapshot
version bump is the legitimate kind - verified the guard rejects it unbumped.

cognitoidp decoded a SecretHash the real API does not have, and both sibling
ops returned wrong shapes - a flat string and a string list where the real type
is ClientSecretDescriptorType. Secrets are never logged and the list never
returns values.

kafka UpdateRebalancing dropped CurrentVersion and Rebalancing.Status behind a
comment asserting AWS exposes no such setting. It does. Comment corrected, and
two clone functions that would have silently dropped the new field were caught.

eventbridge ListPartnerEventSourceAccounts was filed as possibly manifest-only.
It is not: CreatePartnerEventSource already stores the offered account and
mirrors its state, so the 'not simulable' premise was false and the op is now
implemented for real.

codeartifact PublishPackageVersion reads AssetSHA256 from the header, not the
body - and the issue's cited MismatchedSha256Exception does not exist on this
op, so mismatch returns ValidationException from its own declared set.

apigatewayv2 ExportApi honours OutputType; lakeformation and guardduty validate
their required members.

Seven tests encoded these bugs.

Closes gopherstack-h910
…s, and correct two bad findings

Seven of the nine reported leaks were real: glue's three schema-registry ops,
opensearch's two VPC-endpoint ops sharing one root cause, medialive
ListSignalMaps, bedrock ListModelImportJobs and eks ListInsights.

TWO OF MY FINDINGS WERE WRONG, both caught by reading each Summary type
separately rather than trusting the issue.

I listed tags among ListSignalMaps' leaks. SignalMapSummary genuinely declares
Tags - confirmed in the deserializer. Stripping it would have introduced a bug
while fixing one.

ListChannelPlacementGroups is not over-wide at all. Its real backing type is
DescribeChannelPlacementGroupSummary, which carries the same seven members as
the Describe, Create, Update and Delete outputs - all four verified
independently. The existing converter was already correct, and PARITY.md had
recorded that from a prior pass. No change made.

Reading the SDK also turned up a leak nobody had listed: eks emitted
clusterName on both List and Describe, and neither the summary nor the full
Insight type carries it on the wire - the cluster is already identified by the
path. Fixed on List; Describe shares the older converter and is recorded as a
separate pre-existing gap.

Inverse direction: InsightSummary declares KubernetesVersion and Name with no
honest source in the domain model, so both stay absent and documented.

opensearch's StatusUntil is worth noting - an internal clock field driving
time-based state transitions, never meant to reach the wire at all.

Tests assert raw bodies, since an SDK client discards unrecognised keys and
would pass against every one of these. eks needed a white-box companion
because its backend never populates the leaked field on synthesised data.

Closes gopherstack-uult
Witness Patrol and others added 24 commits August 15, 2026 06:33
Zero bugs, and every check run rather than skipped. The service already held
PARITY grade A from gopherstack-b9mg and a dedicated router test from
gopherstack-jqh2; both were re-derived independently rather than trusted, which
is the standard after twelve in-repo claims failed this week.

What was actually verified: all 23 List and Get output shapes plus every nested
type diffed field by field; both shared converters checked against the real
API's own type-sharing, no sibling trap; required members diffed in BOTH
directions across all 12 request bodies; all 20 filters across 8 List ops
confirmed reaching the query; all 7 void ops confirmed genuinely empty on the
real API rather than the appconfig StopDeployment trap; no discarded inputs, with
ValidateOnly and DryRun both honored; router confirmed a real path-segment
router, not immune, and all 43 ops reachable; 43 of 43 ops real.

Protocol confirmed by reading all 235 EqualFold sites - the 57 without errorCode
are NaN and Infinity float-literal matches, not body keys. Twenty-seventh
service, twenty-seventh distribution.

Credential sweep done deliberately and clean: ServerPublicKey is synthetic and
non-cryptographic.

ONE ITEM FLAGGED RATHER THAN RESOLVED, correctly. PARITY claims
ListBlockingInstancesForCapacityTask is always empty because capacity is
additive-only. The code matches that claim, but whether real AWS treats
InstancePools as a delta or an absolute target CANNOT be determined from the
pinned Go SDK alone. Recorded in the remainder file rather than trusted or
quietly changed - the right answer when the evidence is genuinely unavailable.

87 of 162 swept, 75 remain.

Refs gopherstack-6flj
… real client

DeletePackageVersions, CopyPackageVersions, DisposePackageVersions and
UpdatePackageVersionsStatus all built failedVersions and successfulVersions as
JSON ARRAYS. The real shapes are MAPS keyed by version string. A real SDK
client's call to any of the four died on deserialization - reproduced verbatim
against unfixed code. One shared converter, four total outages.

Two riders inside that same fix. An invented enum value RESOURCE_NOT_FOUND where
the real one is NOT_FOUND - and DisposePackageVersions, immediately adjacent,
already had it right. A sibling trap in reverse: the correct code was the
neighbour, not the copy. Plus two fabricated status literals that are not enum
members at all.

DeletePackage reused the PackageDescription converter where the real output is a
PackageSummary, dropping the identifier and leaking three Describe-only fields.
Second shared-converter bug in one service.

Also: four backend-tracked repository members never emitted across 8 ops; two
ignored filters, including repository-prefix on two List ops; and two ops that
never rejected a missing required policy document.

THE TWO RAW-BODY TESTS HERE ARE DELIBERATE, not laziness. A real client
structurally cannot send a request omitting a required field, so the only way to
exercise those two validation gaps is below the SDK. Stated rather than glossed.

All 9 distinct fixes hand-reverted individually and confirmed to fail with the
predicted symptom. Seven ratifying tests rewritten - forty-three found.

88 of 162 swept, 74 remain.

Refs gopherstack-6flj
…bers

LastUpdateDateTime and FailureException had zero grep hits anywhere in the
service - not mis-keyed, never modeled at all.

LastUpdateDateTime is fixed and emitted only when non-zero, so a table whose
insights were never toggled reports it ABSENT rather than a fabricated epoch
zero. FailureException is disclosed rather than fixed: this backend's insights
toggle cannot fail, so always-nil is accurate, not a gap.

Before deciding not to propagate the field to the List item shape, the agent
confirmed ContributorInsightsSummary genuinely lacks that member - checking
rather than assuming symmetry between Describe and List.

21 of 22 wrapper keys were already correct, each diffed against its own Output
struct. The shared exportTableToPointInTimeOutput converter was checked and is
LEGITIMATELY shared - both real Outputs are identical. GlobalTableDescription's
three call sites likewise confirmed genuinely separate wire types rather than a
mismatched converter. That check has found two real bugs in the last two
services, so a clean result from it is worth recording.

Persistence handled correctly: Table doubles as the snapshot DTO, and the new
field has a fresh tag rather than a retag, so old snapshots restore without a
version bump.

The prior PARITY grade A is not contradicted here - its deep-audit notes simply
never covered this admin, List and Describe family. A coverage gap, not a note
arguing a bug away. Closed with a new family entry.

Router is a flat X-Amz-Target switch and structurally immune to the desync that
404'd two elasticsearch ops - stated rather than checked op by op, which is the
correct shortcut for that dispatch style.

The one lint finding was fixed with gofmt rather than fieldalignment -fix,
deliberately avoiding the nolint-stripping hazard.

89 of 162 swept, 73 remain.

Refs gopherstack-6flj
… client

It reused Get's response shape - scanningConfiguration plus registryId - where
the real Put output wraps under registryScanningConfiguration and has no
registryId at all. A real client always got nil back.

IT HID BEHIND A SYMMETRIC-LOOKING GET/PUT PAIR FOR THREE PRIOR AUDIT ROUNDS.
That is the shared-converter class again, but disguised: Get and Put reading as
mirror images is exactly why nobody diffed them separately. An existing raw-body
test asserted the wrong key and is rewritten.

registryId was declared and never populated on four more ops, while sibling ops
already got it right - and PutSigningConfiguration correctly has none, verified
per op rather than assumed uniform.

DescribeRepositoryCreationTemplates discarded maxResults and nextToken entirely,
always returning everything in one page. BatchGetRepositoryScanningConfiguration
omitted appliedScanFilters. DescribeImageScanFindings leaked five top-level-only
fields by reusing the internal domain struct wholesale.

THE BEST DECISION HERE WAS NOT SHIPPING A FIX. ListImageReferrers is missing
three real members, so the agent built the fix, wrote a test, hand-reverted -
AND THE TEST STILL PASSED. PutImage never builds referrer relationships, so the
op is structurally always empty and nothing could observe the change. Both were
reverted and the real gap recorded in PARITY instead. That is the seventh
worthless test the revert step has caught, and the first caught before it ever
entered a diff.

Tie broken on sibling-trap surface as briefed: neptune has 10 resource-family
handler files, ecr has 14.

Credential sweep clean - the auth token is synthetic. 58 of 58 ops real, all 274
EqualFold sites inspected rather than counted.

90 of 162 swept, 72 remain.

Refs gopherstack-6flj
All 21 List, Describe and Get ops diffed individually against their own real
deserializer. Every wrapper key already correct, including the non-obvious
DescribeEventSubscriptions returning EventSubscriptionsList rather than
EventSubscriptions.

All three shared converters - covering 4, 6 and 7 call sites - confirmed
LEGITIMATELY shared, each wrapping one identical real type everywhere. That
check found a four-op outage and a nil-returning Get/Put pair in the two
preceding services, so a clean result from it is evidence rather than absence.

Two members never modelled at all. EventSubscription.CustomerAwsId was a pure
threading gap - the backend already had accountID. GlobalCluster.DatabaseName is
a real optional Create input that was never read or echoed.

Two things disclosed rather than faked. GlobalCluster.FailoverState is genuinely
transient and this backend's failover applies synchronously, so there is no
window to report honestly. And CreateGlobalCluster discards three real inputs
whose validation surface deserves its own pass rather than a hurried fix.

THE TIE-BREAK IS WORTH RECORDING BECAUSE IT CONTRADICTS THE BRIEF. I told the
agent to break ties on sibling-trap surface; ecr has 14 handler families to
neptune's 10, so surface pointed at ecr. A sibling was already mid-edit there,
so OCCUPANCY decided it - and the agent said so plainly rather than
retrofitting the surface rationale it had been handed.

The prior grade-A audit is accurate everywhere it looked and simply never looked
at these three members - a coverage gap, not an argued-away bug. It also caught
that PARITY's last_audit_commit points at an unrelated sesv2 commit, likely
stale.

Persistence checked: both structs are their own snapshot DTOs, both fields added
with fresh tags, snapshot version left at 1.

One fieldalignment finding fixed BY HAND rather than with -fix, per the
nolint-stripping hazard.

91 of 162 swept, 71 remain.

Refs gopherstack-6flj
… types

Zero wrapper-key or nesting bugs. All 20 List, Describe and Get keys plus all 23
shared nested types diffed key-for-key against the real deserializer switches -
and the key-set extraction was SCRIPTED rather than hand-transcribed, which
matters at that width.

Two members never modelled and both DISCLOSED rather than fixed. AwsDevice
across three types and VirtualGatewayRegion are real in the deserializer with
zero grep hits here, but both are marked Deprecated in the SDK's own doc
comments and nothing available confirms whether real AWS still populates them.
Recorded in PARITY gaps rather than guessed - the evidence to decide simply is
not there.

THE TIE-BREAK INVERTED THE PRECEDENT AND THE AGENT SAID SO. Surface pointed at
xray, 14 handler families to directconnect's 6, so it started on xray. Partway
through a read-only investigation a sibling's uncommitted xray changes appeared,
so occupancy overrode surface mid-stream and it switched cleanly, having only
ever read. Last pass had surface pointing at an occupied service from the start;
this time surface picked correctly first and occupancy corrected it later.

The credential sweep is the useful negative here: AuthKey and Ckn both match
real AWS's own wire shape, so their presence is parity rather than
over-exposure. Worth distinguishing after three genuine leaks earlier in this
sweep.

The prior grade-A audit is a coverage gap, not a false claim - it worked from Go
struct definitions and never read the deserializer's key switch case by case.
Its last_audit_commit is also stale, resolving to an unrelated cross-service
commit. Second stale audit pointer found in two passes.

Router confirmed structurally immune rather than assumed. 64 of 64 ops real, all
157 EqualFold hits scoped to error codes.

Required-field diffing scoped honestly to the 20 touched ops, and noted that
this SDK ships zero client-side validators for the whole service.

92 of 162 swept, 70 remain.

Refs gopherstack-6flj
…otation

Annotations was emitted as a flat map of scalars. The real shape is a map of
ARRAYS of tagged-union objects, and the real deserializer type-asserts on
[]interface{} and hard-errors 'unexpected JSON type' on anything else. So every
real client call against a trace carrying at least one annotation died - not
silent-empty.

IT SURVIVED A THOROUGH DEDICATED AUDIT that had already fixed several wrapper-key
bugs in this same service by the same method. That pass diffed member names and
nesting but never checked the Go KIND of a map-of-collections value. A coverage
gap on a different axis rather than a wrong claim - which is why the kind check
is now its own checklist item and not a footnote under naming.

GetInsightSummaries parsed GroupARN, GroupName, StartTime and EndTime and passed
none of them to the backend, so every group and every time window returned the
same unfiltered set. The tractable layer is fixed - validation plus group and
time filtering - and the rest is DISCLOSED rather than papered over: the
detector labels every insight 'default' with no per-group filter-expression
evaluation, so a request for 'default' still gets everything. Op downgraded from
ok to partial.

Sampling and SamplingStrategy on the same op are a no-op safe superset, recorded
rather than faked.

Shared converters all checked and clean, including a Get/Put EncryptionConfig
pair confirmed a GENUINE symmetric pair rather than the trap that made ecr's
PutRegistryScanningConfiguration return nil. Symmetry is a suspect, not a
verdict.

Both agents converged on the same tie-break independently - 14 handler families
against 6 - and the other switched away when it saw these edits mid-flight.
Confirmed from both sides, no collision.

93 of 162 swept, 69 remain.

Refs gopherstack-6flj
…silently dropped

It was wire-tagged at the top level of StartMedicalScribeJob's input and of the
job shape, but the real SDK only carries it nested under Settings. The real
deserializer's default case discards unknown top-level keys without error, so
the setting was accepted, ignored, and never surfaced - no failure anywhere for
a client to notice. An existing test asserted the wrong placement as correct.

All 19 wrapper keys were already right. Every bug this pass was one level
deeper: two shared VocabularyInfo ops missing LastModifiedTime, a
CallAnalyticsSettings member with zero grep hits and distinct from the
same-named field already fixed at job level, and all four Call Analytics rule
filter types missing both of their time-range members.

Key sets were SCRIPT-EXTRACTED from the deserializer for all 19 ops and every
reachable nested type - the width is where hand-transcription fails.

THE TIE-BREAK INVERTED AGAIN AND THE AGENT SAID SO. mediatailor is wider by
handler families, 12 to 9, so surface-first would have picked it. A sibling's
files were already modified at pickup and a new test file appeared there BETWEEN
two git status calls mid-session, so occupancy overrode surface. Fourth pass
running to report the real cause rather than the briefed one.

Two shared converters confirmed genuinely symmetric, and a
VocabularyFilterInfo-versus-GetVocabularyFilterOutput pair confirmed an
INTENTIONAL asymmetry already modelled correctly - checked rather than
flattened to match.

One over-modelled field left in place and disclosed: NonTalkTimeFilter carries a
ParticipantRole the real type does not have, unreachable by any real client.

Hand-reverts were done by editing the pre-fix shape back by hand, since git
checkout is banned for agents this session, then verified byte-identical by
index hash. Worth noting because awsjson1.1 tolerates unknown fields, so none of
these produced a decode error - every confirmation was a nil or missing value.

94 of 162 swept, 68 remain.

Refs gopherstack-6flj
GetFunction and PutFunction never emitted CustomOutputConfiguration,
HttpRequestConfiguration or SequentialExecutorConfiguration - the whole config
surface of that feature was unreachable to any client. ListFunctions dropped
those plus Description, because its Items is the same full type GetFunction
returns.

Four more List ops were dropping real per-item fields, ListChannels shedding 6
of 12 while the summary type already tracked every one. And ListLiveSources'
backend never populated its timestamps at all, where ListVodSources did -
verified per op rather than assumed uniform.

TWO FABRICATED FIELDS DETECTABLE ONLY IN THE RAW BODY: CreateChannel and
UpdateChannel emitted a LogConfiguration that neither real Output type has, and
the prefetch-schedule ops emitted a top-level CreationTime with no real member
at all. A typed client cannot see either, so both tests are deliberately
raw-body. One existing test had asserted the fabricated CreationTime as correct.

The symmetric pair here was a REAL asymmetry in both directions and both
directions were wrong: the List item type has LogConfiguration and no
TimeShiftConfiguration, the Create and Update outputs have the opposite.
Diffing them separately is the only way that surfaces.

Two stale PARITY notes corrected, both the argued-away kind - each ASSERTED a
field had been added and grep says otherwise.

THE BEST RESTRAINT WAS A FIX NOT ATTEMPTED. The agent nearly derived
ScheduleAdBreaks from Program.AdBreaks, then re-read PARITY's own note
explaining why that derivation is exactly the fabrication this issue warns
against, and left it. A second candidate, Audiences, has a plausible derivation
that is unconfirmed - disclosed rather than guessed.

Key extraction was scripted with a paren-balance walker, because a naive
function-body search breaks on this SDK - interface{} appears in the signature
before the real body opens.

95 of 162 swept, 67 remain.

Refs gopherstack-6flj
…eters was unusable

SCRIPTING THE REQUEST SIDE IS THE HEADLINE. Both directions were script-walked -
deserializers for responses, serializers for requests - and the request script
caught two of the seven bugs. The prior audit here scoped itself to
deserializers only, by its own stated method, so a response-only sweep could not
have found them.

Both multi-region parameter ops read their name filter under
ParameterGroupName where the real key is MultiRegionParameterGroupName. A
different key, not a casing variant, so this service's case-insensitive decode
did not save it: on the required-field op EVERY real client's request failed
with a 400, and on the optional one the filter was silently ignored.

The response side of the same op tagged its list Parameters where the real key
is MultiRegionParameters - a sibling trap, since the plain DescribeParameters
genuinely does use Parameters.

Cluster.IpDiscovery was tagged IPDiscovery through a shared object, so six ops
were wrong. The request-side tags with the same spelling were checked and
DELIBERATELY LEFT - encoding/json's case-insensitive fallback still binds them,
so changing them would be churn. Same string, opposite verdicts, decided by
which direction the decoder runs.

MultiRegionCluster was missing NumberOfShards on the response while its source
NumShards was a discarded input not even present in the request struct - the
same bug from both sides at once.

Pagination was discarded on 7 of 15 Describe ops. Six fixed. DescribeEvents
DISCLOSED RATHER THAN FIXED because its result order is not deterministic across
calls, so a cursor on top of it would be unsound - and the underlying
region-scoping defect is flagged separately rather than buried under a
pagination fix.

Three more gaps disclosed, including DescribeUsers filters where AWS's own doc
comment enumerates no valid Name values to implement against honestly.

Eight of nine hand-reverts produced only a missing-value signal rather than an
error, since awsjson1.1 tolerates unknown fields. Only the required-field
request-key revert produced a hard 400.

96 of 162 swept, 66 remain.

Refs gopherstack-6flj
…l client

The output was tagged lowercase 'tags' where the real deserializer switches on
case-sensitive PascalCase Tags and NextToken. This is the one op family in an
otherwise camelCase service that uses AWS's shared generic tagging shape - the
service convention was the trap.

THE TWO EXISTING TESTS WERE STRUCTURALLY BLIND, not merely passing against
unfixed code. Both decoded the response into a matching lowercase local struct
using plain encoding/json, so the test and the handler agreed with each other in
a way no amount of running them could expose. That is a stronger failure than
the ratifying tests found so far.

The request-side half of the same fix turned out NON-OBSERVABLE - the router's
encoding/json already bound it via case-insensitive fallback - and is reported
as such rather than counted. Same distinction memorydb drew last pass.

Three more fixes, all DERIVED rather than invented: two deployment-group
timestamps and a target revision built from real per-group history, an instance
ARN following an existing format precedent in the same file, and a status
message taken verbatim from the SDK's own doc comment.

SIX GAPS DISCLOSED AND DELIBERATELY NOT ADDED, with a good argument: omitempty
makes a present-but-always-empty field byte-identical on the wire to an absent
one, so modelling them would be zero-effect churn rather than a fix. Recorded
separately from the four real ones.

The fieldalignment ordering was derived by running -fix against an ISOLATED
SCRATCH COPY and applying it by hand, keeping the nolint-stripping hazard away
from the real file. Neatest handling of that trap yet.

Tie-break reported honestly again: memorydb had the widest surface at 12 handler
families but was occupied, and between the two free services surface decided
cleanly at 10 against 8.

97 of 162 swept, 65 remain.

Refs gopherstack-6flj
…s archived everything

Three List ops - ListFindings, ListFindingsV2 and ListAccessPreviewFindings -
silently dropped the real filter wire key, so every finding came back regardless
of the criteria asked for. Found by grepping for discarded typed parameters,
which is now the twenty-ninth instance of that class.

BUILDING THE FILTER HELPER EXPOSED A WORSE BUG BESIDE IT. CreateArchiveRule and
ApplyArchiveRule blanket-archived EVERY active finding regardless of the rule's
own filter - real AWS archives only matches. So a rule scoped to one resource
type silently archived the whole account's findings. That is a destructive
behavioural bug, not a wire-shape one, and it surfaced only because the filter
work made the omission visible.

GetFindingsStatistics always emitted the external-access union key even for
unused-access analyzers, which this backend explicitly models - so a real
client's typed union switch decoded into the wrong Go type. Fixed by selecting
the key from the analyzer's own Type.

Filter support is honest about its bounds: Eq is implemented across the four
modelled fields, and Contains, Neq, Exists and unmodelled keys are DISCLOSED
rather than silently treated as no-ops.

Two more gaps declined under the no-stub rule, including GetAnalyzedResource's
optional members - the analyzed-resource and finding paths are unlinked
synthetic state here, so there is nothing honest to source them from.

Occupancy alone chose the service: it was the only free one left at the top
tier, so no surface tie-break applied and the agent said so rather than
inventing one.

Both directions were script-walked across all 39 ops, hitting and fixing the
documented interface{}-in-signature parsing trap.

98 of 162 swept, 64 remain.

Refs gopherstack-6flj
…pped five known fields

A client sending CopyTags=true got a silent no-op. Thirtieth discarded input.

Both CreateDBClusterSnapshot and CopyDBClusterSnapshot omitted five members -
availability zones, KMS key, master username, port and create time - that were
sitting in hand on the source cluster or source snapshot the whole time. Plus
DBInstance never tracked InstanceCreateTime at all, unlike its sibling
DBCluster.ClusterCreateTime.

Two fabricated members removed, both raw-body-only observable since a real
client silently drops unknown XML elements: a bare DBClusterArn the snapshot
type does not have, and a SourceDBClusterIdentifier that is request-only on
Create and absent from the response type. Both derive from real ARN data, so
hygiene rather than a leak - stated as such.

NINE GAPS DISCLOSED RATHER THAN INVENTED, and the reasoning on two is the
useful part. Parameter.AllowedValues has no authoritative source, so filling it
would be invention. Certificate.CertificateArn follows a well-known real ARN
format, but with NO IN-REPO PRECEDENT the agent declined to reconstruct it from
memory - the right call, since 'I know this format' is exactly how fabricated
data enters.

One systemic gap recorded separately: all 16 ops accepting a Filters member
parse it nowhere. That is a filter engine, not a wire fix, and mixing it into
this pass would have hidden it.

TWO TIE-BREAKS, BOTH REPORTED HONESTLY. The agent started on accessanalyzer, a
sibling began editing it mid-investigation, so it hand-reverted its two
speculative edits - confirmed byte-identical, both files dropped out of git
status entirely - and moved tiers. Then docdb and elasticbeanstalk tied EXACTLY
on the primary criterion, 11 handler families each, broken on total op count.

The symmetric pair here was checked by grep rather than assumed:
ReplicationSourceIdentifier is real and echoed, ReadReplicaIdentifiers is
declared and never set, both empty for the same root cause.

99 of 162 swept, 63 remain.

Refs gopherstack-6flj
…d differently

elasticbeanstalk, 10 bugs. DescribeEnvironmentHealth populated HealthStatus with
"Green" - not a member of that enum at all, it belongs to the separate colour
enum. A wrong VALUE borrowed from a neighbouring enum, which no name or shape
check catches. AbortableOperationInProgress was never emitted, and since it is a
*bool that omission is a NIL POINTER that panics a dereferencing client rather
than an empty value.

Plus a shared struct fabricating a PlatformName the real summary type does not
have, two discarded request filters, pagination dropped on six ops, two ops
demanding EnvironmentName while ignoring the real EnvironmentId alternative, and
three never-emitted members.

batch, 2 bugs. quotaSharePolicy was entirely unparsed across three ops - the
prior audit's field-diff note went STALE after an SDK bump added a fifth member.
And two SubmitServiceJob inputs had zero backend wiring anywhere.

A NEW TEST-METHODOLOGY FINDING, and it undercuts some earlier confirmations:
hand-reverting by blanking a Go value is INSUFFICIENT, because a non-pointer
field still round-trips a zero. Simulating real absence needed an xml:"-" retag.
And reverting a timestamp via an empty string produced a hard decode error
rather than the real nil-pointer symptom - so those two reverts are not
equivalent, and some past "confirmed failing" checks may have been weaker than
they read.

BOTH AGENTS HIT A BASH OUTAGE AND HANDLED IT DIFFERENTLY, both acceptably. One
lost the tool entirely, could not gate, and DISCLOSED the work as unverified in
PARITY and the remainder file rather than implying otherwise. The other found
Monitor's shell still worked and ran every gate through it. I gated the first
myself before committing: build, vet and -race all pass.

Also flagged rather than claimed: pkgs/persistence's TestFileStore suite failing
16/16 at filesystem level, untouched by either pass and coinciding with the
outage window.

101 of 162 swept, 61 remain.

Refs gopherstack-6flj
…on's failures diagnosed

Recipe.ProjectName was never modelled and is now DERIVED by reverse lookup
through Project.RecipeName. Project.OpenDate never modelled, now set by
StartProjectSession, its real trigger. JobRun never emitted seven real members,
now snapshotted from the parent Job at StartJobRun. And Project fabricated a
SessionStatus with NO SUCH MEMBER on the real type at all.

A DECLINED DERIVATION IS THE BEST CALL HERE. OpenedBy and StartedBy could have
been filled by reusing an 'admin' literal that already exists in this package -
and the agent refused, because CreatedBy and LastModifiedBy on EVERY OTHER
entity in the same package stay empty forever. It read the consistent precedent
rather than the one-off outlier. Disclosed instead.

THE ENVIRONMENT FAULT IS NOW DIAGNOSED: /tmp is disk-quota-exceeded. That is the
single root cause behind the Bash outage, empty output files, and
pkgs/persistence's TestFileStore suite failing 16 of 16 - which fails with a
literal 'disk quota exceeded'. Those failures are an environment fault, NOT a
code regression, and are flagged rather than chased.

Two tooling facts worth keeping. Monitor's shell works while Bash is dead, but
MONITOR'S OWN PER-TASK STATUS IS UNRELIABLE - it reports failed on commands
whose in-stream exit code is 0. Verified by explicit probe rather than assumed,
and every gate result was read from in-stream markers only. I hit the same thing
three times and had rationalised it as noise.

Also worth recording: the revert technique here was removing the single
assignment that populates each field, matching the actual bug shape of never
assigned, rather than blanking a stored value. For the two non-pointer fields
touched, the pre-fix bug genuinely WAS the Go zero value, so blanking would have
been equivalent - stated explicitly rather than left ambiguous after the
previous pass showed the two are not always the same.

Gates re-run independently by the orchestrator: full build, vet and -race all
green.

102 of 162 swept, 60 remain.

Refs gopherstack-6flj
…SDK pin

The docs job was failing because I told every agent in this campaign not to run
gendocs. That was right while thirty-odd services were editing PARITY files in
parallel - regenerated READMEs would have collided constantly - but it
guaranteed this failure once the sweep landed. Self-inflicted and mechanical.

THE PIN FAILURE IS THE REAL FINDING. check-pins rejected redshift's sdk_module
because it was prose, not a pin: two modules plus a parenthetical, with no
parseable @Version. That check exists because a stale pin silently undermines
every wire-shape claim audited against it - and an unparseable field is one the
checker cannot verify at all. Redshift's two modules had been unverifiable while
this campaign cited PARITY files as its evidence base.

Fixed to the convention the repo already uses elsewhere - sdk_module holds the
primary, sibling_sdk_modules holds the rest - keeping the provenance note rather
than dropping it. checkpins now reports 162 services checked, all pins matching.

Docs regenerated: 160 READMEs, the root service table, and three badge SVGs.

Refs gopherstack-6flj
e2e-tests was failing with a COMPILE error, not a test failure: 'too many
arguments in call to CreateEventBus' at test/e2e/eventbridge_test.go:21 and :58.
The eventbridge parity sweep refactored CreateEventBus to take a
CreateEventBusParams struct, and the e2e caller still passed three positional
args.

THE GATE HOLE IS THE REAL FINDING. My standing rule was to run a full
go build ./... after any signature change, and that command SILENTLY SKIPS
build-tagged packages. test/e2e sits behind //go:build e2e, so the signature
change passed my gate, passed the sweep agent's gate, and still broke CI. This
commit verifies the e2e AND integration tag variants explicitly, and that check
belongs in the gate set from now on rather than being rediscovered by CI.

Also fixes the one govet finding: a fieldalignment in
test/integration/codecommit_test.go, an anonymous test struct whose string-then-func
order spans 24 pointer bytes where func-then-string spans 16. Fixed BY HAND
rather than with fieldalignment -fix, which silently strips pre-existing nolint
comments - a hazard this campaign already hit once. Call sites use keyed
literals, so reordering the declaration is safe.

The e2e check showing 'skipping' was confirmed normal cascade, not a second
fault: that job is a pass-through gate with needs: [e2e-tests].

Runtime of the e2e suite is UNVERIFIED locally - it needs Playwright browsers
this environment lacks, and the agent flagged that rather than claiming a pass.
CI installs them in its own step and will prove it.

Refs gopherstack-6flj
Twenty-two header string literals corrected to Go's canonical MIME form -
X-Amzn-Errortype, X-Amzn-Appconfig-Version-Label, and Etag, which surprises
people because Go lowercases the T. Repo-wide golangci-lint now reports 0
findings, down from 12.

BEHAVIOUR IS UNCHANGED AND THAT WAS CHECKED, NOT ASSUMED. Header Get, Set and
Add canonicalise the key internally, so these literals never affected the wire.
The one construct that WOULD have - direct map assignment like
Header()["X-Amzn-ErrorType"], which preserves case - was grepped for
independently and does not exist anywhere in services/ or test/. That mattered
here: real AWS sends x-amzn-ErrorType, so silently recasing a map write would
have been a parity regression dressed as a lint fix, in exactly the class this
campaign has spent the session hunting.

Comments and assertion-message prose mentioning the old spellings were correctly
left alone - canonicalheader only inspects literal arguments to those three
methods.

Worth recording about the agent: Grep and Glob were not available to it at all
and Bash was dead, so it navigated by reading files and guessing paths. It said
plainly it could NOT claim an exhaustive search, and flagged two edit classes it
could not confirm were actually linted - the ETag constants and two handler.go
constants consumed via identifiers rather than literals. The repo-wide lint run
is what settles both: zero findings, and appconfigdata passes under -race.

Refs gopherstack-6flj
…indings

CodeFactor flagged unexported-return on GetApplicationSettings and
UpdateApplicationSettings, both exported methods returning *storedAppSettings.
Renamed the type; JSON tags are untouched, so snapshots restore unchanged.

CodeFactor was the one check whose detail was not exposed anywhere obvious - an
empty output_summary and a one-second failure that looked like a broken
integration. The findings were real and precise, and reachable only through the
check-runs annotations endpoint. Worth remembering rather than writing the
check off next time it fails fast with no visible reason.

GOPLS REPORTED A RENAME IT DID NOT COMPLETE, and that is the part worth
recording. It returned 'Successfully renamed symbol' with an itemised manifest -
19 occurrences, 5 files, exact lines and columns - while leaving two references
unrenamed and WRITING A STRAY StoredAppSettings TOKEN onto a blank line,
producing 'StoredAppSettings (type) is not an expression'. Committing on the
tool's own success report would have pushed a package that does not compile.

That is the third false-success channel this session, after head masking a
pipeline exit code and Monitor's wrapper reporting failed on success. All three
were caught by verifying against the actual build rather than the reporting
layer.

Repaired the three sites by hand. A leftover-identifier grep - added
specifically because gopls had just over-reported - also caught a doc comment
still naming the old type, which no compiler would ever flag.

Verified: full go build clean, pinpoint green under -race, repo-wide
golangci-lint at 0 findings.

Refs gopherstack-6flj
unit-tests (2) failed on TestSnapshotVersionGuard - a regression I introduced
with the StoredAppSettings export in a43ebe6. The rename changed the field's
Go type inside pinpoint's persistence.go, and the guard compares that field list
against a checked-in golden.

THE GOLDEN DIFF IS THE EVIDENCE THIS IS SAFE, and checking it mattered more than
the test turning green:

  -  AppSettings map[string]*storedAppSettings `json:"appSettings"`
  +  AppSettings map[string]*StoredAppSettings `json:"appSettings"`

One line, type name only. JSON tag identical, snapshot version untouched, wire
bytes unchanged.

That check is the whole point of the guard. It exists to stop an agent adding a
field and reflexively bumping the version constant - encoding/json decodes an
older snapshot missing a field fine, but a bump sends Restore down ResetAll and
DISCARDS EVERY USER'S PERSISTED STATE on an upgrade meant only to extend it. It
is deliberately unsilenceable: a purely-additive bump fails even under -update.
So running -update until a test passes is precisely the reflex it defends
against, and the diff had to be read before trusting it.

Reproducible locally, unlike the other 20-odd local failures - lambda,
inithooks, the FileStore suite - which are all 'disk quota exceeded' on a /tmp
with 803M free but a per-user quota hit. Those are environmental and are NOT
what CI is failing on.

Refs gopherstack-6flj, gopherstack-5i6p
…n against

CI failed with expected: 204, actual: 200. The test was wrong; the product was
right.

My earlier commit 7b39863 changed DeleteCapacityProvider from a bare 204 to
200 with a body, because DeleteCapacityProviderOutput.CapacityProvider is marked
'This member is required' (api_op_DeleteCapacityProvider.go:39-44) and the
deserializer explicitly tolerates io.EOF on an empty body - err != nil && err !=
io.EOF - so a bare 204 let a real client return SUCCESSFULLY WITH A NIL REQUIRED
FIELD. That commit fixed the handler and never updated the integration test
still asserting the old behaviour.

A ratifying test in the strictest sense: written against the bug it was meant to
catch, and green precisely because the code was broken. Forty-fourth found this
campaign.

The replacement does not loosen anything - it asserts 200, decodes the body, and
checks CapacityProvider is present with the expected ARN, mirroring the
create and update assertions already in the same test.

I asked the agent to tell me if my fix was wrong and the test right, since I
would rather revert my own change than bend a correct test. It came back the
other way with SDK citations for both halves, which is why I believe it.

Verified independently before commit: go build -tags integration ./... clean,
and the test passes.

Refs gopherstack-6flj
The test creates a domain, renders the dashboard, then asserts the page says
"No domains found". It cannot pass: the domain it just created is right there in
the HTML.

Not a routing bug, which was my leading hypothesis and was wrong. The CI log
shows OpenSearch handled the request correctly:

  service=OpenSearch operation=ListDomainNames status_code=200

and the captured page is fully hydrated, containing a card for the domain:

  <div class="font-semibold ...">test-domain</div>

So no client would ever get HTML where JSON was expected. Product is fine.

The assertion was flipped backwards on 2026-04-17 in f39569d ("UI tweaks 3",
PR #1079), the SvelteKit dashboard rewrite:

  -  require.Contains(t, content, "test-domain")
  +  require.Contains(t, content, "No domains found")

An accidental swap in a sweeping rewrite. This commit reverts exactly that line.
Restoring a correct assertion, not weakening one - it checks strictly more than
the broken version did.

PREDATES THIS BRANCH BY FOUR MONTHS: git log over merge-base..HEAD shows PR
#2417 has touched this file zero times. It surfaced here only because the
eventbridge compile error I fixed earlier was aborting the whole e2e job at
6m18s, before this test ran. Fixing the compile break is what exposed it.

Verified the blame claim myself rather than taking the agent's word: the flip
commit, its diff, and the zero-touch count all reproduce.

Not run locally - Playwright browsers are unavailable in this environment. Rests
on the CI log showing the rendered HTML already contains the literal string.
Marking it verified-by-CI, not verified-by-me, until the run proves it.

Refs gopherstack-6flj
…QL leg

gopherstack-c1g8: codeql (go) and Analyze (go) have never reported a status
across four runs on this branch, while Analyze (javascript-typescript) passes.
There is no Go static-analysis coverage in CI right now, so 'fix any codeql
issues' is unanswerable for Go - and a silent absence reads as clean, which is
the dangerous part.

The other issue: go build ./... does not compile build-tagged packages. That
hole let a signature change pass a full-repo build gate and still break CI, and
the resulting compile error masked a second latent e2e failure for months.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01S4Cutc3ACD1iGsqmftLArk
…WS requires

terraform-tests (3) failed on TestTerraformDrift_DynamoDB/provisioned_throughput:

  ValidationException: One or more parameter values were invalid: Up to one of
  the following can be updated per API call: ProvisionedThroughput, ...

We emitted that. A plain read_capacity 10 -> 5 change came back 400.

NOT a too-strict-validation story, and not a regression in the check itself:
countUpdateTableMutations is IDENTICAL on main, which is green. What changed is
7a2189b ("four more wire-layer drops"), which fixed ToSDKUpdateTableInput
silently discarding BillingMode, TableClass, SSESpecification and
DeletionProtectionEnabled. With BillingMode finally populated,
terraform-provider-aws's

  if d.HasChanges("billing_mode", "read_capacity", "write_capacity")

branch sends BillingMode AND ProvisionedThroughput together - BillingMode
unconditionally, even when unchanged - and our check counted two mutations.

So a correct parity fix exposed a latent bug main still carries, unexercised.
That is the de-stub work behaving exactly as intended: failing loudly where we
were previously silently wrong.

AWS REQUIRES THE PAIR, so it cannot be mutually exclusive:

  "When switching from pay-per-request to provisioned capacity, initial
   provisioned capacity values must be set"
  -- api_op_UpdateTable.go:60-63, aws-sdk-go-v2/service/dynamodb v1.63.1

The fix groups the two into one mutation group. Nothing is weakened: the
at-most-one rule still holds for every other group, and the drift test is
untouched.

Worth recording that the SDK's own exclusivity list (api_op_UpdateTable.go:17-24)
is only throughput, remove-GSI, create-GSI. Our check treats eight fields as
exclusive - five more than AWS documents. Those five are latent and unexercised,
so I filed gopherstack-dbvw rather than widening a CI fix into an unverified
loosening.

Gates: go build ./..., go vet, go test -race on all three dynamodb packages, plus
-tags integration and -tags e2e builds. The terraform suite needs OpenTofu and
was NOT run locally - this rests on CI.

Refs gopherstack-dbvw, gopherstack-6flj
@agbishop
agbishop marked this pull request as ready for review August 15, 2026 17:30
Witness Patrol and others added 3 commits August 15, 2026 12:34
The PR's CodeQL check reported "5 new alerts including 5 high severity security
vulnerabilities". All five are in code this branch added.

I had told the user there were zero open CodeQL alerts. That was wrong: I queried
default-branch alerts, and these are scoped to refs/pull/2417/merge, so they did
not appear. The check-run output is what surfaced them.

go/regex/missing-regexp-anchor (#268 cmd/requiredoutputfields, #267
cmd/overwidecandidates) — REAL, though low impact. An unanchored
github\.com/aws/aws-sdk-go-v2/service/(...) also matches a host that merely
embeds the path, e.g. evil.com/github.com/aws/... Both tools only ever read
local Go source, so there is no plausible exploit, but the anchored form is
strictly more correct. Anchoring on the opening quote ties the match to a real
import line while still matching aliased imports and /types subpackages.
Verified both tools still emit correct service-keyed output afterwards - an
anchor that silently matched nothing would be worse than the alert.

go/allocation-size-overflow (#271, #270 line 104; #269 line 88) — FALSE
POSITIVES. Both sites are map capacity hints, make(map[K]V, len(a)+len(b)),
where a and b are already-materialised in-memory maps; overflowing int needs
~2^63 entries. Rather than add a bounds check that can never fire - a fake guard
reads as real validation and is worse than the warning - the hint now sizes on
len(existing) alone. maps.Copy grows it as needed; behaviour is identical.

Gates: go build ./..., go vet on all three packages, go test on all three
dynamodb packages, plus a live run of both cmd tools.

Refs gopherstack-6flj
…oles

PR #2417 is ready and mergeable, 37/37 green. Records what the next session
needs and would otherwise rediscover:

- Every item in the heartbeat cron's queue is closed, verified against live code
  rather than bd's close text. The cron still names all nine; until it is edited
  each wake-up proposes finished work.
- ylyb, 377m and cu4g are human decisions an agent must not make.
- The DynamoDB UpdateTable bug fixed here is still latent on main - it only
  fires once BillingMode reaches the wire.
- go build ./... does not compile build-tagged packages, and a PR's check rollup
  is not its workflow run. Both cost real time this session.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01S4Cutc3ACD1iGsqmftLArk
lint failed on the docs-only checkpoint commit:

  services/personalize/handler.go:222:28: non-canonical header
  "X-Amzn-ErrorType", instead use: "X-Amzn-Errortype" (canonicalheader)

Not caused by that commit. It passed on fbdc06d because nearly every earlier
lint run was CANCELLED by my own push cadence - the same cancel-in-progress
mechanism that made codeql (go) look like it never reported. This run got its
full 18 minutes and surfaced a violation that had been sitting on the branch.

Safe: Header().Set canonicalises internally, so the wire output is unchanged. I
re-confirmed there is no direct Header()[...] = ... assignment anywhere in
services/ or pkgs/ - that form DOES preserve case on the wire, and real AWS
sends x-amzn-ErrorType, so recasing one of those would be a parity regression
rather than a lint fix.

Deliberately did NOT touch services/efs/handler.go:591,595,599, which use
"x-amzn-ErrorType". A grep says they look identical in kind; the linter says
otherwise. Ran canonicalheader locally against efs: 0 issues. Then repo-wide:
0 issues. Changing those three lines on the strength of the grep would have been
three edits for nothing.

Refs gopherstack-6flj
@agbishop
agbishop merged commit 69bbb94 into main Aug 15, 2026
37 checks passed
@agbishop
agbishop deleted the chore/queue-2026-08-11 branch August 15, 2026 19:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants