@aws-sdk/client-lambda 3.55.0 → 3.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/Lambda.js +75 -0
  3. package/dist-cjs/commands/CreateFunctionUrlConfigCommand.js +36 -0
  4. package/dist-cjs/commands/DeleteFunctionUrlConfigCommand.js +36 -0
  5. package/dist-cjs/commands/GetFunctionUrlConfigCommand.js +36 -0
  6. package/dist-cjs/commands/ListFunctionUrlConfigsCommand.js +36 -0
  7. package/dist-cjs/commands/UpdateFunctionUrlConfigCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +81 -4
  10. package/dist-cjs/pagination/ListFunctionUrlConfigsPaginator.js +35 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +626 -3
  13. package/dist-es/Lambda.js +75 -0
  14. package/dist-es/commands/CreateFunctionUrlConfigCommand.js +39 -0
  15. package/dist-es/commands/DeleteFunctionUrlConfigCommand.js +39 -0
  16. package/dist-es/commands/GetFunctionUrlConfigCommand.js +39 -0
  17. package/dist-es/commands/ListFunctionUrlConfigsCommand.js +39 -0
  18. package/dist-es/commands/UpdateFunctionUrlConfigCommand.js +39 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +53 -0
  21. package/dist-es/pagination/ListFunctionUrlConfigsPaginator.js +74 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +756 -27
  24. package/dist-types/Lambda.d.ts +37 -0
  25. package/dist-types/LambdaClient.d.ts +7 -2
  26. package/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +36 -0
  27. package/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +36 -0
  28. package/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +35 -0
  29. package/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +35 -0
  30. package/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +35 -0
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/models/models_0.d.ts +439 -0
  33. package/dist-types/pagination/ListFunctionUrlConfigsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  36. package/dist-types/ts3.4/Lambda.d.ts +25 -0
  37. package/dist-types/ts3.4/LambdaClient.d.ts +7 -2
  38. package/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +181 -0
  45. package/dist-types/ts3.4/pagination/ListFunctionUrlConfigsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
  48. package/package.json +18 -18
@@ -6,6 +6,7 @@ import { CreateAliasCommandInput, CreateAliasCommandOutput } from "../commands/C
6
6
  import { CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput } from "../commands/CreateCodeSigningConfigCommand";
7
7
  import { CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput } from "../commands/CreateEventSourceMappingCommand";
8
8
  import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "../commands/CreateFunctionCommand";
9
+ import { CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput } from "../commands/CreateFunctionUrlConfigCommand";
9
10
  import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "../commands/DeleteAliasCommand";
10
11
  import { DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput } from "../commands/DeleteCodeSigningConfigCommand";
11
12
  import { DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput } from "../commands/DeleteEventSourceMappingCommand";
@@ -13,6 +14,7 @@ import { DeleteFunctionCodeSigningConfigCommandInput, DeleteFunctionCodeSigningC
13
14
  import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "../commands/DeleteFunctionCommand";
14
15
  import { DeleteFunctionConcurrencyCommandInput, DeleteFunctionConcurrencyCommandOutput } from "../commands/DeleteFunctionConcurrencyCommand";
15
16
  import { DeleteFunctionEventInvokeConfigCommandInput, DeleteFunctionEventInvokeConfigCommandOutput } from "../commands/DeleteFunctionEventInvokeConfigCommand";
17
+ import { DeleteFunctionUrlConfigCommandInput, DeleteFunctionUrlConfigCommandOutput } from "../commands/DeleteFunctionUrlConfigCommand";
16
18
  import { DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput } from "../commands/DeleteLayerVersionCommand";
17
19
  import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "../commands/DeleteProvisionedConcurrencyConfigCommand";
18
20
  import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "../commands/GetAccountSettingsCommand";
@@ -24,6 +26,7 @@ import { GetFunctionCommandInput, GetFunctionCommandOutput } from "../commands/G
24
26
  import { GetFunctionConcurrencyCommandInput, GetFunctionConcurrencyCommandOutput } from "../commands/GetFunctionConcurrencyCommand";
25
27
  import { GetFunctionConfigurationCommandInput, GetFunctionConfigurationCommandOutput } from "../commands/GetFunctionConfigurationCommand";
26
28
  import { GetFunctionEventInvokeConfigCommandInput, GetFunctionEventInvokeConfigCommandOutput } from "../commands/GetFunctionEventInvokeConfigCommand";
29
+ import { GetFunctionUrlConfigCommandInput, GetFunctionUrlConfigCommandOutput } from "../commands/GetFunctionUrlConfigCommand";
27
30
  import { GetLayerVersionByArnCommandInput, GetLayerVersionByArnCommandOutput } from "../commands/GetLayerVersionByArnCommand";
28
31
  import { GetLayerVersionCommandInput, GetLayerVersionCommandOutput } from "../commands/GetLayerVersionCommand";
29
32
  import { GetLayerVersionPolicyCommandInput, GetLayerVersionPolicyCommandOutput } from "../commands/GetLayerVersionPolicyCommand";
@@ -37,6 +40,7 @@ import { ListEventSourceMappingsCommandInput, ListEventSourceMappingsCommandOutp
37
40
  import { ListFunctionEventInvokeConfigsCommandInput, ListFunctionEventInvokeConfigsCommandOutput } from "../commands/ListFunctionEventInvokeConfigsCommand";
38
41
  import { ListFunctionsByCodeSigningConfigCommandInput, ListFunctionsByCodeSigningConfigCommandOutput } from "../commands/ListFunctionsByCodeSigningConfigCommand";
39
42
  import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "../commands/ListFunctionsCommand";
43
+ import { ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput } from "../commands/ListFunctionUrlConfigsCommand";
40
44
  import { ListLayersCommandInput, ListLayersCommandOutput } from "../commands/ListLayersCommand";
41
45
  import { ListLayerVersionsCommandInput, ListLayerVersionsCommandOutput } from "../commands/ListLayerVersionsCommand";
42
46
  import { ListProvisionedConcurrencyConfigsCommandInput, ListProvisionedConcurrencyConfigsCommandOutput } from "../commands/ListProvisionedConcurrencyConfigsCommand";
@@ -58,12 +62,14 @@ import { UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOu
58
62
  import { UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput } from "../commands/UpdateFunctionCodeCommand";
59
63
  import { UpdateFunctionConfigurationCommandInput, UpdateFunctionConfigurationCommandOutput } from "../commands/UpdateFunctionConfigurationCommand";
60
64
  import { UpdateFunctionEventInvokeConfigCommandInput, UpdateFunctionEventInvokeConfigCommandOutput } from "../commands/UpdateFunctionEventInvokeConfigCommand";
65
+ import { UpdateFunctionUrlConfigCommandInput, UpdateFunctionUrlConfigCommandOutput } from "../commands/UpdateFunctionUrlConfigCommand";
61
66
  export declare const serializeAws_restJson1AddLayerVersionPermissionCommand: (input: AddLayerVersionPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
67
  export declare const serializeAws_restJson1AddPermissionCommand: (input: AddPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
68
  export declare const serializeAws_restJson1CreateAliasCommand: (input: CreateAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
69
  export declare const serializeAws_restJson1CreateCodeSigningConfigCommand: (input: CreateCodeSigningConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
70
  export declare const serializeAws_restJson1CreateEventSourceMappingCommand: (input: CreateEventSourceMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
71
  export declare const serializeAws_restJson1CreateFunctionCommand: (input: CreateFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
+ export declare const serializeAws_restJson1CreateFunctionUrlConfigCommand: (input: CreateFunctionUrlConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
73
  export declare const serializeAws_restJson1DeleteAliasCommand: (input: DeleteAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
74
  export declare const serializeAws_restJson1DeleteCodeSigningConfigCommand: (input: DeleteCodeSigningConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
75
  export declare const serializeAws_restJson1DeleteEventSourceMappingCommand: (input: DeleteEventSourceMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -71,6 +77,7 @@ export declare const serializeAws_restJson1DeleteFunctionCommand: (input: Delete
71
77
  export declare const serializeAws_restJson1DeleteFunctionCodeSigningConfigCommand: (input: DeleteFunctionCodeSigningConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
78
  export declare const serializeAws_restJson1DeleteFunctionConcurrencyCommand: (input: DeleteFunctionConcurrencyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
79
  export declare const serializeAws_restJson1DeleteFunctionEventInvokeConfigCommand: (input: DeleteFunctionEventInvokeConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
+ export declare const serializeAws_restJson1DeleteFunctionUrlConfigCommand: (input: DeleteFunctionUrlConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
81
  export declare const serializeAws_restJson1DeleteLayerVersionCommand: (input: DeleteLayerVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
82
  export declare const serializeAws_restJson1DeleteProvisionedConcurrencyConfigCommand: (input: DeleteProvisionedConcurrencyConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
83
  export declare const serializeAws_restJson1GetAccountSettingsCommand: (input: GetAccountSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -82,6 +89,7 @@ export declare const serializeAws_restJson1GetFunctionCodeSigningConfigCommand:
82
89
  export declare const serializeAws_restJson1GetFunctionConcurrencyCommand: (input: GetFunctionConcurrencyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
90
  export declare const serializeAws_restJson1GetFunctionConfigurationCommand: (input: GetFunctionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
91
  export declare const serializeAws_restJson1GetFunctionEventInvokeConfigCommand: (input: GetFunctionEventInvokeConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
+ export declare const serializeAws_restJson1GetFunctionUrlConfigCommand: (input: GetFunctionUrlConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
93
  export declare const serializeAws_restJson1GetLayerVersionCommand: (input: GetLayerVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
94
  export declare const serializeAws_restJson1GetLayerVersionByArnCommand: (input: GetLayerVersionByArnCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
95
  export declare const serializeAws_restJson1GetLayerVersionPolicyCommand: (input: GetLayerVersionPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -95,6 +103,7 @@ export declare const serializeAws_restJson1ListEventSourceMappingsCommand: (inpu
95
103
  export declare const serializeAws_restJson1ListFunctionEventInvokeConfigsCommand: (input: ListFunctionEventInvokeConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
104
  export declare const serializeAws_restJson1ListFunctionsCommand: (input: ListFunctionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
105
  export declare const serializeAws_restJson1ListFunctionsByCodeSigningConfigCommand: (input: ListFunctionsByCodeSigningConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1ListFunctionUrlConfigsCommand: (input: ListFunctionUrlConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
107
  export declare const serializeAws_restJson1ListLayersCommand: (input: ListLayersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
108
  export declare const serializeAws_restJson1ListLayerVersionsCommand: (input: ListLayerVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
109
  export declare const serializeAws_restJson1ListProvisionedConcurrencyConfigsCommand: (input: ListProvisionedConcurrencyConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -116,12 +125,14 @@ export declare const serializeAws_restJson1UpdateEventSourceMappingCommand: (inp
116
125
  export declare const serializeAws_restJson1UpdateFunctionCodeCommand: (input: UpdateFunctionCodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
126
  export declare const serializeAws_restJson1UpdateFunctionConfigurationCommand: (input: UpdateFunctionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
127
  export declare const serializeAws_restJson1UpdateFunctionEventInvokeConfigCommand: (input: UpdateFunctionEventInvokeConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
128
+ export declare const serializeAws_restJson1UpdateFunctionUrlConfigCommand: (input: UpdateFunctionUrlConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
129
  export declare const deserializeAws_restJson1AddLayerVersionPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddLayerVersionPermissionCommandOutput>;
120
130
  export declare const deserializeAws_restJson1AddPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPermissionCommandOutput>;
121
131
  export declare const deserializeAws_restJson1CreateAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAliasCommandOutput>;
122
132
  export declare const deserializeAws_restJson1CreateCodeSigningConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCodeSigningConfigCommandOutput>;
123
133
  export declare const deserializeAws_restJson1CreateEventSourceMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventSourceMappingCommandOutput>;
124
134
  export declare const deserializeAws_restJson1CreateFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFunctionCommandOutput>;
135
+ export declare const deserializeAws_restJson1CreateFunctionUrlConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFunctionUrlConfigCommandOutput>;
125
136
  export declare const deserializeAws_restJson1DeleteAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAliasCommandOutput>;
126
137
  export declare const deserializeAws_restJson1DeleteCodeSigningConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCodeSigningConfigCommandOutput>;
127
138
  export declare const deserializeAws_restJson1DeleteEventSourceMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventSourceMappingCommandOutput>;
@@ -129,6 +140,7 @@ export declare const deserializeAws_restJson1DeleteFunctionCommand: (output: __H
129
140
  export declare const deserializeAws_restJson1DeleteFunctionCodeSigningConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionCodeSigningConfigCommandOutput>;
130
141
  export declare const deserializeAws_restJson1DeleteFunctionConcurrencyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionConcurrencyCommandOutput>;
131
142
  export declare const deserializeAws_restJson1DeleteFunctionEventInvokeConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionEventInvokeConfigCommandOutput>;
143
+ export declare const deserializeAws_restJson1DeleteFunctionUrlConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionUrlConfigCommandOutput>;
132
144
  export declare const deserializeAws_restJson1DeleteLayerVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLayerVersionCommandOutput>;
133
145
  export declare const deserializeAws_restJson1DeleteProvisionedConcurrencyConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProvisionedConcurrencyConfigCommandOutput>;
134
146
  export declare const deserializeAws_restJson1GetAccountSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountSettingsCommandOutput>;
@@ -140,6 +152,7 @@ export declare const deserializeAws_restJson1GetFunctionCodeSigningConfigCommand
140
152
  export declare const deserializeAws_restJson1GetFunctionConcurrencyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionConcurrencyCommandOutput>;
141
153
  export declare const deserializeAws_restJson1GetFunctionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionConfigurationCommandOutput>;
142
154
  export declare const deserializeAws_restJson1GetFunctionEventInvokeConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionEventInvokeConfigCommandOutput>;
155
+ export declare const deserializeAws_restJson1GetFunctionUrlConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionUrlConfigCommandOutput>;
143
156
  export declare const deserializeAws_restJson1GetLayerVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLayerVersionCommandOutput>;
144
157
  export declare const deserializeAws_restJson1GetLayerVersionByArnCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLayerVersionByArnCommandOutput>;
145
158
  export declare const deserializeAws_restJson1GetLayerVersionPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLayerVersionPolicyCommandOutput>;
@@ -153,6 +166,7 @@ export declare const deserializeAws_restJson1ListEventSourceMappingsCommand: (ou
153
166
  export declare const deserializeAws_restJson1ListFunctionEventInvokeConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionEventInvokeConfigsCommandOutput>;
154
167
  export declare const deserializeAws_restJson1ListFunctionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionsCommandOutput>;
155
168
  export declare const deserializeAws_restJson1ListFunctionsByCodeSigningConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionsByCodeSigningConfigCommandOutput>;
169
+ export declare const deserializeAws_restJson1ListFunctionUrlConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionUrlConfigsCommandOutput>;
156
170
  export declare const deserializeAws_restJson1ListLayersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLayersCommandOutput>;
157
171
  export declare const deserializeAws_restJson1ListLayerVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLayerVersionsCommandOutput>;
158
172
  export declare const deserializeAws_restJson1ListProvisionedConcurrencyConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProvisionedConcurrencyConfigsCommandOutput>;
@@ -174,3 +188,4 @@ export declare const deserializeAws_restJson1UpdateEventSourceMappingCommand: (o
174
188
  export declare const deserializeAws_restJson1UpdateFunctionCodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionCodeCommandOutput>;
175
189
  export declare const deserializeAws_restJson1UpdateFunctionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionConfigurationCommandOutput>;
176
190
  export declare const deserializeAws_restJson1UpdateFunctionEventInvokeConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionEventInvokeConfigCommandOutput>;
191
+ export declare const deserializeAws_restJson1UpdateFunctionUrlConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionUrlConfigCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lambda",
3
3
  "description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
4
- "version": "3.55.0",
4
+ "version": "3.65.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,41 +18,41 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.55.0",
22
- "@aws-sdk/config-resolver": "3.55.0",
23
- "@aws-sdk/credential-provider-node": "3.55.0",
24
- "@aws-sdk/fetch-http-handler": "3.55.0",
21
+ "@aws-sdk/client-sts": "3.58.0",
22
+ "@aws-sdk/config-resolver": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.58.0",
24
+ "@aws-sdk/fetch-http-handler": "3.58.0",
25
25
  "@aws-sdk/hash-node": "3.55.0",
26
26
  "@aws-sdk/invalid-dependency": "3.55.0",
27
- "@aws-sdk/middleware-content-length": "3.55.0",
28
- "@aws-sdk/middleware-host-header": "3.55.0",
27
+ "@aws-sdk/middleware-content-length": "3.58.0",
28
+ "@aws-sdk/middleware-host-header": "3.58.0",
29
29
  "@aws-sdk/middleware-logger": "3.55.0",
30
- "@aws-sdk/middleware-retry": "3.55.0",
30
+ "@aws-sdk/middleware-retry": "3.58.0",
31
31
  "@aws-sdk/middleware-serde": "3.55.0",
32
- "@aws-sdk/middleware-signing": "3.55.0",
32
+ "@aws-sdk/middleware-signing": "3.58.0",
33
33
  "@aws-sdk/middleware-stack": "3.55.0",
34
- "@aws-sdk/middleware-user-agent": "3.55.0",
35
- "@aws-sdk/node-config-provider": "3.55.0",
36
- "@aws-sdk/node-http-handler": "3.55.0",
37
- "@aws-sdk/protocol-http": "3.55.0",
34
+ "@aws-sdk/middleware-user-agent": "3.58.0",
35
+ "@aws-sdk/node-config-provider": "3.58.0",
36
+ "@aws-sdk/node-http-handler": "3.58.0",
37
+ "@aws-sdk/protocol-http": "3.58.0",
38
38
  "@aws-sdk/smithy-client": "3.55.0",
39
39
  "@aws-sdk/types": "3.55.0",
40
40
  "@aws-sdk/url-parser": "3.55.0",
41
- "@aws-sdk/util-base64-browser": "3.55.0",
41
+ "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
45
  "@aws-sdk/util-defaults-mode-browser": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.55.0",
47
- "@aws-sdk/util-user-agent-browser": "3.55.0",
48
- "@aws-sdk/util-user-agent-node": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.58.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.58.0",
48
+ "@aws-sdk/util-user-agent-node": "3.58.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",
50
50
  "@aws-sdk/util-utf8-node": "3.55.0",
51
51
  "@aws-sdk/util-waiter": "3.55.0",
52
52
  "tslib": "^2.3.1"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.55.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.58.0",
56
56
  "@tsconfig/recommended": "1.0.1",
57
57
  "@types/node": "^12.7.5",
58
58
  "concurrently": "7.0.0",