alien-aws-clients 1.7.1

Deploy software into your customers' cloud accounts and keep it fully managed
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
use crate::aws::aws_request_utils::{AwsRequestBuilderExt, AwsRequestSigner, AwsSignConfig};
use crate::aws::credential_provider::AwsCredentialProvider;
use alien_client_core::{ErrorData, Result};

use alien_error::{Context, ContextError, IntoAlienError};
use bon::Builder;
use form_urlencoded;
use reqwest::{Client, Method, StatusCode};
use serde::de::DeserializeOwned;
use serde::{Deserialize, Serialize};

#[cfg(feature = "test-utils")]
use mockall::automock;

#[cfg_attr(feature = "test-utils", automock)]
#[cfg_attr(target_arch = "wasm32", async_trait::async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait::async_trait)]
pub trait LambdaApi: Send + Sync + std::fmt::Debug {
    async fn create_function(
        &self,
        request: CreateFunctionRequest,
    ) -> Result<FunctionConfiguration>;
    async fn create_function_url_config(
        &self,
        function_name: &str,
        request: CreateFunctionUrlConfigRequest,
    ) -> Result<CreateFunctionUrlConfigResponse>;
    async fn add_permission(
        &self,
        function_name: &str,
        request: AddPermissionRequest,
    ) -> Result<AddPermissionResponse>;
    async fn update_function_code(
        &self,
        function_name: &str,
        request: UpdateFunctionCodeRequest,
    ) -> Result<FunctionConfiguration>;
    async fn update_function_configuration(
        &self,
        function_name: &str,
        request: UpdateFunctionConfigurationRequest,
    ) -> Result<FunctionConfiguration>;
    async fn get_function_configuration(
        &self,
        function_name: &str,
        qualifier: Option<String>,
    ) -> Result<FunctionConfiguration>;
    async fn delete_function_url_config(
        &self,
        function_name: &str,
        qualifier: Option<String>,
    ) -> Result<()>;
    async fn get_function_url_config(
        &self,
        function_name: &str,
        qualifier: Option<String>,
    ) -> Result<FunctionUrlConfig>;
    async fn delete_function(&self, function_name: &str, qualifier: Option<String>) -> Result<()>;
    async fn get_policy(
        &self,
        function_name: &str,
        qualifier: Option<String>,
    ) -> Result<GetPolicyResponse>;

    // Function invocation operations
    async fn invoke(&self, request: InvokeRequest) -> Result<InvokeResponse>;

    // Event Source Mapping operations
    async fn create_event_source_mapping(
        &self,
        request: CreateEventSourceMappingRequest,
    ) -> Result<EventSourceMapping>;
    async fn get_event_source_mapping(&self, uuid: &str) -> Result<EventSourceMapping>;
    async fn update_event_source_mapping(
        &self,
        uuid: &str,
        request: UpdateEventSourceMappingRequest,
    ) -> Result<EventSourceMapping>;
    async fn delete_event_source_mapping(&self, uuid: &str) -> Result<EventSourceMapping>;
    async fn list_event_source_mappings(
        &self,
        request: ListEventSourceMappingsRequest,
    ) -> Result<ListEventSourceMappingsResponse>;

    // Concurrency operations
    async fn put_function_concurrency(
        &self,
        function_name: &str,
        reserved_concurrent_executions: u32,
    ) -> Result<()>;
    async fn delete_function_concurrency(&self, function_name: &str) -> Result<()>;
}

// ---------------------------------------------------------------------------
// Lambda client using new request helpers.
// ---------------------------------------------------------------------------
#[derive(Debug, Clone)]
pub struct LambdaClient {
    client: Client,
    credentials: AwsCredentialProvider,
}

impl LambdaClient {
    pub fn new(client: Client, credentials: AwsCredentialProvider) -> Self {
        Self {
            client,
            credentials,
        }
    }

    fn sign_config(&self) -> AwsSignConfig {
        AwsSignConfig {
            service_name: "lambda".into(),
            region: self.credentials.region().to_string(),
            credentials: self.credentials.get_credentials(),
            signing_region: None,
        }
    }

    fn get_base_url(&self) -> String {
        if let Some(override_url) = self.credentials.get_service_endpoint_option("lambda") {
            override_url.to_string()
        } else {
            format!("https://lambda.{}.amazonaws.com", self.credentials.region())
        }
    }

    // ------------------------- internal helpers -------------------------

    async fn send_json<T: DeserializeOwned + Send + 'static>(
        &self,
        method: Method,
        path: &str,
        query_params: Option<Vec<(&str, String)>>,
        body: Option<String>,
        operation: &str,
        resource: &str,
    ) -> Result<T> {
        self.credentials.ensure_fresh().await?;
        let base_url = self.get_base_url();
        let mut url = format!("{}{}", base_url.trim_end_matches('/'), path);
        if let Some(qs) = query_params {
            if !qs.is_empty() {
                url.push('?');
                url.push_str(
                    &qs.iter()
                        .map(|(k, v)| {
                            format!(
                                "{}={}",
                                k,
                                form_urlencoded::byte_serialize(v.as_bytes()).collect::<String>()
                            )
                        })
                        .collect::<Vec<_>>()
                        .join("&"),
                );
            }
        }

        let builder = self
            .client
            .request(method.clone(), &url)
            .host(&format!(
                "lambda.{}.amazonaws.com",
                self.credentials.region()
            ))
            .content_type_json();

        let builder = if let Some(ref b) = body {
            builder.content_sha256(b).body(b.clone())
        } else {
            builder.content_sha256("")
        };

        let result =
            crate::aws::aws_request_utils::sign_send_json(builder, &self.sign_config()).await;

        Self::map_result(result, operation, resource, body.as_deref())
    }

    async fn send_no_body(
        &self,
        method: Method,
        path: &str,
        query_params: Option<Vec<(&str, String)>>,
        operation: &str,
        resource: &str,
    ) -> Result<()> {
        self.credentials.ensure_fresh().await?;
        let base_url = self.get_base_url();
        let mut url = format!("{}{}", base_url.trim_end_matches('/'), path);
        if let Some(qs) = query_params {
            if !qs.is_empty() {
                url.push('?');
                url.push_str(
                    &qs.iter()
                        .map(|(k, v)| {
                            format!(
                                "{}={}",
                                k,
                                form_urlencoded::byte_serialize(v.as_bytes()).collect::<String>()
                            )
                        })
                        .collect::<Vec<_>>()
                        .join("&"),
                );
            }
        }

        let builder = self
            .client
            .request(method, &url)
            .host(&format!(
                "lambda.{}.amazonaws.com",
                self.credentials.region()
            ))
            .content_sha256("");

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(result, operation, resource, None)
    }

    fn map_result<T>(
        result: Result<T>,
        operation: &str,
        resource: &str,
        request_body: Option<&str>,
    ) -> Result<T> {
        match result {
            Ok(v) => Ok(v),
            Err(e) => {
                if let Some(ErrorData::HttpResponseError {
                    http_status,
                    http_response_text: Some(ref text),
                    ..
                }) = &e.error
                {
                    let status = StatusCode::from_u16(*http_status)
                        .unwrap_or(StatusCode::INTERNAL_SERVER_ERROR);
                    if let Some(mapped) =
                        Self::map_lambda_error(status, text, operation, resource, request_body)
                    {
                        Err(e.context(mapped))
                    } else {
                        // Couldn't parse Lambda error, use original error
                        Err(e)
                    }
                } else {
                    Err(e)
                }
            }
        }
    }

    fn map_lambda_error(
        status: StatusCode,
        body: &str,
        operation: &str,
        resource: &str,
        request_body: Option<&str>,
    ) -> Option<ErrorData> {
        let parsed: std::result::Result<LambdaErrorResponse, _> = serde_json::from_str(body);
        let (code, message) = match parsed {
            Ok(e) => {
                let c = e
                    .type_field_underscore
                    .or(e.type_field)
                    .or_else(|| e.error.as_ref().and_then(|d| d.code.clone()))
                    .unwrap_or_else(|| "UnknownErrorCode".into());
                let m = e
                    .message
                    .or(e.message_capital)
                    .or_else(|| e.error.as_ref().and_then(|d| d.message.clone()))
                    .unwrap_or_else(|| "Unknown error".into());
                (c, m)
            }
            Err(_) => {
                // If we can't parse the response, return None to use original error
                return None;
            }
        };

        Some(match code.as_str() {
            // Access / auth
            "AccessDeniedException"
            | "NotAuthorized"
            | "UnrecognizedClientException"
            | "ExpiredTokenException" => ErrorData::RemoteAccessDenied {
                resource_type: "Function".into(),
                resource_name: resource.into(),
            },
            // Throttling
            "ThrottlingException" | "TooManyRequestsException" => {
                ErrorData::RateLimitExceeded { message }
            }
            // Service unavailable
            "ServiceUnavailable" | "InternalFailure" | "ServiceException" => {
                ErrorData::RemoteServiceUnavailable { message }
            }
            // Timeout
            "RequestTimeoutException" => ErrorData::Timeout { message },
            // Resource not found
            "ResourceNotFoundException" => ErrorData::RemoteResourceNotFound {
                resource_type: "Function".into(),
                resource_name: resource.into(),
            },
            // Conflict / already exists
            "ResourceConflictException" => ErrorData::RemoteResourceConflict {
                message,
                resource_type: "Function".into(),
                resource_name: resource.into(),
            },
            // Lambda invoke-specific errors
            "EC2AccessDeniedException" | "EC2ThrottledException" | "EC2UnexpectedException" => {
                ErrorData::RemoteServiceUnavailable { message }
            }
            "EFSIOException"
            | "EFSMountConnectivityException"
            | "EFSMountFailureException"
            | "EFSMountTimeoutException" => ErrorData::RemoteServiceUnavailable { message },
            "ENILimitReachedException"
            | "InvalidSubnetIDException"
            | "InvalidSecurityGroupIDException"
            | "SubnetIPAddressLimitReachedException" => {
                ErrorData::RemoteServiceUnavailable { message }
            }
            "InvalidParameterValueException"
            | "InvalidRequestContentException"
            | "UnsupportedMediaTypeException" => {
                // IAM eventual consistency: Lambda may return InvalidParameterValueException
                // when it cannot yet assume a just-created execution role, or when ECR
                // cross-account permissions haven't propagated yet.
                if message.contains("cannot be assumed")
                    || message.contains("not authorized")
                    || message.contains("does not have permission to access the ECR image")
                {
                    ErrorData::RemoteServiceUnavailable { message }
                } else {
                    ErrorData::InvalidInput {
                        message,
                        field_name: None,
                    }
                }
            }
            "InvalidRuntimeException" | "InvalidZipFileException" => {
                ErrorData::RemoteServiceUnavailable { message }
            }
            "KMSAccessDeniedException"
            | "KMSDisabledException"
            | "KMSInvalidStateException"
            | "KMSNotFoundException" => ErrorData::RemoteAccessDenied {
                resource_type: "KMS Key".into(),
                resource_name: resource.into(),
            },
            "RecursiveInvocationException" => ErrorData::InvalidInput {
                message,
                field_name: None,
            },
            "RequestTooLargeException" => ErrorData::InvalidInput {
                message,
                field_name: None,
            },
            "ResourceNotReadyException" => ErrorData::RemoteServiceUnavailable { message },
            "SnapStartException" | "SnapStartNotReadyException" | "SnapStartTimeoutException" => {
                ErrorData::RemoteServiceUnavailable { message }
            }
            _ => match status {
                StatusCode::NOT_FOUND => ErrorData::RemoteResourceNotFound {
                    resource_type: "Function".into(),
                    resource_name: resource.into(),
                },
                StatusCode::CONFLICT => ErrorData::RemoteResourceConflict {
                    message,
                    resource_type: "Function".into(),
                    resource_name: resource.into(),
                },
                StatusCode::FORBIDDEN | StatusCode::UNAUTHORIZED => ErrorData::RemoteAccessDenied {
                    resource_type: "Function".into(),
                    resource_name: resource.into(),
                },
                StatusCode::TOO_MANY_REQUESTS => ErrorData::RateLimitExceeded { message },
                StatusCode::SERVICE_UNAVAILABLE
                | StatusCode::BAD_GATEWAY
                | StatusCode::GATEWAY_TIMEOUT => ErrorData::RemoteServiceUnavailable { message },
                _ => ErrorData::HttpResponseError {
                    message: format!("Lambda {operation} failed: {message}"),
                    url: format!("lambda.amazonaws.com"),
                    http_status: status.as_u16(),
                    http_response_text: Some(body.into()),
                    http_request_text: request_body.map(|s| s.to_string()),
                },
            },
        })
    }
}

#[cfg_attr(target_arch = "wasm32", async_trait::async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait::async_trait)]
impl LambdaApi for LambdaClient {
    async fn create_function(
        &self,
        request: CreateFunctionRequest,
    ) -> Result<FunctionConfiguration> {
        let body = serde_json::to_string(&request).into_alien_error().context(
            ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize CreateFunctionRequest for function '{}'",
                    request.function_name
                ),
            },
        )?;
        self.send_json(
            Method::POST,
            "/2015-03-31/functions",
            None,
            Some(body),
            "CreateFunction",
            &request.function_name,
        )
        .await
    }

    async fn create_function_url_config(
        &self,
        function_name: &str,
        request: CreateFunctionUrlConfigRequest,
    ) -> Result<CreateFunctionUrlConfigResponse> {
        let body = serde_json::to_string(&request).into_alien_error().context(
            ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize CreateFunctionUrlConfigRequest for function '{}'",
                    function_name
                ),
            },
        )?;
        let path = format!("/2021-10-31/functions/{}/url", function_name);
        self.send_json(
            Method::POST,
            &path,
            None,
            Some(body),
            "CreateFunctionUrlConfig",
            function_name,
        )
        .await
    }

    async fn add_permission(
        &self,
        function_name: &str,
        request: AddPermissionRequest,
    ) -> Result<AddPermissionResponse> {
        let body = serde_json::to_string(&request).into_alien_error().context(
            ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize AddPermissionRequest for function '{}'",
                    function_name
                ),
            },
        )?;
        let path = format!("/2015-03-31/functions/{}/policy", function_name);
        self.send_json(
            Method::POST,
            &path,
            None,
            Some(body),
            "AddPermission",
            function_name,
        )
        .await
    }

    async fn update_function_code(
        &self,
        function_name: &str,
        request: UpdateFunctionCodeRequest,
    ) -> Result<FunctionConfiguration> {
        let body = serde_json::to_string(&request).into_alien_error().context(
            ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize UpdateFunctionCodeRequest for function '{}'",
                    function_name
                ),
            },
        )?;
        let path = format!("/2015-03-31/functions/{}/code", function_name);
        self.send_json(
            Method::PUT,
            &path,
            None,
            Some(body),
            "UpdateFunctionCode",
            function_name,
        )
        .await
    }

    async fn update_function_configuration(
        &self,
        function_name: &str,
        request: UpdateFunctionConfigurationRequest,
    ) -> Result<FunctionConfiguration> {
        let body = serde_json::to_string(&request).into_alien_error().context(
            ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize UpdateFunctionConfigurationRequest for function '{}'",
                    function_name
                ),
            },
        )?;
        let path = format!("/2015-03-31/functions/{}/configuration", function_name);
        self.send_json(
            Method::PUT,
            &path,
            None,
            Some(body),
            "UpdateFunctionConfiguration",
            function_name,
        )
        .await
    }

    async fn get_function_configuration(
        &self,
        function_name: &str,
        qualifier: Option<String>,
    ) -> Result<FunctionConfiguration> {
        let path = format!("/2015-03-31/functions/{}", function_name);
        let mut qp = Vec::new();
        if let Some(q) = qualifier {
            qp.push(("Qualifier", q));
        }
        let resp: GetFunctionResponse = self
            .send_json(
                Method::GET,
                &path,
                Some(qp),
                None,
                "GetFunctionConfiguration",
                function_name,
            )
            .await?;
        Ok(resp.configuration)
    }

    async fn delete_function_url_config(
        &self,
        function_name: &str,
        qualifier: Option<String>,
    ) -> Result<()> {
        let path = format!("/2021-10-31/functions/{}/url", function_name);
        let mut qp = Vec::new();
        if let Some(q) = qualifier {
            qp.push(("Qualifier", q));
        }
        self.send_no_body(
            Method::DELETE,
            &path,
            if qp.is_empty() { None } else { Some(qp) },
            "DeleteFunctionUrlConfig",
            function_name,
        )
        .await
    }

    async fn get_function_url_config(
        &self,
        function_name: &str,
        qualifier: Option<String>,
    ) -> Result<FunctionUrlConfig> {
        let path = format!("/2021-10-31/functions/{}/url", function_name);
        let mut qp = Vec::new();
        if let Some(q) = qualifier {
            qp.push(("Qualifier", q));
        }
        self.send_json(
            Method::GET,
            &path,
            if qp.is_empty() { None } else { Some(qp) },
            None,
            "GetFunctionUrlConfig",
            function_name,
        )
        .await
    }

    async fn delete_function(&self, function_name: &str, qualifier: Option<String>) -> Result<()> {
        let path = format!("/2015-03-31/functions/{}", function_name);
        let mut qp = Vec::new();
        if let Some(q) = qualifier {
            qp.push(("Qualifier", q));
        }
        self.send_no_body(
            Method::DELETE,
            &path,
            if qp.is_empty() { None } else { Some(qp) },
            "DeleteFunction",
            function_name,
        )
        .await
    }

    async fn get_policy(
        &self,
        function_name: &str,
        qualifier: Option<String>,
    ) -> Result<GetPolicyResponse> {
        let path = format!("/2015-03-31/functions/{}/policy", function_name);
        let mut qp = Vec::new();
        if let Some(q) = qualifier {
            qp.push(("Qualifier", q));
        }
        self.send_json(
            Method::GET,
            &path,
            if qp.is_empty() { None } else { Some(qp) },
            None,
            "GetPolicy",
            function_name,
        )
        .await
    }

    async fn invoke(&self, request: InvokeRequest) -> Result<InvokeResponse> {
        self.credentials.ensure_fresh().await?;
        let function_name = &request.function_name;
        let path = format!("/2015-03-31/functions/{}/invocations", function_name);

        // Build URL with query parameters
        let base_url = self.get_base_url();
        let mut url = format!("{}{}", base_url.trim_end_matches('/'), path);

        if let Some(ref qualifier) = request.qualifier {
            url.push('?');
            url.push_str(&format!(
                "Qualifier={}",
                form_urlencoded::byte_serialize(qualifier.as_bytes()).collect::<String>()
            ));
        }

        let mut builder = self.client.request(Method::POST, &url).host(&format!(
            "lambda.{}.amazonaws.com",
            self.credentials.region()
        ));

        // Set invocation type header
        match request.invocation_type {
            InvocationType::RequestResponse => {
                builder = builder.header("X-Amz-Invocation-Type", "RequestResponse");
            }
            InvocationType::Event => {
                builder = builder.header("X-Amz-Invocation-Type", "Event");
            }
            InvocationType::DryRun => {
                builder = builder.header("X-Amz-Invocation-Type", "DryRun");
            }
        }

        // Set log type header if specified
        if let Some(ref log_type) = request.log_type {
            builder = builder.header("X-Amz-Log-Type", log_type);
        }

        // Set client context if specified
        if let Some(ref client_context) = request.client_context {
            builder = builder.header("X-Amz-Client-Context", client_context);
        }

        // Set payload as binary data (not JSON)
        builder = builder.content_sha256_bytes(&request.payload);
        if !request.payload.is_empty() {
            builder = builder.body(reqwest::Body::from(request.payload.clone()));
        }

        let signed_builder = builder.sign_aws_request(&self.sign_config())?;
        let response = signed_builder.send().await.into_alien_error().context(
            ErrorData::HttpRequestFailed {
                message: format!("Failed to invoke Lambda function '{}'", function_name),
            },
        )?;

        let status = response.status().as_u16();
        let headers = response.headers().clone();
        let payload =
            response
                .bytes()
                .await
                .into_alien_error()
                .context(ErrorData::HttpRequestFailed {
                    message: format!(
                        "Failed to read invoke response body for function '{}'",
                        function_name
                    ),
                })?;

        // Parse function error from headers
        let function_error = headers
            .get("X-Amz-Function-Error")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());

        let log_result = headers
            .get("X-Amz-Log-Result")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());

        let executed_version = headers
            .get("X-Amz-Executed-Version")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());

        Ok(InvokeResponse {
            status_code: status,
            function_error,
            log_result,
            payload: payload.to_vec(),
            executed_version,
        })
    }

    async fn create_event_source_mapping(
        &self,
        request: CreateEventSourceMappingRequest,
    ) -> Result<EventSourceMapping> {
        let body = serde_json::to_string(&request).into_alien_error().context(
            ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize CreateEventSourceMappingRequest for function '{}'",
                    request.function_name
                ),
            },
        )?;
        self.send_json(
            Method::POST,
            "/2015-03-31/event-source-mappings",
            None,
            Some(body),
            "CreateEventSourceMapping",
            &request.function_name,
        )
        .await
    }

    async fn get_event_source_mapping(&self, uuid: &str) -> Result<EventSourceMapping> {
        let path = format!("/2015-03-31/event-source-mappings/{}", uuid);
        self.send_json(
            Method::GET,
            &path,
            None,
            None,
            "GetEventSourceMapping",
            uuid,
        )
        .await
    }

    async fn update_event_source_mapping(
        &self,
        uuid: &str,
        request: UpdateEventSourceMappingRequest,
    ) -> Result<EventSourceMapping> {
        let body = serde_json::to_string(&request).into_alien_error().context(
            ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize UpdateEventSourceMappingRequest for UUID '{}'",
                    uuid
                ),
            },
        )?;
        let path = format!("/2015-03-31/event-source-mappings/{}", uuid);
        self.send_json(
            Method::PUT,
            &path,
            None,
            Some(body),
            "UpdateEventSourceMapping",
            uuid,
        )
        .await
    }

    async fn delete_event_source_mapping(&self, uuid: &str) -> Result<EventSourceMapping> {
        let path = format!("/2015-03-31/event-source-mappings/{}", uuid);
        self.send_json(
            Method::DELETE,
            &path,
            None,
            None,
            "DeleteEventSourceMapping",
            uuid,
        )
        .await
    }

    async fn list_event_source_mappings(
        &self,
        request: ListEventSourceMappingsRequest,
    ) -> Result<ListEventSourceMappingsResponse> {
        let mut qp = Vec::new();
        if let Some(ref arn) = request.event_source_arn {
            qp.push(("EventSourceArn", arn.clone()));
        }
        if let Some(ref func) = request.function_name {
            qp.push(("FunctionName", func.clone()));
        }
        if let Some(ref marker) = request.marker {
            qp.push(("Marker", marker.clone()));
        }
        if let Some(max_items) = request.max_items {
            qp.push(("MaxItems", max_items.to_string()));
        }

        let resource_name = request.function_name.as_deref().unwrap_or("unknown");
        self.send_json(
            Method::GET,
            "/2015-03-31/event-source-mappings",
            if qp.is_empty() { None } else { Some(qp) },
            None,
            "ListEventSourceMappings",
            resource_name,
        )
        .await
    }

    async fn put_function_concurrency(
        &self,
        function_name: &str,
        reserved_concurrent_executions: u32,
    ) -> Result<()> {
        let body =
            serde_json::json!({ "ReservedConcurrentExecutions": reserved_concurrent_executions })
                .to_string();
        let path = format!("/2017-10-31/functions/{}/concurrency", function_name);
        let _: serde_json::Value = self
            .send_json(
                Method::PUT,
                &path,
                None,
                Some(body),
                "PutFunctionConcurrency",
                function_name,
            )
            .await?;
        Ok(())
    }

    async fn delete_function_concurrency(&self, function_name: &str) -> Result<()> {
        let path = format!("/2017-10-31/functions/{}/concurrency", function_name);
        self.send_no_body(
            Method::DELETE,
            &path,
            None,
            "DeleteFunctionConcurrency",
            function_name,
        )
        .await
    }
}

// ---------------------------------------------------------------------------
// Error JSON mapping structs
// ---------------------------------------------------------------------------
#[derive(Debug, Deserialize)]
struct LambdaErrorResponse {
    #[serde(rename = "Type")]
    type_field: Option<String>,
    #[serde(rename = "__type")]
    type_field_underscore: Option<String>,
    #[serde(rename = "message")]
    message: Option<String>,
    #[serde(rename = "Message")]
    message_capital: Option<String>,
    #[serde(rename = "Error")]
    error: Option<LambdaErrorDetails>,
}

#[derive(Debug, Deserialize)]
struct LambdaErrorDetails {
    #[serde(rename = "Code")]
    code: Option<String>,
    #[serde(rename = "Message")]
    message: Option<String>,
}

// ---------------------------------------------------------------------------
// Request / response payloads (subset required by infra/tests)
// ---------------------------------------------------------------------------

#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct CreateFunctionRequest {
    pub function_name: String,
    pub role: String,
    pub code: FunctionCode,
    #[builder(default = "Image".to_string())]
    pub package_type: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timeout: Option<i32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub memory_size: Option<i32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub publish: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub environment: Option<Environment>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub architectures: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tracing_config: Option<TracingConfig>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tags: Option<std::collections::HashMap<String, String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ephemeral_storage: Option<EphemeralStorage>,
    #[serde(skip_serializing_if = "Option::is_none", rename = "KMSKeyArn")]
    pub kms_key_arn: Option<String>,
    /// VPC configuration for running the function inside a VPC
    #[serde(skip_serializing_if = "Option::is_none")]
    pub vpc_config: Option<VpcConfig>,
}

#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct FunctionCode {
    pub image_uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct Environment {
    pub variables: Option<std::collections::HashMap<String, String>>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct FunctionConfiguration {
    pub function_name: Option<String>,
    pub function_arn: Option<String>,
    pub state: Option<String>,
    pub last_update_status: Option<String>,
    #[serde(rename = "KMSKeyArn")]
    pub kms_key_arn: Option<String>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct GetFunctionResponse {
    pub configuration: FunctionConfiguration,
}

#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct CreateFunctionUrlConfigRequest {
    pub auth_type: String,
    pub cors: Option<Cors>,
    pub invoke_mode: Option<String>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct CreateFunctionUrlConfigResponse {
    pub function_url: String,
    pub function_arn: String,
    pub auth_type: String,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct FunctionUrlConfig {
    pub function_url: String,
    pub auth_type: String,
    pub cors: Option<Cors>,
}

#[derive(Debug, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct AddPermissionRequest {
    pub statement_id: String,
    pub action: String,
    pub principal: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function_url_auth_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub source_arn: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub source_account: Option<String>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct AddPermissionResponse {
    pub statement: Option<String>,
}

#[derive(Debug, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct UpdateFunctionCodeRequest {
    pub image_uri: String,
    pub publish: Option<bool>,
}

#[derive(Debug, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct UpdateFunctionConfigurationRequest {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub role: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timeout: Option<i32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub memory_size: Option<i32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub environment: Option<Environment>,
    /// VPC configuration for running the function inside a VPC
    #[serde(skip_serializing_if = "Option::is_none")]
    pub vpc_config: Option<VpcConfig>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct GetPolicyResponse {
    pub policy: Option<String>,
}

// ---------------------------------------------------------------------------
// Supporting structs newly added for test compilation
// ---------------------------------------------------------------------------

#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct TracingConfig {
    pub mode: Option<String>,
}

#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct EphemeralStorage {
    pub size: i32,
}

/// VPC configuration for Lambda function.
///
/// When configured, the Lambda function runs inside the specified VPC with access
/// to the specified subnets and security groups.
#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct VpcConfig {
    /// A list of VPC subnet IDs where the function will run.
    /// Lambda creates an elastic network interface for each subnet.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub subnet_ids: Option<Vec<String>>,

    /// A list of VPC security group IDs for the function's network interfaces.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub security_group_ids: Option<Vec<String>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct Cors {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allow_credentials: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allow_headers: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allow_methods: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allow_origins: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_age: Option<i32>,
}

// ---------------------------------------------------------------------------
// Event Source Mapping structs
// ---------------------------------------------------------------------------

/// Request to create an event source mapping
#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct CreateEventSourceMappingRequest {
    /// The Amazon Resource Name (ARN) of the event source (e.g., SQS queue)
    pub event_source_arn: String,

    /// The name or ARN of the Lambda function
    pub function_name: String,

    /// The maximum number of records in each batch that Lambda pulls from your queue and sends to your function
    #[serde(skip_serializing_if = "Option::is_none")]
    pub batch_size: Option<i32>,

    /// When true, the event source mapping is active. When false, Lambda pauses polling and invocation
    #[serde(skip_serializing_if = "Option::is_none")]
    pub enabled: Option<bool>,

    /// The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function
    #[serde(skip_serializing_if = "Option::is_none")]
    pub maximum_batching_window_in_seconds: Option<i32>,

    /// A list of current response type enums applied to the event source mapping
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function_response_types: Option<Vec<String>>,

    /// An object that defines the filter criteria that determine whether Lambda should process an event
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter_criteria: Option<FilterCriteria>,

    /// The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke
    #[serde(skip_serializing_if = "Option::is_none")]
    pub scaling_config: Option<ScalingConfig>,
}

