@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
@@ -5,6 +5,7 @@ import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/Cr
5
5
  import { CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput } from "./commands/CreateCodeSigningConfigCommand";
6
6
  import { CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput } from "./commands/CreateEventSourceMappingCommand";
7
7
  import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
8
+ import { CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput } from "./commands/CreateFunctionUrlConfigCommand";
8
9
  import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
9
10
  import { DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput } from "./commands/DeleteCodeSigningConfigCommand";
10
11
  import { DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput } from "./commands/DeleteEventSourceMappingCommand";
@@ -12,6 +13,7 @@ import { DeleteFunctionCodeSigningConfigCommandInput, DeleteFunctionCodeSigningC
12
13
  import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
13
14
  import { DeleteFunctionConcurrencyCommandInput, DeleteFunctionConcurrencyCommandOutput } from "./commands/DeleteFunctionConcurrencyCommand";
14
15
  import { DeleteFunctionEventInvokeConfigCommandInput, DeleteFunctionEventInvokeConfigCommandOutput } from "./commands/DeleteFunctionEventInvokeConfigCommand";
16
+ import { DeleteFunctionUrlConfigCommandInput, DeleteFunctionUrlConfigCommandOutput } from "./commands/DeleteFunctionUrlConfigCommand";
15
17
  import { DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput } from "./commands/DeleteLayerVersionCommand";
16
18
  import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
17
19
  import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
@@ -23,6 +25,7 @@ import { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/Ge
23
25
  import { GetFunctionConcurrencyCommandInput, GetFunctionConcurrencyCommandOutput } from "./commands/GetFunctionConcurrencyCommand";
24
26
  import { GetFunctionConfigurationCommandInput, GetFunctionConfigurationCommandOutput } from "./commands/GetFunctionConfigurationCommand";
25
27
  import { GetFunctionEventInvokeConfigCommandInput, GetFunctionEventInvokeConfigCommandOutput } from "./commands/GetFunctionEventInvokeConfigCommand";
28
+ import { GetFunctionUrlConfigCommandInput, GetFunctionUrlConfigCommandOutput } from "./commands/GetFunctionUrlConfigCommand";
26
29
  import { GetLayerVersionByArnCommandInput, GetLayerVersionByArnCommandOutput } from "./commands/GetLayerVersionByArnCommand";
27
30
  import { GetLayerVersionCommandInput, GetLayerVersionCommandOutput } from "./commands/GetLayerVersionCommand";
28
31
  import { GetLayerVersionPolicyCommandInput, GetLayerVersionPolicyCommandOutput } from "./commands/GetLayerVersionPolicyCommand";
@@ -36,6 +39,7 @@ import { ListEventSourceMappingsCommandInput, ListEventSourceMappingsCommandOutp
36
39
  import { ListFunctionEventInvokeConfigsCommandInput, ListFunctionEventInvokeConfigsCommandOutput } from "./commands/ListFunctionEventInvokeConfigsCommand";
37
40
  import { ListFunctionsByCodeSigningConfigCommandInput, ListFunctionsByCodeSigningConfigCommandOutput } from "./commands/ListFunctionsByCodeSigningConfigCommand";
38
41
  import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
42
+ import { ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput } from "./commands/ListFunctionUrlConfigsCommand";
39
43
  import { ListLayersCommandInput, ListLayersCommandOutput } from "./commands/ListLayersCommand";
40
44
  import { ListLayerVersionsCommandInput, ListLayerVersionsCommandOutput } from "./commands/ListLayerVersionsCommand";
41
45
  import { ListProvisionedConcurrencyConfigsCommandInput, ListProvisionedConcurrencyConfigsCommandOutput } from "./commands/ListProvisionedConcurrencyConfigsCommand";
@@ -57,6 +61,7 @@ import { UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOu
57
61
  import { UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput } from "./commands/UpdateFunctionCodeCommand";
58
62
  import { UpdateFunctionConfigurationCommandInput, UpdateFunctionConfigurationCommandOutput } from "./commands/UpdateFunctionConfigurationCommand";
59
63
  import { UpdateFunctionEventInvokeConfigCommandInput, UpdateFunctionEventInvokeConfigCommandOutput } from "./commands/UpdateFunctionEventInvokeConfigCommand";
64
+ import { UpdateFunctionUrlConfigCommandInput, UpdateFunctionUrlConfigCommandOutput } from "./commands/UpdateFunctionUrlConfigCommand";
60
65
  import { LambdaClient } from "./LambdaClient";
61
66
 
62
67
  export declare class Lambda extends LambdaClient {
@@ -85,6 +90,10 @@ export declare class Lambda extends LambdaClient {
85
90
  createFunction(args: CreateFunctionCommandInput, cb: (err: any, data?: CreateFunctionCommandOutput) => void): void;
86
91
  createFunction(args: CreateFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFunctionCommandOutput) => void): void;
87
92
 
93
+ createFunctionUrlConfig(args: CreateFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateFunctionUrlConfigCommandOutput>;
94
+ createFunctionUrlConfig(args: CreateFunctionUrlConfigCommandInput, cb: (err: any, data?: CreateFunctionUrlConfigCommandOutput) => void): void;
95
+ createFunctionUrlConfig(args: CreateFunctionUrlConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFunctionUrlConfigCommandOutput) => void): void;
96
+
88
97
  deleteAlias(args: DeleteAliasCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAliasCommandOutput>;
89
98
  deleteAlias(args: DeleteAliasCommandInput, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
90
99
  deleteAlias(args: DeleteAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
@@ -113,6 +122,10 @@ export declare class Lambda extends LambdaClient {
113
122
  deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, cb: (err: any, data?: DeleteFunctionEventInvokeConfigCommandOutput) => void): void;
114
123
  deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionEventInvokeConfigCommandOutput) => void): void;
115
124
 
125
+ deleteFunctionUrlConfig(args: DeleteFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFunctionUrlConfigCommandOutput>;
126
+ deleteFunctionUrlConfig(args: DeleteFunctionUrlConfigCommandInput, cb: (err: any, data?: DeleteFunctionUrlConfigCommandOutput) => void): void;
127
+ deleteFunctionUrlConfig(args: DeleteFunctionUrlConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionUrlConfigCommandOutput) => void): void;
128
+
116
129
  deleteLayerVersion(args: DeleteLayerVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLayerVersionCommandOutput>;
117
130
  deleteLayerVersion(args: DeleteLayerVersionCommandInput, cb: (err: any, data?: DeleteLayerVersionCommandOutput) => void): void;
118
131
  deleteLayerVersion(args: DeleteLayerVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLayerVersionCommandOutput) => void): void;
@@ -157,6 +170,10 @@ export declare class Lambda extends LambdaClient {
157
170
  getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, cb: (err: any, data?: GetFunctionEventInvokeConfigCommandOutput) => void): void;
158
171
  getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionEventInvokeConfigCommandOutput) => void): void;
159
172
 
173
+ getFunctionUrlConfig(args: GetFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionUrlConfigCommandOutput>;
174
+ getFunctionUrlConfig(args: GetFunctionUrlConfigCommandInput, cb: (err: any, data?: GetFunctionUrlConfigCommandOutput) => void): void;
175
+ getFunctionUrlConfig(args: GetFunctionUrlConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionUrlConfigCommandOutput) => void): void;
176
+
160
177
  getLayerVersion(args: GetLayerVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetLayerVersionCommandOutput>;
161
178
  getLayerVersion(args: GetLayerVersionCommandInput, cb: (err: any, data?: GetLayerVersionCommandOutput) => void): void;
162
179
  getLayerVersion(args: GetLayerVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLayerVersionCommandOutput) => void): void;
@@ -209,6 +226,10 @@ export declare class Lambda extends LambdaClient {
209
226
  listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, cb: (err: any, data?: ListFunctionsByCodeSigningConfigCommandOutput) => void): void;
210
227
  listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionsByCodeSigningConfigCommandOutput) => void): void;
211
228
 
229
+ listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionUrlConfigsCommandOutput>;
230
+ listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, cb: (err: any, data?: ListFunctionUrlConfigsCommandOutput) => void): void;
231
+ listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionUrlConfigsCommandOutput) => void): void;
232
+
212
233
  listLayers(args: ListLayersCommandInput, options?: __HttpHandlerOptions): Promise<ListLayersCommandOutput>;
