@aws-lite/lambda-types 0.1.3 → 0.1.5
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.
- package/index.d.ts +65 -65
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -75,387 +75,387 @@ declare interface AwsLiteLambda {
|
|
|
75
75
|
/**
|
|
76
76
|
* @description
|
|
77
77
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_AddLayerVersionPermission.html Lambda: AddLayerVersionPermission}
|
|
78
|
-
* - aws-lite docs: {@link https://github.com/
|
|
78
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#AddLayerVersionPermission Lambda: AddLayerVersionPermission}
|
|
79
79
|
*/
|
|
80
80
|
AddLayerVersionPermission: (input: { LayerName: string, RevisionId?: string, VersionNumber: number, Action: string, OrganizationId?: string, Principal?: string, StatementId: string }) => Promise<AddLayerVersionPermissionResponse>
|
|
81
81
|
/**
|
|
82
82
|
* @description
|
|
83
83
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_AddPermission.html Lambda: AddPermission}
|
|
84
|
-
* - aws-lite docs: {@link https://github.com/
|
|
84
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#AddPermission Lambda: AddPermission}
|
|
85
85
|
*/
|
|
86
86
|
AddPermission: (input: { FunctionName: string, Qualifier?: string, Action: string, EventSourceToken?: string, FunctionUrlAuthType?: string, Principal: string, PrincipalOrgID?: string, RevisionId?: string, SourceAccount?: string, SourceArn?: string, StatementId: string }) => Promise<AddPermissionResponse>
|
|
87
87
|
/**
|
|
88
88
|
* @description
|
|
89
89
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_CreateAlias.html Lambda: CreateAlias}
|
|
90
|
-
* - aws-lite docs: {@link https://github.com/
|
|
90
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#CreateAlias Lambda: CreateAlias}
|
|
91
91
|
*/
|
|
92
92
|
CreateAlias: (input: { FunctionName: string, Description?: string, FunctionVersion: string, Name: string, RoutingConfig?: Record<string, any> }) => Promise<CreateAliasResponse>
|
|
93
93
|
/**
|
|
94
94
|
* @description
|
|
95
95
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_CreateCodeSigningConfig.html Lambda: CreateCodeSigningConfig}
|
|
96
|
-
* - aws-lite docs: {@link https://github.com/
|
|
96
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#CreateCodeSigningConfig Lambda: CreateCodeSigningConfig}
|
|
97
97
|
*/
|
|
98
98
|
CreateCodeSigningConfig: (input: { AllowedPublishers: Record<string, any>, CodeSigningPolicies?: Record<string, any>, Description?: string }) => Promise<CreateCodeSigningConfigResponse>
|
|
99
99
|
/**
|
|
100
100
|
* @description
|
|
101
101
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_CreateEventSourceMapping.html Lambda: CreateEventSourceMapping}
|
|
102
|
-
* - aws-lite docs: {@link https://github.com/
|
|
102
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#CreateEventSourceMapping Lambda: CreateEventSourceMapping}
|
|
103
103
|
*/
|
|
104
104
|
CreateEventSourceMapping: (input: { FunctionName: string, AmazonManagedKafkaEventSourceConfig?: Record<string, any>, BatchSize?: number, BisectBatchOnFunctionError?: boolean, DestinationConfig?: Record<string, any>, DocumentDBEventSourceConfig?: Record<string, any>, Enabled?: boolean, EventSourceArn?: string, FilterCriteria?: Record<string, any>, FunctionResponseTypes?: any[], MaximumBatchingWindowInSeconds?: number, MaximumRecordAgeInSeconds?: number, MaximumRetryAttempts?: number, ParallelizationFactor?: number, Queues?: any[], ScalingConfig?: Record<string, any>, SelfManagedEventSource?: Record<string, any>, SelfManagedKafkaEventSourceConfig?: Record<string, any>, SourceAccessConfigurations?: any[], StartingPosition?: string, StartingPositionTimestamp?: Record<string, any>, Topics?: any[], TumblingWindowInSeconds?: number }) => Promise<CreateEventSourceMappingResponse>
|
|
105
105
|
/**
|
|
106
106
|
* @description
|
|
107
107
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_CreateFunction.html Lambda: CreateFunction}
|
|
108
|
-
* - aws-lite docs: {@link https://github.com/
|
|
108
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#CreateFunction Lambda: CreateFunction}
|
|
109
109
|
*/
|
|
110
110
|
CreateFunction: (input: { Code: Record<string, any>, FunctionName: string, Role: string, Architectures?: any[], CodeSigningConfigArn?: string, DeadLetterConfig?: Record<string, any>, Description?: string, Environment?: Record<string, any>, EphemeralStorage?: Record<string, any>, FileSystemConfigs?: any[], Handler?: string, ImageConfig?: Record<string, any>, KMSKeyArn?: string, Layers?: any[], MemorySize?: number, PackageType?: string, Publish?: boolean, Runtime?: string, SnapStart?: Record<string, any>, Tags?: any[], Timeout?: number, TracingConfig?: Record<string, any>, VpcConfig?: Record<string, any> }) => Promise<CreateFunctionResponse>
|
|
111
111
|
/**
|
|
112
112
|
* @description
|
|
113
113
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_CreateFunctionUrlConfig.html Lambda: CreateFunctionUrlConfig}
|
|
114
|
-
* - aws-lite docs: {@link https://github.com/
|
|
114
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#CreateFunctionUrlConfig Lambda: CreateFunctionUrlConfig}
|
|
115
115
|
*/
|
|
116
116
|
CreateFunctionUrlConfig: (input: { AuthType: string, FunctionName: string, Cors?: Record<string, any>, InvokeMode?: string, Qualifier?: string }) => Promise<CreateFunctionUrlConfigResponse>
|
|
117
117
|
/**
|
|
118
118
|
* @description
|
|
119
119
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteAlias.html Lambda: DeleteAlias}
|
|
120
|
-
* - aws-lite docs: {@link https://github.com/
|
|
120
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteAlias Lambda: DeleteAlias}
|
|
121
121
|
*/
|
|
122
122
|
DeleteAlias: (input: { FunctionName: string, Name: string }) => Promise<DeleteAliasResponse>
|
|
123
123
|
/**
|
|
124
124
|
* @description
|
|
125
125
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteCodeSigningConfig.html Lambda: DeleteCodeSigningConfig}
|
|
126
|
-
* - aws-lite docs: {@link https://github.com/
|
|
126
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteCodeSigningConfig Lambda: DeleteCodeSigningConfig}
|
|
127
127
|
*/
|
|
128
128
|
DeleteCodeSigningConfig: (input: { CodeSigningConfigArn: string }) => Promise<DeleteCodeSigningConfigResponse>
|
|
129
129
|
/**
|
|
130
130
|
* @description
|
|
131
131
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteEventSourceMapping.html Lambda: DeleteEventSourceMapping}
|
|
132
|
-
* - aws-lite docs: {@link https://github.com/
|
|
132
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteEventSourceMapping Lambda: DeleteEventSourceMapping}
|
|
133
133
|
*/
|
|
134
134
|
DeleteEventSourceMapping: (input: { UUID: string }) => Promise<DeleteEventSourceMappingResponse>
|
|
135
135
|
/**
|
|
136
136
|
* @description
|
|
137
137
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteFunction.html Lambda: DeleteFunction}
|
|
138
|
-
* - aws-lite docs: {@link https://github.com/
|
|
138
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteFunction Lambda: DeleteFunction}
|
|
139
139
|
*/
|
|
140
140
|
DeleteFunction: (input: { FunctionName: string, Qualifier?: string }) => Promise<DeleteFunctionResponse>
|
|
141
141
|
/**
|
|
142
142
|
* @description
|
|
143
143
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteFunctionCodeSigningConfig.html Lambda: DeleteFunctionCodeSigningConfig}
|
|
144
|
-
* - aws-lite docs: {@link https://github.com/
|
|
144
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteFunctionCodeSigningConfig Lambda: DeleteFunctionCodeSigningConfig}
|
|
145
145
|
*/
|
|
146
146
|
DeleteFunctionCodeSigningConfig: (input: { FunctionName: string }) => Promise<DeleteFunctionCodeSigningConfigResponse>
|
|
147
147
|
/**
|
|
148
148
|
* @description
|
|
149
149
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteFunctionConcurrency.html Lambda: DeleteFunctionConcurrency}
|
|
150
|
-
* - aws-lite docs: {@link https://github.com/
|
|
150
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteFunctionConcurrency Lambda: DeleteFunctionConcurrency}
|
|
151
151
|
*/
|
|
152
152
|
DeleteFunctionConcurrency: (input: { FunctionName: string }) => Promise<DeleteFunctionConcurrencyResponse>
|
|
153
153
|
/**
|
|
154
154
|
* @description
|
|
155
155
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteFunctionEventInvokeConfig.html Lambda: DeleteFunctionEventInvokeConfig}
|
|
156
|
-
* - aws-lite docs: {@link https://github.com/
|
|
156
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteFunctionEventInvokeConfig Lambda: DeleteFunctionEventInvokeConfig}
|
|
157
157
|
*/
|
|
158
158
|
DeleteFunctionEventInvokeConfig: (input: { FunctionName: string, Qualifier?: string }) => Promise<DeleteFunctionEventInvokeConfigResponse>
|
|
159
159
|
/**
|
|
160
160
|
* @description
|
|
161
161
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteFunctionUrlConfig.html Lambda: DeleteFunctionUrlConfig}
|
|
162
|
-
* - aws-lite docs: {@link https://github.com/
|
|
162
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteFunctionUrlConfig Lambda: DeleteFunctionUrlConfig}
|
|
163
163
|
*/
|
|
164
164
|
DeleteFunctionUrlConfig: (input: { FunctionName: string, Qualifier?: string }) => Promise<DeleteFunctionUrlConfigResponse>
|
|
165
165
|
/**
|
|
166
166
|
* @description
|
|
167
167
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteLayerVersion.html Lambda: DeleteLayerVersion}
|
|
168
|
-
* - aws-lite docs: {@link https://github.com/
|
|
168
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteLayerVersion Lambda: DeleteLayerVersion}
|
|
169
169
|
*/
|
|
170
170
|
DeleteLayerVersion: (input: { LayerName: string, VersionNumber: number }) => Promise<DeleteLayerVersionResponse>
|
|
171
171
|
/**
|
|
172
172
|
* @description
|
|
173
173
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteProvisionedConcurrencyConfig.html Lambda: DeleteProvisionedConcurrencyConfig}
|
|
174
|
-
* - aws-lite docs: {@link https://github.com/
|
|
174
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#DeleteProvisionedConcurrencyConfig Lambda: DeleteProvisionedConcurrencyConfig}
|
|
175
175
|
*/
|
|
176
176
|
DeleteProvisionedConcurrencyConfig: (input: { FunctionName: string, Qualifier: string }) => Promise<DeleteProvisionedConcurrencyConfigResponse>
|
|
177
|
-
/** @description aws-lite docs: {@link https://github.com/
|
|
177
|
+
/** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetAccountSettings Lambda: GetAccountSettings} */
|
|
178
178
|
GetAccountSettings: () => Promise<GetAccountSettingsResponse>
|
|
179
179
|
/**
|
|
180
180
|
* @description
|
|
181
181
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetAlias.html Lambda: GetAlias}
|
|
182
|
-
* - aws-lite docs: {@link https://github.com/
|
|
182
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetAlias Lambda: GetAlias}
|
|
183
183
|
*/
|
|
184
184
|
GetAlias: (input: { FunctionName: string, Name: string }) => Promise<GetAliasResponse>
|
|
185
185
|
/**
|
|
186
186
|
* @description
|
|
187
187
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetCodeSigningConfig.html Lambda: GetCodeSigningConfig}
|
|
188
|
-
* - aws-lite docs: {@link https://github.com/
|
|
188
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetCodeSigningConfig Lambda: GetCodeSigningConfig}
|
|
189
189
|
*/
|
|
190
190
|
GetCodeSigningConfig: (input: { CodeSigningConfigArn: string }) => Promise<GetCodeSigningConfigResponse>
|
|
191
191
|
/**
|
|
192
192
|
* @description
|
|
193
193
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetEventSourceMapping.html Lambda: GetEventSourceMapping}
|
|
194
|
-
* - aws-lite docs: {@link https://github.com/
|
|
194
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetEventSourceMapping Lambda: GetEventSourceMapping}
|
|
195
195
|
*/
|
|
196
196
|
GetEventSourceMapping: (input: { UUID: string }) => Promise<GetEventSourceMappingResponse>
|
|
197
197
|
/**
|
|
198
198
|
* @description
|
|
199
199
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunction.html Lambda: GetFunction}
|
|
200
|
-
* - aws-lite docs: {@link https://github.com/
|
|
200
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetFunction Lambda: GetFunction}
|
|
201
201
|
*/
|
|
202
202
|
GetFunction: (input: { FunctionName: string, Qualifier?: string }) => Promise<GetFunctionResponse>
|
|
203
203
|
/**
|
|
204
204
|
* @description
|
|
205
205
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionCodeSigningConfig.html Lambda: GetFunctionCodeSigningConfig}
|
|
206
|
-
* - aws-lite docs: {@link https://github.com/
|
|
206
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetFunctionCodeSigningConfig Lambda: GetFunctionCodeSigningConfig}
|
|
207
207
|
*/
|
|
208
208
|
GetFunctionCodeSigningConfig: (input: { FunctionName: string }) => Promise<GetFunctionCodeSigningConfigResponse>
|
|
209
209
|
/**
|
|
210
210
|
* @description
|
|
211
211
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionConcurrency.html Lambda: GetFunctionConcurrency}
|
|
212
|
-
* - aws-lite docs: {@link https://github.com/
|
|
212
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetFunctionConcurrency Lambda: GetFunctionConcurrency}
|
|
213
213
|
*/
|
|
214
214
|
GetFunctionConcurrency: (input: { FunctionName: string }) => Promise<GetFunctionConcurrencyResponse>
|
|
215
215
|
/**
|
|
216
216
|
* @description
|
|
217
217
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionConfiguration.html Lambda: GetFunctionConfiguration}
|
|
218
|
-
* - aws-lite docs: {@link https://github.com/
|
|
218
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetFunctionConfiguration Lambda: GetFunctionConfiguration}
|
|
219
219
|
*/
|
|
220
220
|
GetFunctionConfiguration: (input: { FunctionName: string, Qualifier?: string }) => Promise<GetFunctionConfigurationResponse>
|
|
221
221
|
/**
|
|
222
222
|
* @description
|
|
223
223
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionEventInvokeConfig.html Lambda: GetFunctionEventInvokeConfig}
|
|
224
|
-
* - aws-lite docs: {@link https://github.com/
|
|
224
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetFunctionEventInvokeConfig Lambda: GetFunctionEventInvokeConfig}
|
|
225
225
|
*/
|
|
226
226
|
GetFunctionEventInvokeConfig: (input: { FunctionName: string, Qualifier?: string }) => Promise<GetFunctionEventInvokeConfigResponse>
|
|
227
227
|
/**
|
|
228
228
|
* @description
|
|
229
229
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionUrlConfig.html Lambda: GetFunctionUrlConfig}
|
|
230
|
-
* - aws-lite docs: {@link https://github.com/
|
|
230
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetFunctionUrlConfig Lambda: GetFunctionUrlConfig}
|
|
231
231
|
*/
|
|
232
232
|
GetFunctionUrlConfig: (input: { FunctionName: string, Qualifier?: string }) => Promise<GetFunctionUrlConfigResponse>
|
|
233
233
|
/**
|
|
234
234
|
* @description
|
|
235
235
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetLayerVersion.html Lambda: GetLayerVersion}
|
|
236
|
-
* - aws-lite docs: {@link https://github.com/
|
|
236
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetLayerVersion Lambda: GetLayerVersion}
|
|
237
237
|
*/
|
|
238
238
|
GetLayerVersion: (input: { LayerName: string, VersionNumber: number }) => Promise<GetLayerVersionResponse>
|
|
239
239
|
/**
|
|
240
240
|
* @description
|
|
241
241
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetLayerVersionByArn.html Lambda: GetLayerVersionByArn}
|
|
242
|
-
* - aws-lite docs: {@link https://github.com/
|
|
242
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetLayerVersionByArn Lambda: GetLayerVersionByArn}
|
|
243
243
|
*/
|
|
244
244
|
GetLayerVersionByArn: (input: { Arn: string }) => Promise<GetLayerVersionByArnResponse>
|
|
245
245
|
/**
|
|
246
246
|
* @description
|
|
247
247
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetLayerVersionPolicy.html Lambda: GetLayerVersionPolicy}
|
|
248
|
-
* - aws-lite docs: {@link https://github.com/
|
|
248
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetLayerVersionPolicy Lambda: GetLayerVersionPolicy}
|
|
249
249
|
*/
|
|
250
250
|
GetLayerVersionPolicy: (input: { LayerName: string, VersionNumber: number }) => Promise<GetLayerVersionPolicyResponse>
|
|
251
251
|
/**
|
|
252
252
|
* @description
|
|
253
253
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetPolicy.html Lambda: GetPolicy}
|
|
254
|
-
* - aws-lite docs: {@link https://github.com/
|
|
254
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetPolicy Lambda: GetPolicy}
|
|
255
255
|
*/
|
|
256
256
|
GetPolicy: (input: { FunctionName: string, Qualifier?: string }) => Promise<GetPolicyResponse>
|
|
257
257
|
/**
|
|
258
258
|
* @description
|
|
259
259
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetProvisionedConcurrencyConfig.html Lambda: GetProvisionedConcurrencyConfig}
|
|
260
|
-
* - aws-lite docs: {@link https://github.com/
|
|
260
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetProvisionedConcurrencyConfig Lambda: GetProvisionedConcurrencyConfig}
|
|
261
261
|
*/
|
|
262
262
|
GetProvisionedConcurrencyConfig: (input: { FunctionName: string, Qualifier: string }) => Promise<GetProvisionedConcurrencyConfigResponse>
|
|
263
263
|
/**
|
|
264
264
|
* @description
|
|
265
265
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_GetRuntimeManagementConfig.html Lambda: GetRuntimeManagementConfig}
|
|
266
|
-
* - aws-lite docs: {@link https://github.com/
|
|
266
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#GetRuntimeManagementConfig Lambda: GetRuntimeManagementConfig}
|
|
267
267
|
*/
|
|
268
268
|
GetRuntimeManagementConfig: (input: { FunctionName: string, Qualifier?: string }) => Promise<GetRuntimeManagementConfigResponse>
|
|
269
269
|
/**
|
|
270
270
|
* @description
|
|
271
271
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html Lambda: Invoke}
|
|
272
|
-
* - aws-lite docs: {@link https://github.com/
|
|
272
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#Invoke Lambda: Invoke}
|
|
273
273
|
*/
|
|
274
274
|
Invoke: (input: { FunctionName: string, InvocationType?: string, Payload: any[] | Record<string, any>, LogType?: string, ClientContext?: string, Qualifier?: string }) => Promise<InvokeResponse>
|
|
275
275
|
/**
|
|
276
276
|
* @description
|
|
277
277
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_InvokeAsync.html Lambda: InvokeAsync}
|
|
278
|
-
* - aws-lite docs: {@link https://github.com/
|
|
278
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#InvokeAsync Lambda: InvokeAsync}
|
|
279
279
|
*/
|
|
280
280
|
InvokeAsync: (input: { FunctionName: string, InvokeArgs: Record<string, any> }) => Promise<InvokeAsyncResponse>
|
|
281
281
|
/**
|
|
282
282
|
* @description
|
|
283
283
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListAliases.html Lambda: ListAliases}
|
|
284
|
-
* - aws-lite docs: {@link https://github.com/
|
|
284
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListAliases Lambda: ListAliases}
|
|
285
285
|
*/
|
|
286
286
|
ListAliases: (input: { FunctionName: string, FunctionVersion?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAliasesResponse>
|
|
287
287
|
/**
|
|
288
288
|
* @description
|
|
289
289
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListCodeSigningConfigs.html Lambda: ListCodeSigningConfigs}
|
|
290
|
-
* - aws-lite docs: {@link https://github.com/
|
|
290
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListCodeSigningConfigs Lambda: ListCodeSigningConfigs}
|
|
291
291
|
*/
|
|
292
292
|
ListCodeSigningConfigs: (input: { Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListCodeSigningConfigsResponse>
|
|
293
293
|
/**
|
|
294
294
|
* @description
|
|
295
295
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListEventSourceMappings.html Lambda: ListEventSourceMappings}
|
|
296
|
-
* - aws-lite docs: {@link https://github.com/
|
|
296
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListEventSourceMappings Lambda: ListEventSourceMappings}
|
|
297
297
|
*/
|
|
298
298
|
ListEventSourceMappings: (input: { EventSourceArn?: string, FunctionName?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListEventSourceMappingsResponse>
|
|
299
299
|
/**
|
|
300
300
|
* @description
|
|
301
301
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctionEventInvokeConfigs.html Lambda: ListFunctionEventInvokeConfigs}
|
|
302
|
-
* - aws-lite docs: {@link https://github.com/
|
|
302
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListFunctionEventInvokeConfigs Lambda: ListFunctionEventInvokeConfigs}
|
|
303
303
|
*/
|
|
304
304
|
ListFunctionEventInvokeConfigs: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListFunctionEventInvokeConfigsResponse>
|
|
305
305
|
/**
|
|
306
306
|
* @description
|
|
307
307
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctions.html Lambda: ListFunctions}
|
|
308
|
-
* - aws-lite docs: {@link https://github.com/
|
|
308
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListFunctions Lambda: ListFunctions}
|
|
309
309
|
*/
|
|
310
310
|
ListFunctions: (input: { FunctionVersion?: string, Marker?: string, MasterRegion?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListFunctionsResponse>
|
|
311
311
|
/**
|
|
312
312
|
* @description
|
|
313
313
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctionsByCodeSigningConfig.html Lambda: ListFunctionsByCodeSigningConfig}
|
|
314
|
-
* - aws-lite docs: {@link https://github.com/
|
|
314
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListFunctionsByCodeSigningConfig Lambda: ListFunctionsByCodeSigningConfig}
|
|
315
315
|
*/
|
|
316
316
|
ListFunctionsByCodeSigningConfig: (input: { CodeSigningConfigArn: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListFunctionsByCodeSigningConfigResponse>
|
|
317
317
|
/**
|
|
318
318
|
* @description
|
|
319
319
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctionUrlConfigs.html Lambda: ListFunctionUrlConfigs}
|
|
320
|
-
* - aws-lite docs: {@link https://github.com/
|
|
320
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListFunctionUrlConfigs Lambda: ListFunctionUrlConfigs}
|
|
321
321
|
*/
|
|
322
322
|
ListFunctionUrlConfigs: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListFunctionUrlConfigsResponse>
|
|
323
323
|
/**
|
|
324
324
|
* @description
|
|
325
325
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListLayers.html Lambda: ListLayers}
|
|
326
|
-
* - aws-lite docs: {@link https://github.com/
|
|
326
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListLayers Lambda: ListLayers}
|
|
327
327
|
*/
|
|
328
328
|
ListLayers: (input: { CompatibleArchitecture?: string, CompatibleRuntime?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListLayersResponse>
|
|
329
329
|
/**
|
|
330
330
|
* @description
|
|
331
331
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListLayerVersions.html Lambda: ListLayerVersions}
|
|
332
|
-
* - aws-lite docs: {@link https://github.com/
|
|
332
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListLayerVersions Lambda: ListLayerVersions}
|
|
333
333
|
*/
|
|
334
334
|
ListLayerVersions: (input: { LayerName: string, CompatibleArchitecture?: string, CompatibleRuntime?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListLayerVersionsResponse>
|
|
335
335
|
/**
|
|
336
336
|
* @description
|
|
337
337
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListProvisionedConcurrencyConfigs.html Lambda: ListProvisionedConcurrencyConfigs}
|
|
338
|
-
* - aws-lite docs: {@link https://github.com/
|
|
338
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListProvisionedConcurrencyConfigs Lambda: ListProvisionedConcurrencyConfigs}
|
|
339
339
|
*/
|
|
340
340
|
ListProvisionedConcurrencyConfigs: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListProvisionedConcurrencyConfigsResponse>
|
|
341
341
|
/**
|
|
342
342
|
* @description
|
|
343
343
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListTags.html Lambda: ListTags}
|
|
344
|
-
* - aws-lite docs: {@link https://github.com/
|
|
344
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListTags Lambda: ListTags}
|
|
345
345
|
*/
|
|
346
346
|
ListTags: (input: { Resource: string }) => Promise<ListTagsResponse>
|
|
347
347
|
/**
|
|
348
348
|
* @description
|
|
349
349
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListVersionsByFunction.html Lambda: ListVersionsByFunction}
|
|
350
|
-
* - aws-lite docs: {@link https://github.com/
|
|
350
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#ListVersionsByFunction Lambda: ListVersionsByFunction}
|
|
351
351
|
*/
|
|
352
352
|
ListVersionsByFunction: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListVersionsByFunctionResponse>
|
|
353
353
|
/**
|
|
354
354
|
* @description
|
|
355
355
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html Lambda: PublishLayerVersion}
|
|
356
|
-
* - aws-lite docs: {@link https://github.com/
|
|
356
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#PublishLayerVersion Lambda: PublishLayerVersion}
|
|
357
357
|
*/
|
|
358
358
|
PublishLayerVersion: (input: { Content: Record<string, any>, CompatibleArchitectures?: any[], CompatibleRuntimes?: any[], Description?: string, LiscenceInfo?: string }) => Promise<PublishLayerVersionResponse>
|
|
359
359
|
/**
|
|
360
360
|
* @description
|
|
361
361
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PublishVersion.html Lambda: PublishVersion}
|
|
362
|
-
* - aws-lite docs: {@link https://github.com/
|
|
362
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#PublishVersion Lambda: PublishVersion}
|
|
363
363
|
*/
|
|
364
364
|
PublishVersion: (input: { FunctionName: string, CodeSha256?: string, Description?: string, RevisionId?: string }) => Promise<PublishVersionResponse>
|
|
365
365
|
/**
|
|
366
366
|
* @description
|
|
367
367
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutFunctionCodeSigningConfig.html Lambda: PutFunctionCodeSigningConfig}
|
|
368
|
-
* - aws-lite docs: {@link https://github.com/
|
|
368
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#PutFunctionCodeSigningConfig Lambda: PutFunctionCodeSigningConfig}
|
|
369
369
|
*/
|
|
370
370
|
PutFunctionCodeSigningConfig: (input: { FunctionName: string, CodeSigningConfigArn: string }) => Promise<PutFunctionCodeSigningConfigResponse>
|
|
371
371
|
/**
|
|
372
372
|
* @description
|
|
373
373
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutFunctionConcurrency.html Lambda: PutFunctionConcurrency}
|
|
374
|
-
* - aws-lite docs: {@link https://github.com/
|
|
374
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#PutFunctionConcurrency Lambda: PutFunctionConcurrency}
|
|
375
375
|
*/
|
|
376
376
|
PutFunctionConcurrency: (input: { FunctionName: string, ReservedConcurrentExecutions: number }) => Promise<PutFunctionConcurrencyResponse>
|
|
377
377
|
/**
|
|
378
378
|
* @description
|
|
379
379
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutFunctionEventInvokeConfig.html Lambda: PutFunctionEventInvokeConfig}
|
|
380
|
-
* - aws-lite docs: {@link https://github.com/
|
|
380
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#PutFunctionEventInvokeConfig Lambda: PutFunctionEventInvokeConfig}
|
|
381
381
|
*/
|
|
382
382
|
PutFunctionEventInvokeConfig: (input: { FunctionName: string, DestinationConfig?: Record<string, any>, MaximumEventAgeInSeconds?: number, MaximumRetryAttempts?: number, Qualifier?: string }) => Promise<PutFunctionEventInvokeConfigResponse>
|
|
383
383
|
/**
|
|
384
384
|
* @description
|
|
385
385
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutProvisionedConcurrencyConfig.html Lambda: PutProvisionedConcurrencyConfig}
|
|
386
|
-
* - aws-lite docs: {@link https://github.com/
|
|
386
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#PutProvisionedConcurrencyConfig Lambda: PutProvisionedConcurrencyConfig}
|
|
387
387
|
*/
|
|
388
388
|
PutProvisionedConcurrencyConfig: (input: { FunctionName: string, ProvisionedConcurrentExecutions: number, Qualifier: string }) => Promise<PutProvisionedConcurrencyConfigResponse>
|
|
389
389
|
/**
|
|
390
390
|
* @description
|
|
391
391
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutRuntimeManagementConfig.html Lambda: PutRuntimeManagementConfig}
|
|
392
|
-
* - aws-lite docs: {@link https://github.com/
|
|
392
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#PutRuntimeManagementConfig Lambda: PutRuntimeManagementConfig}
|
|
393
393
|
*/
|
|
394
394
|
PutRuntimeManagementConfig: (input: { FunctionName: string, UpdateRuntimeOn: string, Qualifier?: string, RuntimeVersionArn?: string }) => Promise<PutRuntimeManagementConfigResponse>
|
|
395
395
|
/**
|
|
396
396
|
* @description
|
|
397
397
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_RemoveLayerVersionPermission.html Lambda: RemoveLayerVersionPermission}
|
|
398
|
-
* - aws-lite docs: {@link https://github.com/
|
|
398
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#RemoveLayerVersionPermission Lambda: RemoveLayerVersionPermission}
|
|
399
399
|
*/
|
|
400
400
|
RemoveLayerVersionPermission: (input: { LayerName: string, StatementId: string, VersionNumber: number, RevisionId?: string }) => Promise<RemoveLayerVersionPermissionResponse>
|
|
401
401
|
/**
|
|
402
402
|
* @description
|
|
403
403
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_RemovePermission.html Lambda: RemovePermission}
|
|
404
|
-
* - aws-lite docs: {@link https://github.com/
|
|
404
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#RemovePermission Lambda: RemovePermission}
|
|
405
405
|
*/
|
|
406
406
|
RemovePermission: (input: { FunctionName: string, StatementId: string, RevisionId?: string, Qualifier?: string }) => Promise<RemovePermissionResponse>
|
|
407
407
|
/**
|
|
408
408
|
* @description
|
|
409
409
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_TagResource.html Lambda: TagResource}
|
|
410
|
-
* - aws-lite docs: {@link https://github.com/
|
|
410
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#TagResource Lambda: TagResource}
|
|
411
411
|
*/
|
|
412
412
|
TagResource: (input: { Resource: string, Tags: Record<string, any> }) => Promise<TagResourceResponse>
|
|
413
413
|
/**
|
|
414
414
|
* @description
|
|
415
415
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UntagResource.html Lambda: UntagResource}
|
|
416
|
-
* - aws-lite docs: {@link https://github.com/
|
|
416
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#UntagResource Lambda: UntagResource}
|
|
417
417
|
*/
|
|
418
418
|
UntagResource: (input: { Resource: string, TagKeys: any[] }) => Promise<UntagResourceResponse>
|
|
419
419
|
/**
|
|
420
420
|
* @description
|
|
421
421
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateAlias.html Lambda: UpdateAlias}
|
|
422
|
-
* - aws-lite docs: {@link https://github.com/
|
|
422
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#UpdateAlias Lambda: UpdateAlias}
|
|
423
423
|
*/
|
|
424
424
|
UpdateAlias: (input: { FunctionName: string, Name: string, Description?: string, FunctionVersion?: string, RevisionId?: string, RoutingConfig?: Record<string, any> }) => Promise<UpdateAliasResponse>
|
|
425
425
|
/**
|
|
426
426
|
* @description
|
|
427
427
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateCodeSigningConfig.html Lambda: UpdateCodeSigningConfig}
|
|
428
|
-
* - aws-lite docs: {@link https://github.com/
|
|
428
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#UpdateCodeSigningConfig Lambda: UpdateCodeSigningConfig}
|
|
429
429
|
*/
|
|
430
430
|
UpdateCodeSigningConfig: (input: { CodeSigningConfigArn: string, AllowedPublishers?: Record<string, any>, CodeSigningPolicies?: Record<string, any>, Description?: string }) => Promise<UpdateCodeSigningConfigResponse>
|
|
431
431
|
/**
|
|
432
432
|
* @description
|
|
433
433
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateEventSourceMapping.html Lambda: UpdateEventSourceMapping}
|
|
434
|
-
* - aws-lite docs: {@link https://github.com/
|
|
434
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#UpdateEventSourceMapping Lambda: UpdateEventSourceMapping}
|
|
435
435
|
*/
|
|
436
436
|
UpdateEventSourceMapping: (input: { UUID: string, AmazonManagedKafkaEventSourceConfig?: Record<string, any>, BatchSize?: number, BisectBatchOnFunctionError?: boolean, DestinationConfig?: Record<string, any>, DocumentDBEventSourceConfig?: Record<string, any>, Enabled?: boolean, FilterCriteria?: Record<string, any>, FunctionName?: string, FunctionResponseTypes?: any[], MaximumBatchingWindowInSeconds?: number, MaximumRecordAgeInSeconds?: number, MaximumRetryAttempts?: number, ParallelizationFactor?: number, Queues?: any[], ScalingConfig?: Record<string, any>, SourceAccessConfigurations?: any[], TumblingWindowInSeconds?: number }) => Promise<UpdateEventSourceMappingResponse>
|
|
437
437
|
/**
|
|
438
438
|
* @description
|
|
439
439
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionCode.html Lambda: UpdateFunctionCode}
|
|
440
|
-
* - aws-lite docs: {@link https://github.com/
|
|
440
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#UpdateFunctionCode Lambda: UpdateFunctionCode}
|
|
441
441
|
*/
|
|
442
442
|
UpdateFunctionCode: (input: { FunctionName: string, Architectures?: any[], DryRun?: string, ImageUri?: string, Publish?: boolean, RevisionId?: string, S3Bucket?: string, S3Key?: string, S3ObjectVersion?: string, ZipFile?: string | Buffer }) => Promise<UpdateFunctionCodeResponse>
|
|
443
443
|
/**
|
|
444
444
|
* @description
|
|
445
445
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionConfiguration.html Lambda: UpdateFunctionConfiguration}
|
|
446
|
-
* - aws-lite docs: {@link https://github.com/
|
|
446
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#UpdateFunctionConfiguration Lambda: UpdateFunctionConfiguration}
|
|
447
447
|
*/
|
|
448
448
|
UpdateFunctionConfiguration: (input: { FunctionName: string, DeadLetterConfig?: Record<string, any>, Description?: string, Environment?: Record<string, any>, EphemeralStorage?: Record<string, any>, FileSystemConfigs?: any[], Handler?: string, ImageConfig?: Record<string, any>, KMSKeyArn?: string, Layers?: any[], MemorySize?: number, RevisionId?: string, Role?: string, Runtime?: string, SnapStart?: Record<string, any>, Timeout?: number, TracingConfig?: Record<string, any>, VpcConfig?: Record<string, any> }) => Promise<UpdateFunctionConfigurationResponse>
|
|
449
449
|
/**
|
|
450
450
|
* @description
|
|
451
451
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionEventInvokeConfig.html Lambda: UpdateFunctionEventInvokeConfig}
|
|
452
|
-
* - aws-lite docs: {@link https://github.com/
|
|
452
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#UpdateFunctionEventInvokeConfig Lambda: UpdateFunctionEventInvokeConfig}
|
|
453
453
|
*/
|
|
454
454
|
UpdateFunctionEventInvokeConfig: (input: { FunctionName: string, DestinationConfig?: Record<string, any>, MaximumEventAgeInSeconds?: number, MaximumRetryAttempts?: number }) => Promise<UpdateFunctionEventInvokeConfigResponse>
|
|
455
455
|
/**
|
|
456
456
|
* @description
|
|
457
457
|
* - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionUrlConfig.html Lambda: UpdateFunctionUrlConfig}
|
|
458
|
-
* - aws-lite docs: {@link https://github.com/
|
|
458
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/lambda/readme.md#UpdateFunctionUrlConfig Lambda: UpdateFunctionUrlConfig}
|
|
459
459
|
*/
|
|
460
460
|
UpdateFunctionUrlConfig: (input: { FunctionName: string, AuthType?: string, Cors?: Record<string, any>, InvokeMode?: string, Qualifier?: string }) => Promise<UpdateFunctionUrlConfigResponse>
|
|
461
461
|
// $METHODS_END
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-lite/lambda-types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Type definitions for the `@aws-lite/lambda` plugin",
|
|
5
5
|
"homepage": "https://aws-lite.org/services/lambda",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/aws-lite/aws-lite.git",
|
|
9
9
|
"directory": "plugins/lambda/types"
|
|
10
10
|
},
|
|
11
|
-
"bugs": "https://github.com/
|
|
11
|
+
"bugs": "https://github.com/aws-lite/aws-lite/issues",
|
|
12
12
|
"main": "",
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=16"
|