/// Request to update an event source mapping
#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct UpdateEventSourceMappingRequest {
    /// The maximum number of records in each batch that Lambda pulls from your queue and sends to your function
    #[serde(skip_serializing_if = "Option::is_none")]
    pub batch_size: Option<i32>,

    /// When true, the event source mapping is active. When false, Lambda pauses polling and invocation
    #[serde(skip_serializing_if = "Option::is_none")]
    pub enabled: Option<bool>,

    /// The name or ARN of the Lambda function
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function_name: Option<String>,

    /// The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function
    #[serde(skip_serializing_if = "Option::is_none")]
    pub maximum_batching_window_in_seconds: Option<i32>,

    /// A list of current response type enums applied to the event source mapping
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function_response_types: Option<Vec<String>>,

    /// An object that defines the filter criteria that determine whether Lambda should process an event
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter_criteria: Option<FilterCriteria>,

    /// The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke
    #[serde(skip_serializing_if = "Option::is_none")]
    pub scaling_config: Option<ScalingConfig>,
}

/// Request to list event source mappings
#[derive(Debug, Clone, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct ListEventSourceMappingsRequest {
    /// The Amazon Resource Name (ARN) of the event source
    #[serde(skip_serializing_if = "Option::is_none")]
    pub event_source_arn: Option<String>,

    /// The name or ARN of the Lambda function
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function_name: Option<String>,

    /// A pagination token returned by a previous call
    #[serde(skip_serializing_if = "Option::is_none")]
    pub marker: Option<String>,

    /// The maximum number of event source mappings to return
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_items: Option<i32>,
}

/// Response from listing event source mappings
#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct ListEventSourceMappingsResponse {
    /// A list of event source mappings
    pub event_source_mappings: Option<Vec<EventSourceMapping>>,

    /// A pagination token that's returned when the response doesn't contain all event source mappings
    pub next_marker: Option<String>,
}

/// Represents an event source mapping
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct EventSourceMapping {
    /// The identifier of the event source mapping
    #[serde(rename = "UUID")]
    pub uuid: Option<String>,

    /// The Amazon Resource Name (ARN) of the event source
    pub event_source_arn: Option<String>,

    /// The ARN of the Lambda function
    pub function_arn: Option<String>,

    /// The maximum number of records in each batch that Lambda pulls from your queue and sends to your function
    pub batch_size: Option<i32>,

    /// The date that the event source mapping was last updated or that its state changed
    pub last_modified: Option<f64>,

    /// The result of the last AWS Lambda invocation of your Lambda function
    pub last_processing_result: Option<String>,

    /// The state of the event source mapping
    pub state: Option<String>,

    /// Indicates whether a user or Lambda made the last change to the event source mapping
    pub state_transition_reason: Option<String>,

    /// The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function
    pub maximum_batching_window_in_seconds: Option<i32>,

    /// A list of current response type enums applied to the event source mapping
    pub function_response_types: Option<Vec<String>>,

    /// An object that defines the filter criteria that determine whether Lambda should process an event
    pub filter_criteria: Option<FilterCriteria>,

    /// The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke
    pub scaling_config: Option<ScalingConfig>,
}

/// Filter criteria for event source mapping
#[derive(Debug, Clone, Serialize, Deserialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct FilterCriteria {
    /// A list of filters to apply to the event
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filters: Option<Vec<Filter>>,
}

/// Individual filter in filter criteria
#[derive(Debug, Clone, Serialize, Deserialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct Filter {
    /// A filter pattern
    #[serde(skip_serializing_if = "Option::is_none")]
    pub pattern: Option<String>,
}

/// Scaling configuration for SQS event source mapping
#[derive(Debug, Clone, Serialize, Deserialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct ScalingConfig {
    /// The maximum number of concurrent instances of the function that an Amazon SQS event source can invoke
    #[serde(skip_serializing_if = "Option::is_none")]
    pub maximum_concurrency: Option<i32>,
}

// ---------------------------------------------------------------------------
// Lambda invocation types and structs
// ---------------------------------------------------------------------------

/// Lambda invocation type
#[derive(Debug, Clone)]
pub enum InvocationType {
    /// Synchronous invocation
    RequestResponse,
    /// Asynchronous invocation
    Event,
    /// Dry run validation
    DryRun,
}

impl Default for InvocationType {
    fn default() -> Self {
        InvocationType::RequestResponse
    }
}

/// Request for invoking a Lambda function
#[derive(Debug, Clone, Builder)]
pub struct InvokeRequest {
    /// The name of the Lambda function
    pub function_name: String,
    /// The invocation type
    #[builder(default)]
    pub invocation_type: InvocationType,
    /// For versioned functions, the version to invoke
    pub qualifier: Option<String>,
    /// Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function
    pub client_context: Option<String>,
    /// Set to Tail to include the execution log in the response
    pub log_type: Option<String>,
    /// The JSON that you want to provide to your Lambda function as input
    #[builder(default)]
    pub payload: Vec<u8>,
}

/// Response from invoking a Lambda function
#[derive(Debug, Clone)]
pub struct InvokeResponse {
    /// The HTTP status code for the invoke response
    pub status_code: u16,
    /// If present, indicates that an error occurred during function execution
    pub function_error: Option<String>,
    /// The last 4 KB of the execution log (only if you set log_type to Tail)
    pub log_result: Option<String>,
    /// The response from the function
    pub payload: Vec<u8>,
    /// The version of the function that was executed
    pub executed_version: Option<String>,
}