213
234
  listLayers(args: ListLayersCommandInput, cb: (err: any, data?: ListLayersCommandOutput) => void): void;
214
235
  listLayers(args: ListLayersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLayersCommandOutput) => void): void;
@@ -292,4 +313,8 @@ export declare class Lambda extends LambdaClient {
292
313
  updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFunctionEventInvokeConfigCommandOutput>;
293
314
  updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, cb: (err: any, data?: UpdateFunctionEventInvokeConfigCommandOutput) => void): void;
294
315
  updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFunctionEventInvokeConfigCommandOutput) => void): void;
316
+
317
+ updateFunctionUrlConfig(args: UpdateFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFunctionUrlConfigCommandOutput>;
318
+ updateFunctionUrlConfig(args: UpdateFunctionUrlConfigCommandInput, cb: (err: any, data?: UpdateFunctionUrlConfigCommandOutput) => void): void;
319
+ updateFunctionUrlConfig(args: UpdateFunctionUrlConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFunctionUrlConfigCommandOutput) => void): void;
295
320
  }
@@ -12,6 +12,7 @@ import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/Cr
12
12
  import { CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput } from "./commands/CreateCodeSigningConfigCommand";
13
13
  import { CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput } from "./commands/CreateEventSourceMappingCommand";
14
14
  import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
15
+ import { CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput } from "./commands/CreateFunctionUrlConfigCommand";
15
16
  import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
16
17
  import { DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput } from "./commands/DeleteCodeSigningConfigCommand";
17
18
  import { DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput } from "./commands/DeleteEventSourceMappingCommand";
@@ -19,6 +20,7 @@ import { DeleteFunctionCodeSigningConfigCommandInput, DeleteFunctionCodeSigningC
19
20
  import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
20
21
  import { DeleteFunctionConcurrencyCommandInput, DeleteFunctionConcurrencyCommandOutput } from "./commands/DeleteFunctionConcurrencyCommand";
21
22
  import { DeleteFunctionEventInvokeConfigCommandInput, DeleteFunctionEventInvokeConfigCommandOutput } from "./commands/DeleteFunctionEventInvokeConfigCommand";
23
+ import { DeleteFunctionUrlConfigCommandInput, DeleteFunctionUrlConfigCommandOutput } from "./commands/DeleteFunctionUrlConfigCommand";
22
24
  import { DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput } from "./commands/DeleteLayerVersionCommand";
23
25
  import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
24
26
  import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
@@ -30,6 +32,7 @@ import { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/Ge
30
32
  import { GetFunctionConcurrencyCommandInput, GetFunctionConcurrencyCommandOutput } from "./commands/GetFunctionConcurrencyCommand";
31
33
  import { GetFunctionConfigurationCommandInput, GetFunctionConfigurationCommandOutput } from "./commands/GetFunctionConfigurationCommand";
32
34
  import { GetFunctionEventInvokeConfigCommandInput, GetFunctionEventInvokeConfigCommandOutput } from "./commands/GetFunctionEventInvokeConfigCommand";
35
+ import { GetFunctionUrlConfigCommandInput, GetFunctionUrlConfigCommandOutput } from "./commands/GetFunctionUrlConfigCommand";
33
36
  import { GetLayerVersionByArnCommandInput, GetLayerVersionByArnCommandOutput } from "./commands/GetLayerVersionByArnCommand";
34
37
  import { GetLayerVersionCommandInput, GetLayerVersionCommandOutput } from "./commands/GetLayerVersionCommand";
35
38
  import { GetLayerVersionPolicyCommandInput, GetLayerVersionPolicyCommandOutput } from "./commands/GetLayerVersionPolicyCommand";
@@ -43,6 +46,7 @@ import { ListEventSourceMappingsCommandInput, ListEventSourceMappingsCommandOutp
43
46
  import { ListFunctionEventInvokeConfigsCommandInput, ListFunctionEventInvokeConfigsCommandOutput } from "./commands/ListFunctionEventInvokeConfigsCommand";
44
47
  import { ListFunctionsByCodeSigningConfigCommandInput, ListFunctionsByCodeSigningConfigCommandOutput } from "./commands/ListFunctionsByCodeSigningConfigCommand";
45
48
  import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
49
+ import { ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput } from "./commands/ListFunctionUrlConfigsCommand";
46
50
  import { ListLayersCommandInput, ListLayersCommandOutput } from "./commands/ListLayersCommand";
47
51
  import { ListLayerVersionsCommandInput, ListLayerVersionsCommandOutput } from "./commands/ListLayerVersionsCommand";
48
52
  import { ListProvisionedConcurrencyConfigsCommandInput, ListProvisionedConcurrencyConfigsCommandOutput } from "./commands/ListProvisionedConcurrencyConfigsCommand";
@@ -64,8 +68,9 @@ import { UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOu
64
68
  import { UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput } from "./commands/UpdateFunctionCodeCommand";
65
69
  import { UpdateFunctionConfigurationCommandInput, UpdateFunctionConfigurationCommandOutput } from "./commands/UpdateFunctionConfigurationCommand";
66
70
  import { UpdateFunctionEventInvokeConfigCommandInput, UpdateFunctionEventInvokeConfigCommandOutput } from "./commands/UpdateFunctionEventInvokeConfigCommand";
67
- export declare type ServiceInputTypes = AddLayerVersionPermissionCommandInput | AddPermissionCommandInput | CreateAliasCommandInput | CreateCodeSigningConfigCommandInput | CreateEventSourceMappingCommandInput | CreateFunctionCommandInput | DeleteAliasCommandInput | DeleteCodeSigningConfigCommandInput | DeleteEventSourceMappingCommandInput | DeleteFunctionCodeSigningConfigCommandInput | DeleteFunctionCommandInput | DeleteFunctionConcurrencyCommandInput | DeleteFunctionEventInvokeConfigCommandInput | DeleteLayerVersionCommandInput | DeleteProvisionedConcurrencyConfigCommandInput | GetAccountSettingsCommandInput | GetAliasCommandInput | GetCodeSigningConfigCommandInput | GetEventSourceMappingCommandInput | GetFunctionCodeSigningConfigCommandInput | GetFunctionCommandInput | GetFunctionConcurrencyCommandInput | GetFunctionConfigurationCommandInput | GetFunctionEventInvokeConfigCommandInput | GetLayerVersionByArnCommandInput | GetLayerVersionCommandInput | GetLayerVersionPolicyCommandInput | GetPolicyCommandInput | GetProvisionedConcurrencyConfigCommandInput | InvokeAsyncCommandInput | InvokeCommandInput | ListAliasesCommandInput | ListCodeSigningConfigsCommandInput | ListEventSourceMappingsCommandInput | ListFunctionEventInvokeConfigsCommandInput | ListFunctionsByCodeSigningConfigCommandInput | ListFunctionsCommandInput | ListLayerVersionsCommandInput | ListLayersCommandInput | ListProvisionedConcurrencyConfigsCommandInput | ListTagsCommandInput | ListVersionsByFunctionCommandInput | PublishLayerVersionCommandInput | PublishVersionCommandInput | PutFunctionCodeSigningConfigCommandInput | PutFunctionConcurrencyCommandInput | PutFunctionEventInvokeConfigCommandInput | PutProvisionedConcurrencyConfigCommandInput | RemoveLayerVersionPermissionCommandInput | RemovePermissionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateCodeSigningConfigCommandInput | UpdateEventSourceMappingCommandInput | UpdateFunctionCodeCommandInput | UpdateFunctionConfigurationCommandInput | UpdateFunctionEventInvokeConfigCommandInput;
68
- export declare type ServiceOutputTypes = AddLayerVersionPermissionCommandOutput | AddPermissionCommandOutput | CreateAliasCommandOutput | CreateCodeSigningConfigCommandOutput | CreateEventSourceMappingCommandOutput | CreateFunctionCommandOutput | DeleteAliasCommandOutput | DeleteCodeSigningConfigCommandOutput | DeleteEventSourceMappingCommandOutput | DeleteFunctionCodeSigningConfigCommandOutput | DeleteFunctionCommandOutput | DeleteFunctionConcurrencyCommandOutput | DeleteFunctionEventInvokeConfigCommandOutput | DeleteLayerVersionCommandOutput | DeleteProvisionedConcurrencyConfigCommandOutput | GetAccountSettingsCommandOutput | GetAliasCommandOutput | GetCodeSigningConfigCommandOutput | GetEventSourceMappingCommandOutput | GetFunctionCodeSigningConfigCommandOutput | GetFunctionCommandOutput | GetFunctionConcurrencyCommandOutput | GetFunctionConfigurationCommandOutput | GetFunctionEventInvokeConfigCommandOutput | GetLayerVersionByArnCommandOutput | GetLayerVersionCommandOutput | GetLayerVersionPolicyCommandOutput | GetPolicyCommandOutput | GetProvisionedConcurrencyConfigCommandOutput | InvokeAsyncCommandOutput | InvokeCommandOutput | ListAliasesCommandOutput | ListCodeSigningConfigsCommandOutput | ListEventSourceMappingsCommandOutput | ListFunctionEventInvokeConfigsCommandOutput | ListFunctionsByCodeSigningConfigCommandOutput | ListFunctionsCommandOutput | ListLayerVersionsCommandOutput | ListLayersCommandOutput | ListProvisionedConcurrencyConfigsCommandOutput | ListTagsCommandOutput | ListVersionsByFunctionCommandOutput | PublishLayerVersionCommandOutput | PublishVersionCommandOutput | PutFunctionCodeSigningConfigCommandOutput | PutFunctionConcurrencyCommandOutput | PutFunctionEventInvokeConfigCommandOutput | PutProvisionedConcurrencyConfigCommandOutput | RemoveLayerVersionPermissionCommandOutput | RemovePermissionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateCodeSigningConfigCommandOutput | UpdateEventSourceMappingCommandOutput | UpdateFunctionCodeCommandOutput | UpdateFunctionConfigurationCommandOutput | UpdateFunctionEventInvokeConfigCommandOutput;
71
+ import { UpdateFunctionUrlConfigCommandInput, UpdateFunctionUrlConfigCommandOutput } from "./commands/UpdateFunctionUrlConfigCommand";
72
+ export declare type ServiceInputTypes = AddLayerVersionPermissionCommandInput | AddPermissionCommandInput | CreateAliasCommandInput | CreateCodeSigningConfigCommandInput | CreateEventSourceMappingCommandInput | CreateFunctionCommandInput | CreateFunctionUrlConfigCommandInput | DeleteAliasCommandInput | DeleteCodeSigningConfigCommandInput | DeleteEventSourceMappingCommandInput | DeleteFunctionCodeSigningConfigCommandInput | DeleteFunctionCommandInput | DeleteFunctionConcurrencyCommandInput | DeleteFunctionEventInvokeConfigCommandInput | DeleteFunctionUrlConfigCommandInput | DeleteLayerVersionCommandInput | DeleteProvisionedConcurrencyConfigCommandInput | GetAccountSettingsCommandInput | GetAliasCommandInput | GetCodeSigningConfigCommandInput | GetEventSourceMappingCommandInput | GetFunctionCodeSigningConfigCommandInput | GetFunctionCommandInput | GetFunctionConcurrencyCommandInput | GetFunctionConfigurationCommandInput | GetFunctionEventInvokeConfigCommandInput | GetFunctionUrlConfigCommandInput | GetLayerVersionByArnCommandInput | GetLayerVersionCommandInput | GetLayerVersionPolicyCommandInput | GetPolicyCommandInput | GetProvisionedConcurrencyConfigCommandInput | InvokeAsyncCommandInput | InvokeCommandInput | ListAliasesCommandInput | ListCodeSigningConfigsCommandInput | ListEventSourceMappingsCommandInput | ListFunctionEventInvokeConfigsCommandInput | ListFunctionUrlConfigsCommandInput | ListFunctionsByCodeSigningConfigCommandInput | ListFunctionsCommandInput | ListLayerVersionsCommandInput | ListLayersCommandInput | ListProvisionedConcurrencyConfigsCommandInput | ListTagsCommandInput | ListVersionsByFunctionCommandInput | PublishLayerVersionCommandInput | PublishVersionCommandInput | PutFunctionCodeSigningConfigCommandInput | PutFunctionConcurrencyCommandInput | PutFunctionEventInvokeConfigCommandInput | PutProvisionedConcurrencyConfigCommandInput | RemoveLayerVersionPermissionCommandInput | RemovePermissionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateCodeSigningConfigCommandInput | UpdateEventSourceMappingCommandInput | UpdateFunctionCodeCommandInput | UpdateFunctionConfigurationCommandInput | UpdateFunctionEventInvokeConfigCommandInput | UpdateFunctionUrlConfigCommandInput;
73
+ export declare type ServiceOutputTypes = AddLayerVersionPermissionCommandOutput | AddPermissionCommandOutput | CreateAliasCommandOutput | CreateCodeSigningConfigCommandOutput | CreateEventSourceMappingCommandOutput | CreateFunctionCommandOutput | CreateFunctionUrlConfigCommandOutput | DeleteAliasCommandOutput | DeleteCodeSigningConfigCommandOutput | DeleteEventSourceMappingCommandOutput | DeleteFunctionCodeSigningConfigCommandOutput | DeleteFunctionCommandOutput | DeleteFunctionConcurrencyCommandOutput | DeleteFunctionEventInvokeConfigCommandOutput | DeleteFunctionUrlConfigCommandOutput | DeleteLayerVersionCommandOutput | DeleteProvisionedConcurrencyConfigCommandOutput | GetAccountSettingsCommandOutput | GetAliasCommandOutput | GetCodeSigningConfigCommandOutput | GetEventSourceMappingCommandOutput | GetFunctionCodeSigningConfigCommandOutput | GetFunctionCommandOutput | GetFunctionConcurrencyCommandOutput | GetFunctionConfigurationCommandOutput | GetFunctionEventInvokeConfigCommandOutput | GetFunctionUrlConfigCommandOutput | GetLayerVersionByArnCommandOutput | GetLayerVersionCommandOutput | GetLayerVersionPolicyCommandOutput | GetPolicyCommandOutput | GetProvisionedConcurrencyConfigCommandOutput | InvokeAsyncCommandOutput | InvokeCommandOutput | ListAliasesCommandOutput | ListCodeSigningConfigsCommandOutput | ListEventSourceMappingsCommandOutput | ListFunctionEventInvokeConfigsCommandOutput | ListFunctionUrlConfigsCommandOutput | ListFunctionsByCodeSigningConfigCommandOutput | ListFunctionsCommandOutput | ListLayerVersionsCommandOutput | ListLayersCommandOutput | ListProvisionedConcurrencyConfigsCommandOutput | ListTagsCommandOutput | ListVersionsByFunctionCommandOutput | PublishLayerVersionCommandOutput | PublishVersionCommandOutput | PutFunctionCodeSigningConfigCommandOutput | PutFunctionConcurrencyCommandOutput | PutFunctionEventInvokeConfigCommandOutput | PutProvisionedConcurrencyConfigCommandOutput | RemoveLayerVersionPermissionCommandOutput | RemovePermissionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateCodeSigningConfigCommandOutput | UpdateEventSourceMappingCommandOutput | UpdateFunctionCodeCommandOutput | UpdateFunctionConfigurationCommandOutput | UpdateFunctionEventInvokeConfigCommandOutput | UpdateFunctionUrlConfigCommandOutput;
69
74
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
70
75
 
71
76
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
4
+ import { CreateFunctionUrlConfigRequest, CreateFunctionUrlConfigResponse } from "../models/models_0";
5
+ export interface CreateFunctionUrlConfigCommandInput extends CreateFunctionUrlConfigRequest {
6
+ }
7
+ export interface CreateFunctionUrlConfigCommandOutput extends CreateFunctionUrlConfigResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateFunctionUrlConfigCommand extends $Command<CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput, LambdaClientResolvedConfig> {
11
+ readonly input: CreateFunctionUrlConfigCommandInput;
12
+ constructor(input: CreateFunctionUrlConfigCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LambdaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
4
+ import { DeleteFunctionUrlConfigRequest } from "../models/models_0";
5
+ export interface DeleteFunctionUrlConfigCommandInput extends DeleteFunctionUrlConfigRequest {
6
+ }
7
+ export interface DeleteFunctionUrlConfigCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteFunctionUrlConfigCommand extends $Command<DeleteFunctionUrlConfigCommandInput, DeleteFunctionUrlConfigCommandOutput, LambdaClientResolvedConfig> {
11
+ readonly input: DeleteFunctionUrlConfigCommandInput;
12
+ constructor(input: DeleteFunctionUrlConfigCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LambdaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFunctionUrlConfigCommandInput, DeleteFunctionUrlConfigCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
4
+ import { GetFunctionUrlConfigRequest, GetFunctionUrlConfigResponse } from "../models/models_0";
5
+ export interface GetFunctionUrlConfigCommandInput extends GetFunctionUrlConfigRequest {
6
+ }
7
+ export interface GetFunctionUrlConfigCommandOutput extends GetFunctionUrlConfigResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetFunctionUrlConfigCommand extends $Command<GetFunctionUrlConfigCommandInput, GetFunctionUrlConfigCommandOutput, LambdaClientResolvedConfig> {
11
+ readonly input: GetFunctionUrlConfigCommandInput;
12
+ constructor(input: GetFunctionUrlConfigCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LambdaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFunctionUrlConfigCommandInput, GetFunctionUrlConfigCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
4
+ import { ListFunctionUrlConfigsRequest, ListFunctionUrlConfigsResponse } from "../models/models_0";
5
+ export interface ListFunctionUrlConfigsCommandInput extends ListFunctionUrlConfigsRequest {
6
+ }
7
+ export interface ListFunctionUrlConfigsCommandOutput extends ListFunctionUrlConfigsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListFunctionUrlConfigsCommand extends $Command<ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput, LambdaClientResolvedConfig> {
11
+ readonly input: ListFunctionUrlConfigsCommandInput;
12
+ constructor(input: ListFunctionUrlConfigsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LambdaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
4
+ import { UpdateFunctionUrlConfigRequest, UpdateFunctionUrlConfigResponse } from "../models/models_0";
5
+ export interface UpdateFunctionUrlConfigCommandInput extends UpdateFunctionUrlConfigRequest {
6
+ }
7
+ export interface UpdateFunctionUrlConfigCommandOutput extends UpdateFunctionUrlConfigResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateFunctionUrlConfigCommand extends $Command<UpdateFunctionUrlConfigCommandInput, UpdateFunctionUrlConfigCommandOutput, LambdaClientResolvedConfig> {
11
+ readonly input: UpdateFunctionUrlConfigCommandInput;
12
+ constructor(input: UpdateFunctionUrlConfigCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LambdaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFunctionUrlConfigCommandInput, UpdateFunctionUrlConfigCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -4,6 +4,7 @@ export * from "./CreateAliasCommand";
4
4
  export * from "./CreateCodeSigningConfigCommand";
5
5
  export * from "./CreateEventSourceMappingCommand";
6
6
  export * from "./CreateFunctionCommand";
7
+ export * from "./CreateFunctionUrlConfigCommand";
7
8
  export * from "./DeleteAliasCommand";
8
9
  export * from "./DeleteCodeSigningConfigCommand";
9
10
  export * from "./DeleteEventSourceMappingCommand";
@@ -11,6 +12,7 @@ export * from "./DeleteFunctionCodeSigningConfigCommand";
11
12
  export * from "./DeleteFunctionCommand";
12
13
  export * from "./DeleteFunctionConcurrencyCommand";
13
14
  export * from "./DeleteFunctionEventInvokeConfigCommand";
15
+ export * from "./DeleteFunctionUrlConfigCommand";
14
16
  export * from "./DeleteLayerVersionCommand";
15
17
  export * from "./DeleteProvisionedConcurrencyConfigCommand";
16
18
  export * from "./GetAccountSettingsCommand";
@@ -22,6 +24,7 @@ export * from "./GetFunctionCommand";
22
24
  export * from "./GetFunctionConcurrencyCommand";
23
25
  export * from "./GetFunctionConfigurationCommand";
24
26
  export * from "./GetFunctionEventInvokeConfigCommand";
27
+ export * from "./GetFunctionUrlConfigCommand";
25
28
  export * from "./GetLayerVersionByArnCommand";
26
29
  export * from "./GetLayerVersionCommand";
27
30
  export * from "./GetLayerVersionPolicyCommand";
@@ -33,6 +36,7 @@ export * from "./ListAliasesCommand";
33
36
  export * from "./ListCodeSigningConfigsCommand";
34
37
  export * from "./ListEventSourceMappingsCommand";
35
38
  export * from "./ListFunctionEventInvokeConfigsCommand";
39
+ export * from "./ListFunctionUrlConfigsCommand";
36
40
  export * from "./ListFunctionsByCodeSigningConfigCommand";
37
41
  export * from "./ListFunctionsCommand";
38
42
  export * from "./ListLayerVersionsCommand";
@@ -56,3 +60,4 @@ export * from "./UpdateEventSourceMappingCommand";
56
60
  export * from "./UpdateFunctionCodeCommand";
57
61
  export * from "./UpdateFunctionConfigurationCommand";
58
62
  export * from "./UpdateFunctionEventInvokeConfigCommand";
63
+ export * from "./UpdateFunctionUrlConfigCommand";
@@ -131,6 +131,10 @@ export declare class TooManyRequestsException extends __BaseException {
131
131
 
132
132
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
133
133
  }
134
+ export declare enum FunctionUrlAuthType {
135
+ AWS_IAM = "AWS_IAM",
136
+ NONE = "NONE"
137
+ }
134
138
  export interface AddPermissionRequest {
135
139
 
136
140
  FunctionName: string | undefined;
@@ -152,6 +156,8 @@ export interface AddPermissionRequest {
152
156
  RevisionId?: string;
153
157
 
154
158
  PrincipalOrgID?: string;
159
+
160
+ FunctionUrlAuthType?: FunctionUrlAuthType | string;
155
161
  }
156
162
  export declare namespace AddPermissionRequest {
157
163
 
@@ -528,6 +534,15 @@ export declare namespace Environment {
528
534
  const filterSensitiveLog: (obj: Environment) => any;
529
535
  }
530
536
 
537
+ export interface EphemeralStorage {
538
+
539
+ Size: number | undefined;
540
+ }
541
+ export declare namespace EphemeralStorage {
542
+
543
+ const filterSensitiveLog: (obj: EphemeralStorage) => any;
544
+ }
545
+
531
546
  export interface FileSystemConfig {
532
547
 
533
548
  Arn: string | undefined;
@@ -652,6 +667,8 @@ export interface CreateFunctionRequest {
652
667
  CodeSigningConfigArn?: string;
653
668
 
654
669
  Architectures?: (Architecture | string)[];
670
+
671
+ EphemeralStorage?: EphemeralStorage;
655
672
  }
656
673
  export declare namespace CreateFunctionRequest {
657
674
 
@@ -844,6 +861,8 @@ export interface FunctionConfiguration {
844
861
  SigningJobArn?: string;
845
862
 
846
863
  Architectures?: (Architecture | string)[];
864
+
865
+ EphemeralStorage?: EphemeralStorage;
847
866
  }
848
867
  export declare namespace FunctionConfiguration {
849
868
 
@@ -858,6 +877,55 @@ export declare class InvalidCodeSignatureException extends __BaseException {
858
877
 
859
878
  constructor(opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>);
860
879
  }
880
+
881
+ export interface Cors {
882
+
883
+ AllowCredentials?: boolean;
884
+
885
+ AllowHeaders?: string[];
886
+
887
+ AllowMethods?: string[];
888
+
889
+ AllowOrigins?: string[];
890
+
891
+ ExposeHeaders?: string[];
892
+
893
+ MaxAge?: number;
894
+ }
895
+ export declare namespace Cors {
896
+
897
+ const filterSensitiveLog: (obj: Cors) => any;
898
+ }
899
+ export interface CreateFunctionUrlConfigRequest {
900
+
901
+ FunctionName: string | undefined;
902
+
903
+ Qualifier?: string;
904
+
905
+ AuthType: FunctionUrlAuthType | string | undefined;
906
+
907
+ Cors?: Cors;
908
+ }
909
+ export declare namespace CreateFunctionUrlConfigRequest {
910
+
911
+ const filterSensitiveLog: (obj: CreateFunctionUrlConfigRequest) => any;
912
+ }
913
+ export interface CreateFunctionUrlConfigResponse {
914
+
915
+ FunctionUrl: string | undefined;
916
+
917
+ FunctionArn: string | undefined;
918
+
919
+ AuthType: FunctionUrlAuthType | string | undefined;
920
+
921
+ Cors?: Cors;
922
+
923
+ CreationTime: string | undefined;
924
+ }
925
+ export declare namespace CreateFunctionUrlConfigResponse {
926
+
927
+ const filterSensitiveLog: (obj: CreateFunctionUrlConfigResponse) => any;
928
+ }
861
929
  export interface DeleteAliasRequest {
862
930
 
863
931
  FunctionName: string | undefined;
@@ -935,6 +1003,16 @@ export declare namespace DeleteFunctionEventInvokeConfigRequest {
935
1003
 
936
1004
  const filterSensitiveLog: (obj: DeleteFunctionEventInvokeConfigRequest) => any;
937
1005
  }
1006
+ export interface DeleteFunctionUrlConfigRequest {
1007
+
1008
+ FunctionName: string | undefined;
1009
+
1010
+ Qualifier?: string;
1011
+ }
1012
+ export declare namespace DeleteFunctionUrlConfigRequest {
1013
+
1014
+ const filterSensitiveLog: (obj: DeleteFunctionUrlConfigRequest) => any;
1015
+ }
938
1016
  export interface DeleteLayerVersionRequest {
939
1017
 
940
1018
  LayerName: string | undefined;
@@ -1124,6 +1202,34 @@ export declare namespace GetFunctionEventInvokeConfigRequest {
1124
1202
 
1125
1203
  const filterSensitiveLog: (obj: GetFunctionEventInvokeConfigRequest) => any;
1126
1204
  }
1205
+ export interface GetFunctionUrlConfigRequest {
1206
+
1207
+ FunctionName: string | undefined;
1208
+
1209
+ Qualifier?: string;
1210
+ }
1211
+ export declare namespace GetFunctionUrlConfigRequest {
1212
+
1213
+ const filterSensitiveLog: (obj: GetFunctionUrlConfigRequest) => any;
1214
+ }
1215
+ export interface GetFunctionUrlConfigResponse {
1216
+
1217
+ FunctionUrl: string | undefined;
1218
+
1219
+ FunctionArn: string | undefined;
1220
+
1221
+ AuthType: FunctionUrlAuthType | string | undefined;
1222
+
1223
+ Cors?: Cors;
1224
+
1225
+ CreationTime: string | undefined;
1226
+
1227
+ LastModifiedTime: string | undefined;
1228
+ }
1229
+ export declare namespace GetFunctionUrlConfigResponse {
1230
+
1231
+ const filterSensitiveLog: (obj: GetFunctionUrlConfigResponse) => any;
1232
+ }
1127
1233
  export interface GetLayerVersionRequest {
1128
1234
 
1129
1235
  LayerName: string | undefined;
@@ -1654,6 +1760,47 @@ export declare namespace ListFunctionsByCodeSigningConfigResponse {
1654
1760
 
1655
1761
  const filterSensitiveLog: (obj: ListFunctionsByCodeSigningConfigResponse) => any;
1656
1762
  }
1763
+ export interface ListFunctionUrlConfigsRequest {
1764
+
1765
+ FunctionName: string | undefined;
1766
+
1767
+ Marker?: string;
1768
+
1769
+ MaxItems?: number;
1770
+ }
1771
+ export declare namespace ListFunctionUrlConfigsRequest {
1772
+
1773
+ const filterSensitiveLog: (obj: ListFunctionUrlConfigsRequest) => any;
1774
+ }
1775
+
1776
+ export interface FunctionUrlConfig {
1777
+
1778
+ FunctionUrl: string | undefined;
1779
+
1780
+ FunctionArn: string | undefined;
1781
+
1782
+ CreationTime: string | undefined;
1783
+
1784
+ LastModifiedTime: string | undefined;
1785
+
1786
+ Cors?: Cors;
1787
+
1788
+ AuthType: FunctionUrlAuthType | string | undefined;
1789
+ }
1790
+ export declare namespace FunctionUrlConfig {
1791
+
1792
+ const filterSensitiveLog: (obj: FunctionUrlConfig) => any;
1793
+ }
1794
+ export interface ListFunctionUrlConfigsResponse {
1795
+
1796
+ FunctionUrlConfigs: FunctionUrlConfig[] | undefined;
1797
+
1798
+ NextMarker?: string;
1799
+ }
1800
+ export declare namespace ListFunctionUrlConfigsResponse {
1801
+
1802
+ const filterSensitiveLog: (obj: ListFunctionUrlConfigsResponse) => any;
1803
+ }
1657
1804
  export interface ListLayersRequest {
1658
1805
 
1659
1806
  CompatibleRuntime?: Runtime | string;
@@ -2151,6 +2298,8 @@ export interface UpdateFunctionConfigurationRequest {
2151
2298
  FileSystemConfigs?: FileSystemConfig[];
2152
2299
 
2153
2300
  ImageConfig?: ImageConfig;
2301
+
2302
+ EphemeralStorage?: EphemeralStorage;
2154
2303
  }
2155
2304
  export declare namespace UpdateFunctionConfigurationRequest {
2156
2305
 
@@ -2172,3 +2321,35 @@ export declare namespace UpdateFunctionEventInvokeConfigRequest {
2172
2321
 
2173
2322
  const filterSensitiveLog: (obj: UpdateFunctionEventInvokeConfigRequest) => any;
2174
2323
  }
2324
+ export interface UpdateFunctionUrlConfigRequest {
2325
+
2326
+ FunctionName: string | undefined;
2327
+
2328
+ Qualifier?: string;
2329
+
2330
+ AuthType?: FunctionUrlAuthType | string;
2331
+
2332
+ Cors?: Cors;
2333
+ }
2334
+ export declare namespace UpdateFunctionUrlConfigRequest {
2335
+
2336
+ const filterSensitiveLog: (obj: UpdateFunctionUrlConfigRequest) => any;
2337
+ }
2338
+ export interface UpdateFunctionUrlConfigResponse {
2339
+
2340
+ FunctionUrl: string | undefined;
2341
+
2342
+ FunctionArn: string | undefined;
2343
+
2344
+ AuthType: FunctionUrlAuthType | string | undefined;
2345
+
2346
+ Cors?: Cors;
2347
+
2348
+ CreationTime: string | undefined;
2349
+
2350
+ LastModifiedTime: string | undefined;
2351
+ }
2352
+ export declare namespace UpdateFunctionUrlConfigResponse {
2353
+
2354
+ const filterSensitiveLog: (obj: UpdateFunctionUrlConfigResponse) => any;
2355
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput } from "../commands/ListFunctionUrlConfigsCommand";
3
+ import { LambdaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListFunctionUrlConfigs(config: LambdaPaginationConfiguration, input: ListFunctionUrlConfigsCommandInput, ...additionalArguments: any): Paginator<ListFunctionUrlConfigsCommandOutput>;
@@ -3,6 +3,7 @@ export * from "./ListAliasesPaginator";
3
3
  export * from "./ListCodeSigningConfigsPaginator";
4
4
  export * from "./ListEventSourceMappingsPaginator";
5
5
  export * from "./ListFunctionEventInvokeConfigsPaginator";
6
+ export * from "./ListFunctionUrlConfigsPaginator";
6
7
  export * from "./ListFunctionsByCodeSigningConfigPaginator";
7
8
  export * from "./ListFunctionsPaginator";
8
9
  export * from "./ListLayerVersionsPaginator";