Socket
Socket
Sign inDemoInstall

@aws-sdk/client-lambda

Package Overview
Dependencies
Maintainers
5
Versions
429
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/client-lambda - npm Package Compare versions

Comparing version 3.658.1 to 3.659.0

5

dist-es/commands/index.js

@@ -18,3 +18,2 @@ export * from "./AddLayerVersionPermissionCommand";

export * from "./DeleteProvisionedConcurrencyConfigCommand";
export * from "./DeleteResourcePolicyCommand";
export * from "./GetAccountSettingsCommand";

@@ -36,4 +35,2 @@ export * from "./GetAliasCommand";

export * from "./GetProvisionedConcurrencyConfigCommand";
export * from "./GetPublicAccessBlockConfigCommand";
export * from "./GetResourcePolicyCommand";
export * from "./GetRuntimeManagementConfigCommand";

@@ -62,4 +59,2 @@ export * from "./InvokeAsyncCommand";

export * from "./PutProvisionedConcurrencyConfigCommand";
export * from "./PutPublicAccessBlockConfigCommand";
export * from "./PutResourcePolicyCommand";
export * from "./PutRuntimeManagementConfigCommand";

@@ -66,0 +61,0 @@ export * from "./RemoveLayerVersionPermissionCommand";

@@ -19,3 +19,2 @@ import { createAggregatedClient } from "@smithy/smithy-client";

import { DeleteProvisionedConcurrencyConfigCommand, } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCommand";
import { GetAccountSettingsCommand, } from "./commands/GetAccountSettingsCommand";

@@ -37,4 +36,2 @@ import { GetAliasCommand } from "./commands/GetAliasCommand";

import { GetProvisionedConcurrencyConfigCommand, } from "./commands/GetProvisionedConcurrencyConfigCommand";
import { GetPublicAccessBlockConfigCommand, } from "./commands/GetPublicAccessBlockConfigCommand";
import { GetResourcePolicyCommand, } from "./commands/GetResourcePolicyCommand";
import { GetRuntimeManagementConfigCommand, } from "./commands/GetRuntimeManagementConfigCommand";

@@ -63,4 +60,2 @@ import { InvokeAsyncCommand } from "./commands/InvokeAsyncCommand";

import { PutProvisionedConcurrencyConfigCommand, } from "./commands/PutProvisionedConcurrencyConfigCommand";
import { PutPublicAccessBlockConfigCommand, } from "./commands/PutPublicAccessBlockConfigCommand";
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
import { PutRuntimeManagementConfigCommand, } from "./commands/PutRuntimeManagementConfigCommand";

@@ -97,3 +92,2 @@ import { RemoveLayerVersionPermissionCommand, } from "./commands/RemoveLayerVersionPermissionCommand";

DeleteProvisionedConcurrencyConfigCommand,
DeleteResourcePolicyCommand,
GetAccountSettingsCommand,

@@ -115,4 +109,2 @@ GetAliasCommand,

GetProvisionedConcurrencyConfigCommand,
GetPublicAccessBlockConfigCommand,
GetResourcePolicyCommand,
GetRuntimeManagementConfigCommand,

@@ -141,4 +133,2 @@ InvokeCommand,

PutProvisionedConcurrencyConfigCommand,
PutPublicAccessBlockConfigCommand,
PutResourcePolicyCommand,
PutRuntimeManagementConfigCommand,

@@ -145,0 +135,0 @@ RemoveLayerVersionPermissionCommand,

