@aws-sdk/client-lambda 3.890.0 → 3.891.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.
- package/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +2 -0
- package/dist-types/commands/AddPermissionCommand.d.ts +2 -0
- package/dist-types/commands/CreateAliasCommand.d.ts +2 -0
- package/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +2 -0
- package/dist-types/commands/CreateEventSourceMappingCommand.d.ts +2 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +2 -0
- package/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAliasCommand.d.ts +2 -0
- package/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +2 -0
- package/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +2 -0
- package/dist-types/commands/DeleteLayerVersionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +2 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +2 -0
- package/dist-types/commands/GetAliasCommand.d.ts +2 -0
- package/dist-types/commands/GetCodeSigningConfigCommand.d.ts +2 -0
- package/dist-types/commands/GetEventSourceMappingCommand.d.ts +2 -0
- package/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +2 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +2 -0
- package/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +2 -0
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +2 -0
- package/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +2 -0
- package/dist-types/commands/GetFunctionRecursionConfigCommand.d.ts +2 -0
- package/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +2 -0
- package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +2 -0
- package/dist-types/commands/GetLayerVersionCommand.d.ts +2 -0
- package/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +2 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +2 -0
- package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +2 -0
- package/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +2 -0
- package/dist-types/commands/InvokeAsyncCommand.d.ts +2 -0
- package/dist-types/commands/InvokeCommand.d.ts +2 -0
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +2 -0
- package/dist-types/commands/ListAliasesCommand.d.ts +2 -0
- package/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +2 -0
- package/dist-types/commands/ListEventSourceMappingsCommand.d.ts +2 -0
- package/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +2 -0
- package/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +2 -0
- package/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +2 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +2 -0
- package/dist-types/commands/ListLayerVersionsCommand.d.ts +2 -0
- package/dist-types/commands/ListLayersCommand.d.ts +2 -0
- package/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsCommand.d.ts +2 -0
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +2 -0
- package/dist-types/commands/PublishLayerVersionCommand.d.ts +2 -0
- package/dist-types/commands/PublishVersionCommand.d.ts +2 -0
- package/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +2 -0
- package/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +2 -0
- package/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +2 -0
- package/dist-types/commands/PutFunctionRecursionConfigCommand.d.ts +2 -0
- package/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +2 -0
- package/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +2 -0
- package/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +2 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateAliasCommand.d.ts +2 -0
- package/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +2 -0
- package/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +2 -0
- package/package.json +10 -10
|
@@ -33,6 +33,8 @@ declare const AddLayerVersionPermissionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, AddLayerVersionPermissionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, AddLayerVersionPermissionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // AddLayerVersionPermissionRequest
|
|
38
40
|
* LayerName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const AddPermissionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, AddPermissionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, AddPermissionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // AddPermissionRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateAliasCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, CreateAliasCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, CreateAliasCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // CreateAliasRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateCodeSigningConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, CreateCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, CreateCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // CreateCodeSigningConfigRequest
|
|
38
40
|
* Description: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const CreateEventSourceMappingCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, CreateEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, CreateEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // CreateEventSourceMappingRequest
|
|
38
40
|
* EventSourceArn: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const CreateFunctionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, CreateFunctionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, CreateFunctionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // CreateFunctionRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateFunctionUrlConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, CreateFunctionUrlConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, CreateFunctionUrlConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // CreateFunctionUrlConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteAliasCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteAliasCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteAliasCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteAliasRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteCodeSigningConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteCodeSigningConfigRequest
|
|
38
40
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteEventSourceMappingCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteEventSourceMappingRequest
|
|
38
40
|
* UUID: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteFunctionCodeSigningConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteFunctionCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteFunctionCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteFunctionCodeSigningConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteFunctionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteFunctionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteFunctionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteFunctionRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteFunctionConcurrencyCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteFunctionConcurrencyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteFunctionConcurrencyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteFunctionConcurrencyRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteFunctionEventInvokeConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteFunctionEventInvokeConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteFunctionEventInvokeConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteFunctionEventInvokeConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteFunctionUrlConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteFunctionUrlConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteFunctionUrlConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteFunctionUrlConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteLayerVersionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteLayerVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteLayerVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteLayerVersionRequest
|
|
38
40
|
* LayerName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteProvisionedConcurrencyConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, DeleteProvisionedConcurrencyConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, DeleteProvisionedConcurrencyConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // DeleteProvisionedConcurrencyConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetAccountSettingsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetAccountSettingsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetAccountSettingsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = {};
|
|
38
40
|
* const command = new GetAccountSettingsCommand(input);
|
|
@@ -33,6 +33,8 @@ declare const GetAliasCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetAliasCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetAliasCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetAliasRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetCodeSigningConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetCodeSigningConfigRequest
|
|
38
40
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetEventSourceMappingCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetEventSourceMappingRequest
|
|
38
40
|
* UUID: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetFunctionCodeSigningConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetFunctionCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetFunctionCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetFunctionCodeSigningConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetFunctionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetFunctionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetFunctionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetFunctionRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetFunctionConcurrencyCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetFunctionConcurrencyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetFunctionConcurrencyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetFunctionConcurrencyRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetFunctionConfigurationCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetFunctionConfigurationCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetFunctionConfigurationCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetFunctionConfigurationRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetFunctionEventInvokeConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetFunctionEventInvokeConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetFunctionEventInvokeConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetFunctionEventInvokeConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetFunctionRecursionConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetFunctionRecursionConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetFunctionRecursionConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetFunctionRecursionConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetFunctionUrlConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetFunctionUrlConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetFunctionUrlConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetFunctionUrlConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetLayerVersionByArnCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetLayerVersionByArnCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetLayerVersionByArnCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetLayerVersionByArnRequest
|
|
38
40
|
* Arn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetLayerVersionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetLayerVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetLayerVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetLayerVersionRequest
|
|
38
40
|
* LayerName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetLayerVersionPolicyCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetLayerVersionPolicyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetLayerVersionPolicyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetLayerVersionPolicyRequest
|
|
38
40
|
* LayerName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetPolicyCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetPolicyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetPolicyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetPolicyRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetProvisionedConcurrencyConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetProvisionedConcurrencyConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetProvisionedConcurrencyConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetProvisionedConcurrencyConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetRuntimeManagementConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, GetRuntimeManagementConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, GetRuntimeManagementConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // GetRuntimeManagementConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const InvokeAsyncCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { LambdaClient, InvokeAsyncCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
38
38
|
* // const { LambdaClient, InvokeAsyncCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
39
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
40
|
+
* const config = {}; // type is LambdaClientConfig
|
|
39
41
|
* const client = new LambdaClient(config);
|
|
40
42
|
* const input = { // InvokeAsyncRequest
|
|
41
43
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -46,6 +46,8 @@ declare const InvokeCommand_base: {
|
|
|
46
46
|
* ```javascript
|
|
47
47
|
* import { LambdaClient, InvokeCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
48
48
|
* // const { LambdaClient, InvokeCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
49
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
50
|
+
* const config = {}; // type is LambdaClientConfig
|
|
49
51
|
* const client = new LambdaClient(config);
|
|
50
52
|
* const input = { // InvocationRequest
|
|
51
53
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -39,6 +39,8 @@ declare const InvokeWithResponseStreamCommand_base: {
|
|
|
39
39
|
* ```javascript
|
|
40
40
|
* import { LambdaClient, InvokeWithResponseStreamCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
41
41
|
* // const { LambdaClient, InvokeWithResponseStreamCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
42
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
43
|
+
* const config = {}; // type is LambdaClientConfig
|
|
42
44
|
* const client = new LambdaClient(config);
|
|
43
45
|
* const input = { // InvokeWithResponseStreamRequest
|
|
44
46
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListAliasesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListAliasesCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListAliasesCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListAliasesRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListCodeSigningConfigsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListCodeSigningConfigsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListCodeSigningConfigsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListCodeSigningConfigsRequest
|
|
38
40
|
* Marker: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListEventSourceMappingsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListEventSourceMappingsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListEventSourceMappingsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListEventSourceMappingsRequest
|
|
38
40
|
* EventSourceArn: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListFunctionEventInvokeConfigsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListFunctionEventInvokeConfigsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListFunctionEventInvokeConfigsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListFunctionEventInvokeConfigsRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListFunctionUrlConfigsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListFunctionUrlConfigsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListFunctionUrlConfigsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListFunctionUrlConfigsRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListFunctionsByCodeSigningConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListFunctionsByCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListFunctionsByCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListFunctionsByCodeSigningConfigRequest
|
|
38
40
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListFunctionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListFunctionsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListFunctionsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListFunctionsRequest
|
|
38
40
|
* MasterRegion: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListLayerVersionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListLayerVersionsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListLayerVersionsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListLayerVersionsRequest
|
|
38
40
|
* CompatibleRuntime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
@@ -33,6 +33,8 @@ declare const ListLayersCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListLayersCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListLayersCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListLayersRequest
|
|
38
40
|
* CompatibleRuntime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
@@ -33,6 +33,8 @@ declare const ListProvisionedConcurrencyConfigsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListProvisionedConcurrencyConfigsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListProvisionedConcurrencyConfigsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListProvisionedConcurrencyConfigsRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListTagsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListTagsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListTagsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListTagsRequest
|
|
38
40
|
* Resource: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListVersionsByFunctionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, ListVersionsByFunctionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListVersionsByFunctionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // ListVersionsByFunctionRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PublishLayerVersionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, PublishLayerVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PublishLayerVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // PublishLayerVersionRequest
|
|
38
40
|
* LayerName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PublishVersionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, PublishVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PublishVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // PublishVersionRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PutFunctionCodeSigningConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, PutFunctionCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PutFunctionCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // PutFunctionCodeSigningConfigRequest
|
|
38
40
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PutFunctionConcurrencyCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, PutFunctionConcurrencyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PutFunctionConcurrencyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // PutFunctionConcurrencyRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PutFunctionEventInvokeConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, PutFunctionEventInvokeConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PutFunctionEventInvokeConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // PutFunctionEventInvokeConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PutFunctionRecursionConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, PutFunctionRecursionConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PutFunctionRecursionConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // PutFunctionRecursionConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PutProvisionedConcurrencyConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, PutProvisionedConcurrencyConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PutProvisionedConcurrencyConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // PutProvisionedConcurrencyConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PutRuntimeManagementConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, PutRuntimeManagementConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PutRuntimeManagementConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // PutRuntimeManagementConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const RemoveLayerVersionPermissionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, RemoveLayerVersionPermissionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, RemoveLayerVersionPermissionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // RemoveLayerVersionPermissionRequest
|
|
38
40
|
* LayerName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const RemovePermissionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, RemovePermissionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, RemovePermissionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // RemovePermissionRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, TagResourceCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, TagResourceCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // TagResourceRequest
|
|
38
40
|
* Resource: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, UntagResourceCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, UntagResourceCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // UntagResourceRequest
|
|
38
40
|
* Resource: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateAliasCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, UpdateAliasCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, UpdateAliasCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // UpdateAliasRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateCodeSigningConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, UpdateCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, UpdateCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // UpdateCodeSigningConfigRequest
|
|
38
40
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateEventSourceMappingCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, UpdateEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, UpdateEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // UpdateEventSourceMappingRequest
|
|
38
40
|
* UUID: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateFunctionCodeCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, UpdateFunctionCodeCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, UpdateFunctionCodeCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // UpdateFunctionCodeRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateFunctionConfigurationCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, UpdateFunctionConfigurationCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, UpdateFunctionConfigurationCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // UpdateFunctionConfigurationRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateFunctionEventInvokeConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, UpdateFunctionEventInvokeConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, UpdateFunctionEventInvokeConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // UpdateFunctionEventInvokeConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateFunctionUrlConfigCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LambdaClient, UpdateFunctionUrlConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, UpdateFunctionUrlConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
36
38
|
* const client = new LambdaClient(config);
|
|
37
39
|
* const input = { // UpdateFunctionUrlConfigRequest
|
|
38
40
|
* FunctionName: "STRING_VALUE", // required
|
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.
|
|
4
|
+
"version": "3.891.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-lambda",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.890.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.891.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.891.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.891.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.891.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.891.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.890.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.891.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.891.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/eventstream-serde-browser": "^4.1.1",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-endpoint": "^4.2.2",
|
|
44
|
-
"@smithy/middleware-retry": "^4.2.
|
|
44
|
+
"@smithy/middleware-retry": "^4.2.3",
|
|
45
45
|
"@smithy/middleware-serde": "^4.1.1",
|
|
46
46
|
"@smithy/middleware-stack": "^4.1.1",
|
|
47
47
|
"@smithy/node-config-provider": "^4.2.2",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@smithy/util-defaults-mode-node": "^4.1.2",
|
|
58
58
|
"@smithy/util-endpoints": "^3.1.2",
|
|
59
59
|
"@smithy/util-middleware": "^4.1.1",
|
|
60
|
-
"@smithy/util-retry": "^4.1.
|
|
60
|
+
"@smithy/util-retry": "^4.1.2",
|
|
61
61
|
"@smithy/util-stream": "^4.3.1",
|
|
62
62
|
"@smithy/util-utf8": "^4.1.0",
|
|
63
63
|
"@smithy/util-waiter": "^4.1.1",
|