@aws-sdk/client-lambda 3.279.0 → 3.281.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/README.md +523 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +14 -5
- package/dist-cjs/protocols/Aws_restJson1.js +38 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +38 -0
- package/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +6 -0
- package/dist-types/commands/AddPermissionCommand.d.ts +6 -0
- package/dist-types/commands/CreateAliasCommand.d.ts +6 -0
- package/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +6 -0
- package/dist-types/commands/CreateEventSourceMappingCommand.d.ts +6 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +6 -0
- package/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAliasCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +6 -0
- package/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +6 -0
- package/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +6 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +6 -0
- package/dist-types/commands/GetAliasCommand.d.ts +6 -0
- package/dist-types/commands/GetCodeSigningConfigCommand.d.ts +6 -0
- package/dist-types/commands/GetEventSourceMappingCommand.d.ts +6 -0
- package/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +6 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +6 -0
- package/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +6 -0
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +6 -0
- package/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +6 -0
- package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +6 -0
- package/dist-types/commands/GetLayerVersionCommand.d.ts +6 -0
- package/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +6 -0
- package/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +6 -0
- package/dist-types/commands/InvokeAsyncCommand.d.ts +6 -0
- package/dist-types/commands/InvokeCommand.d.ts +6 -0
- package/dist-types/commands/ListAliasesCommand.d.ts +6 -0
- package/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +6 -0
- package/dist-types/commands/ListEventSourceMappingsCommand.d.ts +6 -0
- package/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +6 -0
- package/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +6 -0
- package/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +6 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +6 -0
- package/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -0
- package/dist-types/commands/ListLayersCommand.d.ts +6 -0
- package/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsCommand.d.ts +6 -0
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +6 -0
- package/dist-types/commands/PublishLayerVersionCommand.d.ts +6 -0
- package/dist-types/commands/PublishVersionCommand.d.ts +6 -0
- package/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +6 -0
- package/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +6 -0
- package/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +6 -0
- package/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +6 -0
- package/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +6 -0
- package/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +6 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAliasCommand.d.ts +6 -0
- package/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +6 -0
- package/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +6 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +64 -17
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +16 -0
- package/package.json +3 -3
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { AliasConfiguration, GetAliasRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetAliasCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetAliasCommandInput extends GetAliasRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetAliasCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetAliasCommandOutput extends AliasConfiguration, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetCodeSigningConfigRequest, GetCodeSigningConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetCodeSigningConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetCodeSigningConfigCommandInput extends GetCodeSigningConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetCodeSigningConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetCodeSigningConfigCommandOutput extends GetCodeSigningConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { EventSourceMappingConfiguration, GetEventSourceMappingRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetEventSourceMappingCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetEventSourceMappingCommandInput extends GetEventSourceMappingRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetEventSourceMappingCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetEventSourceMappingCommandOutput extends EventSourceMappingConfiguration, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetFunctionCodeSigningConfigRequest, GetFunctionCodeSigningConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetFunctionCodeSigningConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetFunctionCodeSigningConfigCommandInput extends GetFunctionCodeSigningConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetFunctionCodeSigningConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetFunctionCodeSigningConfigCommandOutput extends GetFunctionCodeSigningConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetFunctionRequest, GetFunctionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetFunctionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetFunctionCommandInput extends GetFunctionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetFunctionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetFunctionCommandOutput extends GetFunctionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetFunctionConcurrencyRequest, GetFunctionConcurrencyResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetFunctionConcurrencyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetFunctionConcurrencyCommandInput extends GetFunctionConcurrencyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetFunctionConcurrencyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetFunctionConcurrencyCommandOutput extends GetFunctionConcurrencyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { FunctionConfiguration, GetFunctionConfigurationRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetFunctionConfigurationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetFunctionConfigurationCommandInput extends GetFunctionConfigurationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetFunctionConfigurationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetFunctionConfigurationCommandOutput extends FunctionConfiguration, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { FunctionEventInvokeConfig, GetFunctionEventInvokeConfigRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetFunctionEventInvokeConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetFunctionEventInvokeConfigCommandInput extends GetFunctionEventInvokeConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetFunctionEventInvokeConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetFunctionEventInvokeConfigCommandOutput extends FunctionEventInvokeConfig, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetFunctionUrlConfigRequest, GetFunctionUrlConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetFunctionUrlConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetFunctionUrlConfigCommandInput extends GetFunctionUrlConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetFunctionUrlConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetFunctionUrlConfigCommandOutput extends GetFunctionUrlConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetLayerVersionByArnRequest, GetLayerVersionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetLayerVersionByArnCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetLayerVersionByArnCommandInput extends GetLayerVersionByArnRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetLayerVersionByArnCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetLayerVersionByArnCommandOutput extends GetLayerVersionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetLayerVersionRequest, GetLayerVersionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetLayerVersionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetLayerVersionCommandInput extends GetLayerVersionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetLayerVersionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetLayerVersionCommandOutput extends GetLayerVersionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetLayerVersionPolicyRequest, GetLayerVersionPolicyResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetLayerVersionPolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetLayerVersionPolicyCommandInput extends GetLayerVersionPolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetLayerVersionPolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetLayerVersionPolicyCommandOutput extends GetLayerVersionPolicyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetPolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetPolicyCommandInput extends GetPolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetPolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetProvisionedConcurrencyConfigRequest, GetProvisionedConcurrencyConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetProvisionedConcurrencyConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetProvisionedConcurrencyConfigCommandInput extends GetProvisionedConcurrencyConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetProvisionedConcurrencyConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetProvisionedConcurrencyConfigCommandOutput extends GetProvisionedConcurrencyConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { GetRuntimeManagementConfigRequest, GetRuntimeManagementConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetRuntimeManagementConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetRuntimeManagementConfigCommandInput extends GetRuntimeManagementConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetRuntimeManagementConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetRuntimeManagementConfigCommandOutput extends GetRuntimeManagementConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -4,6 +4,9 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
5
5
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
6
6
|
import { InvokeAsyncRequest, InvokeAsyncResponse } from "../models/models_0";
|
|
7
|
+
/**
|
|
8
|
+
* The input for {@link InvokeAsyncCommand}.
|
|
9
|
+
*/
|
|
7
10
|
declare type InvokeAsyncCommandInputType = Omit<InvokeAsyncRequest, "InvokeArgs"> & {
|
|
8
11
|
/**
|
|
9
12
|
* For *`InvokeAsyncRequest["InvokeArgs"]`*, see {@link InvokeAsyncRequest.InvokeArgs}.
|
|
@@ -15,6 +18,9 @@ declare type InvokeAsyncCommandInputType = Omit<InvokeAsyncRequest, "InvokeArgs"
|
|
|
15
18
|
*/
|
|
16
19
|
export interface InvokeAsyncCommandInput extends InvokeAsyncCommandInputType {
|
|
17
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* The output of {@link InvokeAsyncCommand}.
|
|
23
|
+
*/
|
|
18
24
|
export interface InvokeAsyncCommandOutput extends InvokeAsyncResponse, __MetadataBearer {
|
|
19
25
|
}
|
|
20
26
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { InvocationRequest, InvocationResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link InvokeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface InvokeCommandInput extends InvocationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link InvokeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface InvokeCommandOutput extends InvocationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListAliasesRequest, ListAliasesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListAliasesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListAliasesCommandInput extends ListAliasesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListAliasesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListAliasesCommandOutput extends ListAliasesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListCodeSigningConfigsRequest, ListCodeSigningConfigsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListCodeSigningConfigsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListCodeSigningConfigsCommandInput extends ListCodeSigningConfigsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListCodeSigningConfigsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListCodeSigningConfigsCommandOutput extends ListCodeSigningConfigsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListEventSourceMappingsRequest, ListEventSourceMappingsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListEventSourceMappingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListEventSourceMappingsCommandInput extends ListEventSourceMappingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListEventSourceMappingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListEventSourceMappingsCommandOutput extends ListEventSourceMappingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListFunctionEventInvokeConfigsRequest, ListFunctionEventInvokeConfigsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListFunctionEventInvokeConfigsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListFunctionEventInvokeConfigsCommandInput extends ListFunctionEventInvokeConfigsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListFunctionEventInvokeConfigsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListFunctionEventInvokeConfigsCommandOutput extends ListFunctionEventInvokeConfigsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListFunctionUrlConfigsRequest, ListFunctionUrlConfigsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListFunctionUrlConfigsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListFunctionUrlConfigsCommandInput extends ListFunctionUrlConfigsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListFunctionUrlConfigsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListFunctionUrlConfigsCommandOutput extends ListFunctionUrlConfigsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListFunctionsByCodeSigningConfigRequest, ListFunctionsByCodeSigningConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListFunctionsByCodeSigningConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListFunctionsByCodeSigningConfigCommandInput extends ListFunctionsByCodeSigningConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListFunctionsByCodeSigningConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListFunctionsByCodeSigningConfigCommandOutput extends ListFunctionsByCodeSigningConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListFunctionsRequest, ListFunctionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListFunctionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListFunctionsCommandInput extends ListFunctionsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListFunctionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListLayerVersionsRequest, ListLayerVersionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListLayerVersionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListLayerVersionsCommandInput extends ListLayerVersionsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListLayerVersionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListLayerVersionsCommandOutput extends ListLayerVersionsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListLayersRequest, ListLayersResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListLayersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListLayersCommandInput extends ListLayersRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListLayersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListLayersCommandOutput extends ListLayersResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListProvisionedConcurrencyConfigsRequest, ListProvisionedConcurrencyConfigsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListProvisionedConcurrencyConfigsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListProvisionedConcurrencyConfigsCommandInput extends ListProvisionedConcurrencyConfigsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListProvisionedConcurrencyConfigsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListProvisionedConcurrencyConfigsCommandOutput extends ListProvisionedConcurrencyConfigsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTagsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTagsCommandInput extends ListTagsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTagsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { ListVersionsByFunctionRequest, ListVersionsByFunctionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListVersionsByFunctionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListVersionsByFunctionCommandInput extends ListVersionsByFunctionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListVersionsByFunctionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListVersionsByFunctionCommandOutput extends ListVersionsByFunctionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { PublishLayerVersionRequest, PublishLayerVersionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PublishLayerVersionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PublishLayerVersionCommandInput extends PublishLayerVersionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PublishLayerVersionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PublishLayerVersionCommandOutput extends PublishLayerVersionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { FunctionConfiguration, PublishVersionRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PublishVersionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PublishVersionCommandInput extends PublishVersionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PublishVersionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PublishVersionCommandOutput extends FunctionConfiguration, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { PutFunctionCodeSigningConfigRequest, PutFunctionCodeSigningConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutFunctionCodeSigningConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutFunctionCodeSigningConfigCommandInput extends PutFunctionCodeSigningConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutFunctionCodeSigningConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutFunctionCodeSigningConfigCommandOutput extends PutFunctionCodeSigningConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { Concurrency, PutFunctionConcurrencyRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutFunctionConcurrencyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutFunctionConcurrencyCommandInput extends PutFunctionConcurrencyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutFunctionConcurrencyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutFunctionConcurrencyCommandOutput extends Concurrency, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { FunctionEventInvokeConfig, PutFunctionEventInvokeConfigRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutFunctionEventInvokeConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutFunctionEventInvokeConfigCommandInput extends PutFunctionEventInvokeConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutFunctionEventInvokeConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutFunctionEventInvokeConfigCommandOutput extends FunctionEventInvokeConfig, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { PutProvisionedConcurrencyConfigRequest, PutProvisionedConcurrencyConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutProvisionedConcurrencyConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutProvisionedConcurrencyConfigCommandInput extends PutProvisionedConcurrencyConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutProvisionedConcurrencyConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutProvisionedConcurrencyConfigCommandOutput extends PutProvisionedConcurrencyConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { PutRuntimeManagementConfigRequest, PutRuntimeManagementConfigResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutRuntimeManagementConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutRuntimeManagementConfigCommandInput extends PutRuntimeManagementConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutRuntimeManagementConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutRuntimeManagementConfigCommandOutput extends PutRuntimeManagementConfigResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { RemoveLayerVersionPermissionRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RemoveLayerVersionPermissionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RemoveLayerVersionPermissionCommandInput extends RemoveLayerVersionPermissionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RemoveLayerVersionPermissionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RemoveLayerVersionPermissionCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { RemovePermissionRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RemovePermissionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RemovePermissionCommandInput extends RemovePermissionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RemovePermissionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RemovePermissionCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { TagResourceRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|