@@ -110,16 +110,2 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client";

};
export class PublicPolicyException extends __BaseException {
constructor(opts) {
super({
name: "PublicPolicyException",
$fault: "client",
...opts,
});
this.name = "PublicPolicyException";
this.$fault = "client";
Object.setPrototypeOf(this, PublicPolicyException.prototype);
this.Type = opts.Type;
this.Message = opts.Message;
}
}
export const ApplicationLogLevel = {

@@ -126,0 +112,0 @@ Debug: "DEBUG",

9

dist-types/commands/AddPermissionCommand.d.ts

@@ -37,4 +37,4 @@ import { Command as $Command } from "@smithy/smithy-client";

* permission to an organization defined in Organizations, specify the organization ID as the
* <code>PrincipalOrgID</code>. For Amazon Web Servicesservices, the principal is a domain-style identifier that
* the service defines, such as <code>s3.amazonaws.com</code> or <code>sns.amazonaws.com</code>. For Amazon Web Servicesservices, you can also specify the ARN of the associated resource as the <code>SourceArn</code>. If
* <code>PrincipalOrgID</code>. For Amazon Web Services services, the principal is a domain-style identifier that
* the service defines, such as <code>s3.amazonaws.com</code> or <code>sns.amazonaws.com</code>. For Amazon Web Services services, you can also specify the ARN of the associated resource as the <code>SourceArn</code>. If
* you grant permission to a service principal without specifying the source, other accounts could potentially

@@ -96,7 +96,2 @@ * configure resources in their account to invoke your Lambda function.</p>

*
* @throws {@link PublicPolicyException} (client fault)
* <p>Lambda prevented your policy from being created because it would grant public access to your function. If you intended to
* create a public policy, use the <a>PutPublicAccessBlockConfig</a> API action to configure your function's public-access settings
* to allow public policies.</p>
*
* @throws {@link ResourceConflictException} (client fault)

@@ -103,0 +98,0 @@ * <p>The resource already exists, or another operation is in progress.</p>

@@ -32,3 +32,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* deployment package is a .zip file archive or container image that contains your function code. The execution role
* grants the function permission to use Amazon Web Servicesservices, such as Amazon CloudWatch Logs for log
* grants the function permission to use Amazon Web Services services, such as Amazon CloudWatch Logs for log
* streaming and X-Ray for request tracing.</p>

@@ -64,5 +64,5 @@ * <p>If the deployment package is a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html">container

* publishers for this function.</p>
* <p>If another Amazon Web Services account or an Amazon Web Servicesservice invokes your function, use <a>AddPermission</a> to grant permission by creating a resource-based Identity and Access Management (IAM) policy. You can grant permissions at the function level, on a version, or on an alias.</p>
* <p>If another Amazon Web Services account or an Amazon Web Services service invokes your function, use <a>AddPermission</a> to grant permission by creating a resource-based Identity and Access Management (IAM) policy. You can grant permissions at the function level, on a version, or on an alias.</p>
* <p>To invoke your function directly, use <a>Invoke</a>. To invoke your function in response to events
* in other Amazon Web Servicesservices, create an event source mapping (<a>CreateEventSourceMapping</a>),
* in other Amazon Web Services services, create an event source mapping (<a>CreateEventSourceMapping</a>),
* or configure a function trigger in the other service. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html">Invoking Lambda

@@ -69,0 +69,0 @@ * functions</a>.</p>

@@ -33,3 +33,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* permissions for <a>DeleteAlias</a>.</p>
* <p>To delete Lambda event source mappings that invoke a function, use <a>DeleteEventSourceMapping</a>. For Amazon Web Servicesservices and resources that invoke your function
* <p>To delete Lambda event source mappings that invoke a function, use <a>DeleteEventSourceMapping</a>. For Amazon Web Services services and resources that invoke your function
* directly, delete the trigger in the service where you originally configured it.</p>

@@ -36,0 +36,0 @@ * @example

@@ -18,3 +18,2 @@ export * from "./AddLayerVersionPermissionCommand";

export * from "./DeleteProvisionedConcurrencyConfigCommand";
export * from "./DeleteResourcePolicyCommand";
export * from "./GetAccountSettingsCommand";

@@ -36,4 +35,2 @@ export * from "./GetAliasCommand";

export * from "./GetProvisionedConcurrencyConfigCommand";
export * from "./GetPublicAccessBlockConfigCommand";
export * from "./GetResourcePolicyCommand";
export * from "./GetRuntimeManagementConfigCommand";

@@ -62,4 +59,2 @@ export * from "./InvokeAsyncCommand";

export * from "./PutProvisionedConcurrencyConfigCommand";
export * from "./PutPublicAccessBlockConfigCommand";
export * from "./PutResourcePolicyCommand";
export * from "./PutRuntimeManagementConfigCommand";

@@ -66,0 +61,0 @@ export * from "./RemoveLayerVersionPermissionCommand";

@@ -31,3 +31,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* <p>Returns a function, event source mapping, or code signing configuration's <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>. You can
* also view funciton tags with <a>GetFunction</a>.</p>
* also view function tags with <a>GetFunction</a>.</p>
* @example

@@ -34,0 +34,0 @@ * Use a bare-bones client and the command you need to make an API call.

@@ -30,3 +30,3 @@ import { Command as $Command } from "@smithy/smithy-client";

/**
* <p>Revokes function-use permission from an Amazon Web Servicesservice or another Amazon Web Services account. You
* <p>Revokes function-use permission from an Amazon Web Services service or another Amazon Web Services account. You
* can get the ID of the statement from the output of <a>GetPolicy</a>.</p>

@@ -73,7 +73,2 @@ * @example

*
* @throws {@link PublicPolicyException} (client fault)
* <p>Lambda prevented your policy from being created because it would grant public access to your function. If you intended to
* create a public policy, use the <a>PutPublicAccessBlockConfig</a> API action to configure your function's public-access settings
* to allow public policies.</p>
*
* @throws {@link ResourceNotFoundException} (client fault)

@@ -80,0 +75,0 @@ * <p>The resource specified in the request does not exist.</p>

@@ -41,3 +41,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* <p>To configure function concurrency, use <a>PutFunctionConcurrency</a>. To grant invoke permissions
* to an Amazon Web Services account or Amazon Web Servicesservice, use <a>AddPermission</a>.</p>
* to an Amazon Web Services account or Amazon Web Services service, use <a>AddPermission</a>.</p>
* @example

@@ -44,0 +44,0 @@ * Use a bare-bones client and the command you need to make an API call.

@@ -19,3 +19,2 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";

import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";

@@ -37,4 +36,2 @@ import { GetAliasCommandInput, GetAliasCommandOutput } from "./commands/GetAliasCommand";

import { GetProvisionedConcurrencyConfigCommandInput, GetProvisionedConcurrencyConfigCommandOutput } from "./commands/GetProvisionedConcurrencyConfigCommand";
import { GetPublicAccessBlockConfigCommandInput, GetPublicAccessBlockConfigCommandOutput } from "./commands/GetPublicAccessBlockConfigCommand";
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
import { GetRuntimeManagementConfigCommandInput, GetRuntimeManagementConfigCommandOutput } from "./commands/GetRuntimeManagementConfigCommand";

@@ -63,4 +60,2 @@ import { InvokeAsyncCommandInput, InvokeAsyncCommandOutput } from "./commands/InvokeAsyncCommand";

import { PutProvisionedConcurrencyConfigCommandInput, PutProvisionedConcurrencyConfigCommandOutput } from "./commands/PutProvisionedConcurrencyConfigCommand";
import { PutPublicAccessBlockConfigCommandInput, PutPublicAccessBlockConfigCommandOutput } from "./commands/PutPublicAccessBlockConfigCommand";
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
import { PutRuntimeManagementConfigCommandInput, PutRuntimeManagementConfigCommandOutput } from "./commands/PutRuntimeManagementConfigCommand";

@@ -183,8 +178,2 @@ import { RemoveLayerVersionPermissionCommandInput, RemoveLayerVersionPermissionCommandOutput } from "./commands/RemoveLayerVersionPermissionCommand";

/**
* @see {@link DeleteResourcePolicyCommand}
*/
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
/**
* @see {@link GetAccountSettingsCommand}

@@ -287,14 +276,2 @@ */

/**
* @see {@link GetPublicAccessBlockConfigCommand}
*/
getPublicAccessBlockConfig(args: GetPublicAccessBlockConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetPublicAccessBlockConfigCommandOutput>;
getPublicAccessBlockConfig(args: GetPublicAccessBlockConfigCommandInput, cb: (err: any, data?: GetPublicAccessBlockConfigCommandOutput) => void): void;
getPublicAccessBlockConfig(args: GetPublicAccessBlockConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPublicAccessBlockConfigCommandOutput) => void): void;
/**
* @see {@link GetResourcePolicyCommand}
*/
getResourcePolicy(args: GetResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePolicyCommandOutput>;
getResourcePolicy(args: GetResourcePolicyCommandInput, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
getResourcePolicy(args: GetResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
/**
* @see {@link GetRuntimeManagementConfigCommand}

@@ -442,14 +419,2 @@ */

/**
* @see {@link PutPublicAccessBlockConfigCommand}
*/
putPublicAccessBlockConfig(args: PutPublicAccessBlockConfigCommandInput, options?: __HttpHandlerOptions): Promise<PutPublicAccessBlockConfigCommandOutput>;
putPublicAccessBlockConfig(args: PutPublicAccessBlockConfigCommandInput, cb: (err: any, data?: PutPublicAccessBlockConfigCommandOutput) => void): void;
putPublicAccessBlockConfig(args: PutPublicAccessBlockConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPublicAccessBlockConfigCommandOutput) => void): void;
/**
* @see {@link PutResourcePolicyCommand}
*/
putResourcePolicy(args: PutResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePolicyCommandOutput>;
putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
/**
* @see {@link PutRuntimeManagementConfigCommand}

@@ -456,0 +421,0 @@ */

@@ -28,3 +28,2 @@ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";

import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";

@@ -46,4 +45,2 @@ import { GetAliasCommandInput, GetAliasCommandOutput } from "./commands/GetAliasCommand";

import { GetProvisionedConcurrencyConfigCommandInput, GetProvisionedConcurrencyConfigCommandOutput } from "./commands/GetProvisionedConcurrencyConfigCommand";
import { GetPublicAccessBlockConfigCommandInput, GetPublicAccessBlockConfigCommandOutput } from "./commands/GetPublicAccessBlockConfigCommand";
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
import { GetRuntimeManagementConfigCommandInput, GetRuntimeManagementConfigCommandOutput } from "./commands/GetRuntimeManagementConfigCommand";

@@ -72,4 +69,2 @@ import { InvokeAsyncCommandInput, InvokeAsyncCommandOutput } from "./commands/InvokeAsyncCommand";

import { PutProvisionedConcurrencyConfigCommandInput, PutProvisionedConcurrencyConfigCommandOutput } from "./commands/PutProvisionedConcurrencyConfigCommand";
import { PutPublicAccessBlockConfigCommandInput, PutPublicAccessBlockConfigCommandOutput } from "./commands/PutPublicAccessBlockConfigCommand";
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
import { PutRuntimeManagementConfigCommandInput, PutRuntimeManagementConfigCommandOutput } from "./commands/PutRuntimeManagementConfigCommand";

@@ -93,7 +88,7 @@ import { RemoveLayerVersionPermissionCommandInput, RemoveLayerVersionPermissionCommandOutput } from "./commands/RemoveLayerVersionPermissionCommand";

*/
export type ServiceInputTypes = AddLayerVersionPermissionCommandInput | AddPermissionCommandInput | CreateAliasCommandInput | CreateCodeSigningConfigCommandInput | CreateEventSourceMappingCommandInput | CreateFunctionCommandInput | CreateFunctionUrlConfigCommandInput | DeleteAliasCommandInput | DeleteCodeSigningConfigCommandInput | DeleteEventSourceMappingCommandInput | DeleteFunctionCodeSigningConfigCommandInput | DeleteFunctionCommandInput | DeleteFunctionConcurrencyCommandInput | DeleteFunctionEventInvokeConfigCommandInput | DeleteFunctionUrlConfigCommandInput | DeleteLayerVersionCommandInput | DeleteProvisionedConcurrencyConfigCommandInput | DeleteResourcePolicyCommandInput | GetAccountSettingsCommandInput | GetAliasCommandInput | GetCodeSigningConfigCommandInput | GetEventSourceMappingCommandInput | GetFunctionCodeSigningConfigCommandInput | GetFunctionCommandInput | GetFunctionConcurrencyCommandInput | GetFunctionConfigurationCommandInput | GetFunctionEventInvokeConfigCommandInput | GetFunctionRecursionConfigCommandInput | GetFunctionUrlConfigCommandInput | GetLayerVersionByArnCommandInput | GetLayerVersionCommandInput | GetLayerVersionPolicyCommandInput | GetPolicyCommandInput | GetProvisionedConcurrencyConfigCommandInput | GetPublicAccessBlockConfigCommandInput | GetResourcePolicyCommandInput | GetRuntimeManagementConfigCommandInput | InvokeAsyncCommandInput | InvokeCommandInput | InvokeWithResponseStreamCommandInput | ListAliasesCommandInput | ListCodeSigningConfigsCommandInput | ListEventSourceMappingsCommandInput | ListFunctionEventInvokeConfigsCommandInput | ListFunctionUrlConfigsCommandInput | ListFunctionsByCodeSigningConfigCommandInput | ListFunctionsCommandInput | ListLayerVersionsCommandInput | ListLayersCommandInput | ListProvisionedConcurrencyConfigsCommandInput | ListTagsCommandInput | ListVersionsByFunctionCommandInput | PublishLayerVersionCommandInput | PublishVersionCommandInput | PutFunctionCodeSigningConfigCommandInput | PutFunctionConcurrencyCommandInput | PutFunctionEventInvokeConfigCommandInput | PutFunctionRecursionConfigCommandInput | PutProvisionedConcurrencyConfigCommandInput | PutPublicAccessBlockConfigCommandInput | PutResourcePolicyCommandInput | PutRuntimeManagementConfigCommandInput | RemoveLayerVersionPermissionCommandInput | RemovePermissionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateCodeSigningConfigCommandInput | UpdateEventSourceMappingCommandInput | UpdateFunctionCodeCommandInput | UpdateFunctionConfigurationCommandInput | UpdateFunctionEventInvokeConfigCommandInput | UpdateFunctionUrlConfigCommandInput;
export type ServiceInputTypes = AddLayerVersionPermissionCommandInput | AddPermissionCommandInput | CreateAliasCommandInput | CreateCodeSigningConfigCommandInput | CreateEventSourceMappingCommandInput | CreateFunctionCommandInput | CreateFunctionUrlConfigCommandInput | DeleteAliasCommandInput | DeleteCodeSigningConfigCommandInput | DeleteEventSourceMappingCommandInput | DeleteFunctionCodeSigningConfigCommandInput | DeleteFunctionCommandInput | DeleteFunctionConcurrencyCommandInput | DeleteFunctionEventInvokeConfigCommandInput | DeleteFunctionUrlConfigCommandInput | DeleteLayerVersionCommandInput | DeleteProvisionedConcurrencyConfigCommandInput | GetAccountSettingsCommandInput | GetAliasCommandInput | GetCodeSigningConfigCommandInput | GetEventSourceMappingCommandInput | GetFunctionCodeSigningConfigCommandInput | GetFunctionCommandInput | GetFunctionConcurrencyCommandInput | GetFunctionConfigurationCommandInput | GetFunctionEventInvokeConfigCommandInput | GetFunctionRecursionConfigCommandInput | GetFunctionUrlConfigCommandInput | GetLayerVersionByArnCommandInput | GetLayerVersionCommandInput | GetLayerVersionPolicyCommandInput | GetPolicyCommandInput | GetProvisionedConcurrencyConfigCommandInput | GetRuntimeManagementConfigCommandInput | InvokeAsyncCommandInput | InvokeCommandInput | InvokeWithResponseStreamCommandInput | ListAliasesCommandInput | ListCodeSigningConfigsCommandInput | ListEventSourceMappingsCommandInput | ListFunctionEventInvokeConfigsCommandInput | ListFunctionUrlConfigsCommandInput | ListFunctionsByCodeSigningConfigCommandInput | ListFunctionsCommandInput | ListLayerVersionsCommandInput | ListLayersCommandInput | ListProvisionedConcurrencyConfigsCommandInput | ListTagsCommandInput | ListVersionsByFunctionCommandInput | PublishLayerVersionCommandInput | PublishVersionCommandInput | PutFunctionCodeSigningConfigCommandInput | PutFunctionConcurrencyCommandInput | PutFunctionEventInvokeConfigCommandInput | PutFunctionRecursionConfigCommandInput | PutProvisionedConcurrencyConfigCommandInput | PutRuntimeManagementConfigCommandInput | RemoveLayerVersionPermissionCommandInput | RemovePermissionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateCodeSigningConfigCommandInput | UpdateEventSourceMappingCommandInput | UpdateFunctionCodeCommandInput | UpdateFunctionConfigurationCommandInput | UpdateFunctionEventInvokeConfigCommandInput | UpdateFunctionUrlConfigCommandInput;
/**
* @public
*/
export type ServiceOutputTypes = AddLayerVersionPermissionCommandOutput | AddPermissionCommandOutput | CreateAliasCommandOutput | CreateCodeSigningConfigCommandOutput | CreateEventSourceMappingCommandOutput | CreateFunctionCommandOutput | CreateFunctionUrlConfigCommandOutput | DeleteAliasCommandOutput | DeleteCodeSigningConfigCommandOutput | DeleteEventSourceMappingCommandOutput | DeleteFunctionCodeSigningConfigCommandOutput | DeleteFunctionCommandOutput | DeleteFunctionConcurrencyCommandOutput | DeleteFunctionEventInvokeConfigCommandOutput | DeleteFunctionUrlConfigCommandOutput | DeleteLayerVersionCommandOutput | DeleteProvisionedConcurrencyConfigCommandOutput | DeleteResourcePolicyCommandOutput | GetAccountSettingsCommandOutput | GetAliasCommandOutput | GetCodeSigningConfigCommandOutput | GetEventSourceMappingCommandOutput | GetFunctionCodeSigningConfigCommandOutput | GetFunctionCommandOutput | GetFunctionConcurrencyCommandOutput | GetFunctionConfigurationCommandOutput | GetFunctionEventInvokeConfigCommandOutput | GetFunctionRecursionConfigCommandOutput | GetFunctionUrlConfigCommandOutput | GetLayerVersionByArnCommandOutput | GetLayerVersionCommandOutput | GetLayerVersionPolicyCommandOutput | GetPolicyCommandOutput | GetProvisionedConcurrencyConfigCommandOutput | GetPublicAccessBlockConfigCommandOutput | GetResourcePolicyCommandOutput | GetRuntimeManagementConfigCommandOutput | InvokeAsyncCommandOutput | InvokeCommandOutput | InvokeWithResponseStreamCommandOutput | ListAliasesCommandOutput | ListCodeSigningConfigsCommandOutput | ListEventSourceMappingsCommandOutput | ListFunctionEventInvokeConfigsCommandOutput | ListFunctionUrlConfigsCommandOutput | ListFunctionsByCodeSigningConfigCommandOutput | ListFunctionsCommandOutput | ListLayerVersionsCommandOutput | ListLayersCommandOutput | ListProvisionedConcurrencyConfigsCommandOutput | ListTagsCommandOutput | ListVersionsByFunctionCommandOutput | PublishLayerVersionCommandOutput | PublishVersionCommandOutput | PutFunctionCodeSigningConfigCommandOutput | PutFunctionConcurrencyCommandOutput | PutFunctionEventInvokeConfigCommandOutput | PutFunctionRecursionConfigCommandOutput | PutProvisionedConcurrencyConfigCommandOutput | PutPublicAccessBlockConfigCommandOutput | PutResourcePolicyCommandOutput | PutRuntimeManagementConfigCommandOutput | RemoveLayerVersionPermissionCommandOutput | RemovePermissionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateCodeSigningConfigCommandOutput | UpdateEventSourceMappingCommandOutput | UpdateFunctionCodeCommandOutput | UpdateFunctionConfigurationCommandOutput | UpdateFunctionEventInvokeConfigCommandOutput | UpdateFunctionUrlConfigCommandOutput;
export type ServiceOutputTypes = AddLayerVersionPermissionCommandOutput | AddPermissionCommandOutput | CreateAliasCommandOutput | CreateCodeSigningConfigCommandOutput | CreateEventSourceMappingCommandOutput | CreateFunctionCommandOutput | CreateFunctionUrlConfigCommandOutput | DeleteAliasCommandOutput | DeleteCodeSigningConfigCommandOutput | DeleteEventSourceMappingCommandOutput | DeleteFunctionCodeSigningConfigCommandOutput | DeleteFunctionCommandOutput | DeleteFunctionConcurrencyCommandOutput | DeleteFunctionEventInvokeConfigCommandOutput | DeleteFunctionUrlConfigCommandOutput | DeleteLayerVersionCommandOutput | DeleteProvisionedConcurrencyConfigCommandOutput | GetAccountSettingsCommandOutput | GetAliasCommandOutput | GetCodeSigningConfigCommandOutput | GetEventSourceMappingCommandOutput | GetFunctionCodeSigningConfigCommandOutput | GetFunctionCommandOutput | GetFunctionConcurrencyCommandOutput | GetFunctionConfigurationCommandOutput | GetFunctionEventInvokeConfigCommandOutput | GetFunctionRecursionConfigCommandOutput | GetFunctionUrlConfigCommandOutput | GetLayerVersionByArnCommandOutput | GetLayerVersionCommandOutput | GetLayerVersionPolicyCommandOutput | GetPolicyCommandOutput | GetProvisionedConcurrencyConfigCommandOutput | GetRuntimeManagementConfigCommandOutput | InvokeAsyncCommandOutput | InvokeCommandOutput | InvokeWithResponseStreamCommandOutput | ListAliasesCommandOutput | ListCodeSigningConfigsCommandOutput | ListEventSourceMappingsCommandOutput | ListFunctionEventInvokeConfigsCommandOutput | ListFunctionUrlConfigsCommandOutput | ListFunctionsByCodeSigningConfigCommandOutput | ListFunctionsCommandOutput | ListLayerVersionsCommandOutput | ListLayersCommandOutput | ListProvisionedConcurrencyConfigsCommandOutput | ListTagsCommandOutput | ListVersionsByFunctionCommandOutput | PublishLayerVersionCommandOutput | PublishVersionCommandOutput | PutFunctionCodeSigningConfigCommandOutput | PutFunctionConcurrencyCommandOutput | PutFunctionEventInvokeConfigCommandOutput | PutFunctionRecursionConfigCommandOutput | PutProvisionedConcurrencyConfigCommandOutput | PutRuntimeManagementConfigCommandOutput | RemoveLayerVersionPermissionCommandOutput | RemovePermissionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateCodeSigningConfigCommandOutput | UpdateEventSourceMappingCommandOutput | UpdateFunctionCodeCommandOutput | UpdateFunctionConfigurationCommandOutput | UpdateFunctionEventInvokeConfigCommandOutput | UpdateFunctionUrlConfigCommandOutput;
/**

@@ -100,0 +95,0 @@ * @public

@@ -20,3 +20,2 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";

import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "../commands/DeleteProvisionedConcurrencyConfigCommand";
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "../commands/GetAccountSettingsCommand";

@@ -38,4 +37,2 @@ import { GetAliasCommandInput, GetAliasCommandOutput } from "../commands/GetAliasCommand";

import { GetProvisionedConcurrencyConfigCommandInput, GetProvisionedConcurrencyConfigCommandOutput } from "../commands/GetProvisionedConcurrencyConfigCommand";
import { GetPublicAccessBlockConfigCommandInput, GetPublicAccessBlockConfigCommandOutput } from "../commands/GetPublicAccessBlockConfigCommand";
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "../commands/GetResourcePolicyCommand";
import { GetRuntimeManagementConfigCommandInput, GetRuntimeManagementConfigCommandOutput } from "../commands/GetRuntimeManagementConfigCommand";

@@ -64,4 +61,2 @@ import { InvokeAsyncCommandInput, InvokeAsyncCommandOutput } from "../commands/InvokeAsyncCommand";

import { PutProvisionedConcurrencyConfigCommandInput, PutProvisionedConcurrencyConfigCommandOutput } from "../commands/PutProvisionedConcurrencyConfigCommand";
import { PutPublicAccessBlockConfigCommandInput, PutPublicAccessBlockConfigCommandOutput } from "../commands/PutPublicAccessBlockConfigCommand";
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
import { PutRuntimeManagementConfigCommandInput, PutRuntimeManagementConfigCommandOutput } from "../commands/PutRuntimeManagementConfigCommand";

@@ -148,6 +143,2 @@ import { RemoveLayerVersionPermissionCommandInput, RemoveLayerVersionPermissionCommandOutput } from "../commands/RemoveLayerVersionPermissionCommand";

/**
* serializeAws_restJson1DeleteResourcePolicyCommand
*/
export declare const se_DeleteResourcePolicyCommand: (input: DeleteResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
/**
* serializeAws_restJson1GetAccountSettingsCommand

@@ -217,10 +208,2 @@ */

/**
* serializeAws_restJson1GetPublicAccessBlockConfigCommand
*/
export declare const se_GetPublicAccessBlockConfigCommand: (input: GetPublicAccessBlockConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
/**
* serializeAws_restJson1GetResourcePolicyCommand
*/
export declare const se_GetResourcePolicyCommand: (input: GetResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
/**
* serializeAws_restJson1GetRuntimeManagementConfigCommand

@@ -318,10 +301,2 @@ */

/**
* serializeAws_restJson1PutPublicAccessBlockConfigCommand
*/
export declare const se_PutPublicAccessBlockConfigCommand: (input: PutPublicAccessBlockConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
/**
* serializeAws_restJson1PutResourcePolicyCommand
*/
export declare const se_PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
/**
* serializeAws_restJson1PutRuntimeManagementConfigCommand

@@ -443,6 +418,2 @@ */

/**
* deserializeAws_restJson1DeleteResourcePolicyCommand
*/
export declare const de_DeleteResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourcePolicyCommandOutput>;
/**
* deserializeAws_restJson1GetAccountSettingsCommand

@@ -512,10 +483,2 @@ */

/**
* deserializeAws_restJson1GetPublicAccessBlockConfigCommand
*/
export declare const de_GetPublicAccessBlockConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPublicAccessBlockConfigCommandOutput>;
/**
* deserializeAws_restJson1GetResourcePolicyCommand
*/
export declare const de_GetResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcePolicyCommandOutput>;
/**
* deserializeAws_restJson1GetRuntimeManagementConfigCommand

@@ -613,10 +576,2 @@ */

/**
* deserializeAws_restJson1PutPublicAccessBlockConfigCommand
*/
export declare const de_PutPublicAccessBlockConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPublicAccessBlockConfigCommandOutput>;
/**
* deserializeAws_restJson1PutResourcePolicyCommand
*/
export declare const de_PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
/**
* deserializeAws_restJson1PutRuntimeManagementConfigCommand

@@ -623,0 +578,0 @@ */

@@ -18,3 +18,2 @@ export * from "./AddLayerVersionPermissionCommand";

export * from "./DeleteProvisionedConcurrencyConfigCommand";
export * from "./DeleteResourcePolicyCommand";
export * from "./GetAccountSettingsCommand";

@@ -36,4 +35,2 @@ export * from "./GetAliasCommand";

export * from "./GetProvisionedConcurrencyConfigCommand";
export * from "./GetPublicAccessBlockConfigCommand";
export * from "./GetResourcePolicyCommand";
export * from "./GetRuntimeManagementConfigCommand";

@@ -62,4 +59,2 @@ export * from "./InvokeAsyncCommand";

export * from "./PutProvisionedConcurrencyConfigCommand";
export * from "./PutPublicAccessBlockConfigCommand";
export * from "./PutResourcePolicyCommand";
export * from "./PutRuntimeManagementConfigCommand";

@@ -66,0 +61,0 @@ export * from "./RemoveLayerVersionPermissionCommand";

@@ -71,6 +71,2 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";

import {
DeleteResourcePolicyCommandInput,
DeleteResourcePolicyCommandOutput,
} from "./commands/DeleteResourcePolicyCommand";
import {
GetAccountSettingsCommandInput,

@@ -140,10 +136,2 @@ GetAccountSettingsCommandOutput,

import {
GetPublicAccessBlockConfigCommandInput,
GetPublicAccessBlockConfigCommandOutput,
} from "./commands/GetPublicAccessBlockConfigCommand";
import {
GetResourcePolicyCommandInput,
GetResourcePolicyCommandOutput,
} from "./commands/GetResourcePolicyCommand";
import {
GetRuntimeManagementConfigCommandInput,

@@ -241,10 +229,2 @@ GetRuntimeManagementConfigCommandOutput,

import {
PutPublicAccessBlockConfigCommandInput,
PutPublicAccessBlockConfigCommandOutput,
} from "./commands/PutPublicAccessBlockConfigCommand";
import {
PutResourcePolicyCommandInput,
PutResourcePolicyCommandOutput,
} from "./commands/PutResourcePolicyCommand";
import {
PutRuntimeManagementConfigCommandInput,

@@ -526,15 +506,2 @@ PutRuntimeManagementConfigCommandOutput,

): void;
deleteResourcePolicy(
args: DeleteResourcePolicyCommandInput,
options?: __HttpHandlerOptions
): Promise<DeleteResourcePolicyCommandOutput>;
deleteResourcePolicy(
args: DeleteResourcePolicyCommandInput,
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
): void;
deleteResourcePolicy(
args: DeleteResourcePolicyCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
): void;
getAccountSettings(): Promise<GetAccountSettingsCommandOutput>;

@@ -749,28 +716,2 @@ getAccountSettings(

): void;
getPublicAccessBlockConfig(
args: GetPublicAccessBlockConfigCommandInput,
options?: __HttpHandlerOptions
): Promise<GetPublicAccessBlockConfigCommandOutput>;
getPublicAccessBlockConfig(
args: GetPublicAccessBlockConfigCommandInput,
cb: (err: any, data?: GetPublicAccessBlockConfigCommandOutput) => void
): void;
getPublicAccessBlockConfig(
args: GetPublicAccessBlockConfigCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: GetPublicAccessBlockConfigCommandOutput) => void
): void;
getResourcePolicy(
args: GetResourcePolicyCommandInput,
options?: __HttpHandlerOptions
): Promise<GetResourcePolicyCommandOutput>;
getResourcePolicy(
args: GetResourcePolicyCommandInput,
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
): void;
getResourcePolicy(
args: GetResourcePolicyCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
): void;
getRuntimeManagementConfig(

@@ -1085,28 +1026,2 @@ args: GetRuntimeManagementConfigCommandInput,

): void;
putPublicAccessBlockConfig(
args: PutPublicAccessBlockConfigCommandInput,
options?: __HttpHandlerOptions
): Promise<PutPublicAccessBlockConfigCommandOutput>;
putPublicAccessBlockConfig(
args: PutPublicAccessBlockConfigCommandInput,
cb: (err: any, data?: PutPublicAccessBlockConfigCommandOutput) => void
): void;
putPublicAccessBlockConfig(
args: PutPublicAccessBlockConfigCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: PutPublicAccessBlockConfigCommandOutput) => void
): void;
putResourcePolicy(
args: PutResourcePolicyCommandInput,
options?: __HttpHandlerOptions
): Promise<PutResourcePolicyCommandOutput>;
putResourcePolicy(
args: PutResourcePolicyCommandInput,
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
): void;
putResourcePolicy(
args: PutResourcePolicyCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
): void;
putRuntimeManagementConfig(

@@ -1113,0 +1028,0 @@ args: PutRuntimeManagementConfigCommandInput,

@@ -122,6 +122,2 @@ import {

import {
DeleteResourcePolicyCommandInput,
DeleteResourcePolicyCommandOutput,
} from "./commands/DeleteResourcePolicyCommand";
import {
GetAccountSettingsCommandInput,

@@ -191,10 +187,2 @@ GetAccountSettingsCommandOutput,

import {
GetPublicAccessBlockConfigCommandInput,
GetPublicAccessBlockConfigCommandOutput,
} from "./commands/GetPublicAccessBlockConfigCommand";
import {
GetResourcePolicyCommandInput,
GetResourcePolicyCommandOutput,
} from "./commands/GetResourcePolicyCommand";
import {
GetRuntimeManagementConfigCommandInput,

@@ -292,10 +280,2 @@ GetRuntimeManagementConfigCommandOutput,

import {
PutPublicAccessBlockConfigCommandInput,
PutPublicAccessBlockConfigCommandOutput,
} from "./commands/PutPublicAccessBlockConfigCommand";
import {
PutResourcePolicyCommandInput,
PutResourcePolicyCommandOutput,
} from "./commands/PutResourcePolicyCommand";
import {
PutRuntimeManagementConfigCommandInput,

@@ -373,3 +353,2 @@ PutRuntimeManagementConfigCommandOutput,

| DeleteProvisionedConcurrencyConfigCommandInput
| DeleteResourcePolicyCommandInput
| GetAccountSettingsCommandInput

@@ -391,4 +370,2 @@ | GetAliasCommandInput

| GetProvisionedConcurrencyConfigCommandInput
| GetPublicAccessBlockConfigCommandInput
| GetResourcePolicyCommandInput
| GetRuntimeManagementConfigCommandInput

@@ -417,4 +394,2 @@ | InvokeAsyncCommandInput

| PutProvisionedConcurrencyConfigCommandInput
| PutPublicAccessBlockConfigCommandInput
| PutResourcePolicyCommandInput
| PutRuntimeManagementConfigCommandInput

@@ -450,3 +425,2 @@ | RemoveLayerVersionPermissionCommandInput

| DeleteProvisionedConcurrencyConfigCommandOutput
| DeleteResourcePolicyCommandOutput
| GetAccountSettingsCommandOutput

@@ -468,4 +442,2 @@ | GetAliasCommandOutput

| GetProvisionedConcurrencyConfigCommandOutput
| GetPublicAccessBlockConfigCommandOutput
| GetResourcePolicyCommandOutput
| GetRuntimeManagementConfigCommandOutput

@@ -494,4 +466,2 @@ | InvokeAsyncCommandOutput

| PutProvisionedConcurrencyConfigCommandOutput
| PutPublicAccessBlockConfigCommandOutput
| PutResourcePolicyCommandOutput
| PutRuntimeManagementConfigCommandOutput

@@ -498,0 +468,0 @@ | RemoveLayerVersionPermissionCommandOutput

@@ -118,11 +118,2 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";

}
export declare class PublicPolicyException extends __BaseException {
readonly name: "PublicPolicyException";
readonly $fault: "client";
Type?: string;
Message?: string;
constructor(
opts: __ExceptionOptionType<PublicPolicyException, __BaseException>
);
}
export interface AliasRoutingConfiguration {

@@ -729,6 +720,2 @@ AdditionalVersionWeights?: Record<string, number>;

}
export interface DeleteResourcePolicyRequest {
ResourceArn: string | undefined;
RevisionId?: string;
}
export interface GetAccountSettingsRequest {}

@@ -894,19 +881,2 @@ export interface GetAccountSettingsResponse {

}
export interface GetPublicAccessBlockConfigRequest {
ResourceArn: string | undefined;
}
export interface PublicAccessBlockConfig {
BlockPublicPolicy?: boolean;
RestrictPublicResource?: boolean;
}
export interface GetPublicAccessBlockConfigResponse {
PublicAccessBlockConfig?: PublicAccessBlockConfig;
}
export interface GetResourcePolicyRequest {
ResourceArn: string | undefined;
}
export interface GetResourcePolicyResponse {
Policy?: string;
RevisionId?: string;
}
export interface GetRuntimeManagementConfigRequest {

@@ -1461,18 +1431,2 @@ FunctionName: string | undefined;

}
export interface PutPublicAccessBlockConfigRequest {
ResourceArn: string | undefined;
PublicAccessBlockConfig: PublicAccessBlockConfig | undefined;
}
export interface PutPublicAccessBlockConfigResponse {
PublicAccessBlockConfig?: PublicAccessBlockConfig;
}
export interface PutResourcePolicyRequest {
ResourceArn: string | undefined;
Policy: string | undefined;
RevisionId?: string;
}
export interface PutResourcePolicyResponse {
Policy?: string;
RevisionId?: string;
}
export interface PutRuntimeManagementConfigRequest {

@@ -1479,0 +1433,0 @@ FunctionName: string | undefined;

@@ -78,6 +78,2 @@ import {

import {
DeleteResourcePolicyCommandInput,
DeleteResourcePolicyCommandOutput,
} from "../commands/DeleteResourcePolicyCommand";
import {
GetAccountSettingsCommandInput,

@@ -147,10 +143,2 @@ GetAccountSettingsCommandOutput,

import {
GetPublicAccessBlockConfigCommandInput,
GetPublicAccessBlockConfigCommandOutput,
} from "../commands/GetPublicAccessBlockConfigCommand";
import {
GetResourcePolicyCommandInput,
GetResourcePolicyCommandOutput,
} from "../commands/GetResourcePolicyCommand";
import {
GetRuntimeManagementConfigCommandInput,

@@ -248,10 +236,2 @@ GetRuntimeManagementConfigCommandOutput,

import {
PutPublicAccessBlockConfigCommandInput,
PutPublicAccessBlockConfigCommandOutput,
} from "../commands/PutPublicAccessBlockConfigCommand";
import {
PutResourcePolicyCommandInput,
PutResourcePolicyCommandOutput,
} from "../commands/PutResourcePolicyCommand";
import {
PutRuntimeManagementConfigCommandInput,

@@ -372,6 +352,2 @@ PutRuntimeManagementConfigCommandOutput,

) => Promise<__HttpRequest>;
export declare const se_DeleteResourcePolicyCommand: (
input: DeleteResourcePolicyCommandInput,
context: __SerdeContext
) => Promise<__HttpRequest>;
export declare const se_GetAccountSettingsCommand: (

@@ -441,10 +417,2 @@ input: GetAccountSettingsCommandInput,

) => Promise<__HttpRequest>;
export declare const se_GetPublicAccessBlockConfigCommand: (
input: GetPublicAccessBlockConfigCommandInput,
context: __SerdeContext
) => Promise<__HttpRequest>;
export declare const se_GetResourcePolicyCommand: (
input: GetResourcePolicyCommandInput,
context: __SerdeContext
) => Promise<__HttpRequest>;
export declare const se_GetRuntimeManagementConfigCommand: (

@@ -542,10 +510,2 @@ input: GetRuntimeManagementConfigCommandInput,

) => Promise<__HttpRequest>;
export declare const se_PutPublicAccessBlockConfigCommand: (
input: PutPublicAccessBlockConfigCommandInput,
context: __SerdeContext
) => Promise<__HttpRequest>;
export declare const se_PutResourcePolicyCommand: (
input: PutResourcePolicyCommandInput,
context: __SerdeContext
) => Promise<__HttpRequest>;
export declare const se_PutRuntimeManagementConfigCommand: (

@@ -667,6 +627,2 @@ input: PutRuntimeManagementConfigCommandInput,

) => Promise<DeleteProvisionedConcurrencyConfigCommandOutput>;
export declare const de_DeleteResourcePolicyCommand: (
output: __HttpResponse,
context: __SerdeContext
) => Promise<DeleteResourcePolicyCommandOutput>;
export declare const de_GetAccountSettingsCommand: (

@@ -736,10 +692,2 @@ output: __HttpResponse,

) => Promise<GetProvisionedConcurrencyConfigCommandOutput>;
export declare const de_GetPublicAccessBlockConfigCommand: (
output: __HttpResponse,
context: __SerdeContext
) => Promise<GetPublicAccessBlockConfigCommandOutput>;
export declare const de_GetResourcePolicyCommand: (
output: __HttpResponse,
context: __SerdeContext
) => Promise<GetResourcePolicyCommandOutput>;
export declare const de_GetRuntimeManagementConfigCommand: (

@@ -837,10 +785,2 @@ output: __HttpResponse,

) => Promise<PutProvisionedConcurrencyConfigCommandOutput>;
export declare const de_PutPublicAccessBlockConfigCommand: (
output: __HttpResponse,
context: __SerdeContext
) => Promise<PutPublicAccessBlockConfigCommandOutput>;
export declare const de_PutResourcePolicyCommand: (
output: __HttpResponse,
context: __SerdeContext
) => Promise<PutResourcePolicyCommandOutput>;
export declare const de_PutRuntimeManagementConfigCommand: (

@@ -847,0 +787,0 @@ output: __HttpResponse,

{
"name": "@aws-sdk/client-lambda",
"description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
"version": "3.658.1",
"version": "3.659.0",
"scripts": {

@@ -6,0 +6,0 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

@@ -409,10 +409,2 @@ <!-- generated file, do not edit directly -->

<summary>
DeleteResourcePolicy
</summary>
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/DeleteResourcePolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/DeleteResourcePolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/DeleteResourcePolicyCommandOutput/)
</details>
<details>
<summary>
GetAccountSettings

@@ -546,18 +538,2 @@ </summary>

<summary>
GetPublicAccessBlockConfig
</summary>
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetPublicAccessBlockConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetPublicAccessBlockConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetPublicAccessBlockConfigCommandOutput/)
</details>
<details>
<summary>
GetResourcePolicy
</summary>
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetResourcePolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetResourcePolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetResourcePolicyCommandOutput/)
</details>
<details>
<summary>
GetRuntimeManagementConfig

@@ -747,18 +723,2 @@ </summary>

<summary>
PutPublicAccessBlockConfig
</summary>
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/PutPublicAccessBlockConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/PutPublicAccessBlockConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/PutPublicAccessBlockConfigCommandOutput/)
</details>
<details>
<summary>
PutResourcePolicy
</summary>
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/PutResourcePolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/PutResourcePolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/PutResourcePolicyCommandOutput/)
</details>
<details>
<summary>
PutRuntimeManagementConfig

@@ -765,0 +725,0 @@ </summary>

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc