@effect-aws/client-lambda 1.1.1 → 1.2.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/CHANGELOG.md +6 -0
- package/lib/Errors.d.ts +49 -0
- package/lib/Errors.js +29 -0
- package/lib/LambdaClientInstanceConfig.js +16 -6
- package/lib/LambdaService.d.ts +70 -69
- package/lib/LambdaService.js +24 -2
- package/lib/esm/Errors.js +3 -0
- package/lib/esm/LambdaClientInstanceConfig.js +16 -6
- package/lib/esm/LambdaService.js +26 -4
- package/lib/esm/index.js +2 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @effect-aws/client-lambda
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`4b5ee14`](https://github.com/floydspace/effect-aws/commit/4b5ee144d4d2f30e7a841a3cf5ccd7ff87d32132) Thanks [@floydspace](https://github.com/floydspace)! - return proper errors in failure channel in eventbridge and lambda services
|
|
8
|
+
|
|
3
9
|
## 1.1.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/lib/Errors.d.ts
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, ServiceException, SnapStartException, SnapStartNotReadyException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException } from "@aws-sdk/client-lambda";
|
|
2
|
+
import * as Data from "effect/Data";
|
|
3
|
+
export type TaggedException<T extends {
|
|
4
|
+
name: string;
|
|
5
|
+
}> = T & {
|
|
6
|
+
readonly _tag: T["name"];
|
|
7
|
+
};
|
|
8
|
+
export type CodeSigningConfigNotFoundError = TaggedException<CodeSigningConfigNotFoundException>;
|
|
9
|
+
export type CodeStorageExceededError = TaggedException<CodeStorageExceededException>;
|
|
10
|
+
export type CodeVerificationFailedError = TaggedException<CodeVerificationFailedException>;
|
|
11
|
+
export type EC2AccessDeniedError = TaggedException<EC2AccessDeniedException>;
|
|
12
|
+
export type EC2ThrottledError = TaggedException<EC2ThrottledException>;
|
|
13
|
+
export type EC2UnexpectedError = TaggedException<EC2UnexpectedException>;
|
|
14
|
+
export type EFSIOError = TaggedException<EFSIOException>;
|
|
15
|
+
export type EFSMountConnectivityError = TaggedException<EFSMountConnectivityException>;
|
|
16
|
+
export type EFSMountFailureError = TaggedException<EFSMountFailureException>;
|
|
17
|
+
export type EFSMountTimeoutError = TaggedException<EFSMountTimeoutException>;
|
|
18
|
+
export type ENILimitReachedError = TaggedException<ENILimitReachedException>;
|
|
19
|
+
export type InvalidCodeSignatureError = TaggedException<InvalidCodeSignatureException>;
|
|
20
|
+
export type InvalidParameterValueError = TaggedException<InvalidParameterValueException>;
|
|
21
|
+
export type InvalidRequestContentError = TaggedException<InvalidRequestContentException>;
|
|
22
|
+
export type InvalidRuntimeError = TaggedException<InvalidRuntimeException>;
|
|
23
|
+
export type InvalidSecurityGroupIDError = TaggedException<InvalidSecurityGroupIDException>;
|
|
24
|
+
export type InvalidSubnetIDError = TaggedException<InvalidSubnetIDException>;
|
|
25
|
+
export type InvalidZipFileError = TaggedException<InvalidZipFileException>;
|
|
26
|
+
export type KMSAccessDeniedError = TaggedException<KMSAccessDeniedException>;
|
|
27
|
+
export type KMSDisabledError = TaggedException<KMSDisabledException>;
|
|
28
|
+
export type KMSInvalidStateError = TaggedException<KMSInvalidStateException>;
|
|
29
|
+
export type KMSNotFoundError = TaggedException<KMSNotFoundException>;
|
|
30
|
+
export type PolicyLengthExceededError = TaggedException<PolicyLengthExceededException>;
|
|
31
|
+
export type PreconditionFailedError = TaggedException<PreconditionFailedException>;
|
|
32
|
+
export type ProvisionedConcurrencyConfigNotFoundError = TaggedException<ProvisionedConcurrencyConfigNotFoundException>;
|
|
33
|
+
export type RecursiveInvocationError = TaggedException<RecursiveInvocationException>;
|
|
34
|
+
export type RequestTooLargeError = TaggedException<RequestTooLargeException>;
|
|
35
|
+
export type ResourceConflictError = TaggedException<ResourceConflictException>;
|
|
36
|
+
export type ResourceInUseError = TaggedException<ResourceInUseException>;
|
|
37
|
+
export type ResourceNotFoundError = TaggedException<ResourceNotFoundException>;
|
|
38
|
+
export type ResourceNotReadyError = TaggedException<ResourceNotReadyException>;
|
|
39
|
+
export type ServiceError = TaggedException<ServiceException>;
|
|
40
|
+
export type SnapStartError = TaggedException<SnapStartException>;
|
|
41
|
+
export type SnapStartNotReadyError = TaggedException<SnapStartNotReadyException>;
|
|
42
|
+
export type SnapStartTimeoutError = TaggedException<SnapStartTimeoutException>;
|
|
43
|
+
export type SubnetIPAddressLimitReachedError = TaggedException<SubnetIPAddressLimitReachedException>;
|
|
44
|
+
export type TooManyRequestsError = TaggedException<TooManyRequestsException>;
|
|
45
|
+
export type UnsupportedMediaTypeError = TaggedException<UnsupportedMediaTypeException>;
|
|
46
|
+
export type SdkError = TaggedException<Error & {
|
|
47
|
+
name: "SdkError";
|
|
48
|
+
}>;
|
|
49
|
+
export declare const SdkError: Data.Case.Constructor<SdkError, "_tag">;
|
package/lib/Errors.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.SdkError = void 0;
|
|
27
|
+
const Data = __importStar(require("effect/Data"));
|
|
28
|
+
exports.SdkError = Data.tagged("SdkError");
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXJyb3JzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL0Vycm9ycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQXdDQSxrREFBb0M7QUE2RHZCLFFBQUEsUUFBUSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQVcsVUFBVSxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7XG4gIENvZGVTaWduaW5nQ29uZmlnTm90Rm91bmRFeGNlcHRpb24sXG4gIENvZGVTdG9yYWdlRXhjZWVkZWRFeGNlcHRpb24sXG4gIENvZGVWZXJpZmljYXRpb25GYWlsZWRFeGNlcHRpb24sXG4gIEVDMkFjY2Vzc0RlbmllZEV4Y2VwdGlvbixcbiAgRUMyVGhyb3R0bGVkRXhjZXB0aW9uLFxuICBFQzJVbmV4cGVjdGVkRXhjZXB0aW9uLFxuICBFRlNJT0V4Y2VwdGlvbixcbiAgRUZTTW91bnRDb25uZWN0aXZpdHlFeGNlcHRpb24sXG4gIEVGU01vdW50RmFpbHVyZUV4Y2VwdGlvbixcbiAgRUZTTW91bnRUaW1lb3V0RXhjZXB0aW9uLFxuICBFTklMaW1pdFJlYWNoZWRFeGNlcHRpb24sXG4gIEludmFsaWRDb2RlU2lnbmF0dXJlRXhjZXB0aW9uLFxuICBJbnZhbGlkUGFyYW1ldGVyVmFsdWVFeGNlcHRpb24sXG4gIEludmFsaWRSZXF1ZXN0Q29udGVudEV4Y2VwdGlvbixcbiAgSW52YWxpZFJ1bnRpbWVFeGNlcHRpb24sXG4gIEludmFsaWRTZWN1cml0eUdyb3VwSURFeGNlcHRpb24sXG4gIEludmFsaWRTdWJuZXRJREV4Y2VwdGlvbixcbiAgSW52YWxpZFppcEZpbGVFeGNlcHRpb24sXG4gIEtNU0FjY2Vzc0RlbmllZEV4Y2VwdGlvbixcbiAgS01TRGlzYWJsZWRFeGNlcHRpb24sXG4gIEtNU0ludmFsaWRTdGF0ZUV4Y2VwdGlvbixcbiAgS01TTm90Rm91bmRFeGNlcHRpb24sXG4gIFBvbGljeUxlbmd0aEV4Y2VlZGVkRXhjZXB0aW9uLFxuICBQcmVjb25kaXRpb25GYWlsZWRFeGNlcHRpb24sXG4gIFByb3Zpc2lvbmVkQ29uY3VycmVuY3lDb25maWdOb3RGb3VuZEV4Y2VwdGlvbixcbiAgUmVjdXJzaXZlSW52b2NhdGlvbkV4Y2VwdGlvbixcbiAgUmVxdWVzdFRvb0xhcmdlRXhjZXB0aW9uLFxuICBSZXNvdXJjZUNvbmZsaWN0RXhjZXB0aW9uLFxuICBSZXNvdXJjZUluVXNlRXhjZXB0aW9uLFxuICBSZXNvdXJjZU5vdEZvdW5kRXhjZXB0aW9uLFxuICBSZXNvdXJjZU5vdFJlYWR5RXhjZXB0aW9uLFxuICBTZXJ2aWNlRXhjZXB0aW9uLFxuICBTbmFwU3RhcnRFeGNlcHRpb24sXG4gIFNuYXBTdGFydE5vdFJlYWR5RXhjZXB0aW9uLFxuICBTbmFwU3RhcnRUaW1lb3V0RXhjZXB0aW9uLFxuICBTdWJuZXRJUEFkZHJlc3NMaW1pdFJlYWNoZWRFeGNlcHRpb24sXG4gIFRvb01hbnlSZXF1ZXN0c0V4Y2VwdGlvbixcbiAgVW5zdXBwb3J0ZWRNZWRpYVR5cGVFeGNlcHRpb24sXG59IGZyb20gXCJAYXdzLXNkay9jbGllbnQtbGFtYmRhXCI7XG5pbXBvcnQgKiBhcyBEYXRhIGZyb20gXCJlZmZlY3QvRGF0YVwiO1xuXG5leHBvcnQgdHlwZSBUYWdnZWRFeGNlcHRpb248VCBleHRlbmRzIHsgbmFtZTogc3RyaW5nIH0+ID0gVCAmIHtcbiAgcmVhZG9ubHkgX3RhZzogVFtcIm5hbWVcIl07XG59O1xuXG5leHBvcnQgdHlwZSBDb2RlU2lnbmluZ0NvbmZpZ05vdEZvdW5kRXJyb3IgPVxuICBUYWdnZWRFeGNlcHRpb248Q29kZVNpZ25pbmdDb25maWdOb3RGb3VuZEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBDb2RlU3RvcmFnZUV4Y2VlZGVkRXJyb3IgPVxuICBUYWdnZWRFeGNlcHRpb248Q29kZVN0b3JhZ2VFeGNlZWRlZEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBDb2RlVmVyaWZpY2F0aW9uRmFpbGVkRXJyb3IgPVxuICBUYWdnZWRFeGNlcHRpb248Q29kZVZlcmlmaWNhdGlvbkZhaWxlZEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBFQzJBY2Nlc3NEZW5pZWRFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxFQzJBY2Nlc3NEZW5pZWRFeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgRUMyVGhyb3R0bGVkRXJyb3IgPSBUYWdnZWRFeGNlcHRpb248RUMyVGhyb3R0bGVkRXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIEVDMlVuZXhwZWN0ZWRFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxFQzJVbmV4cGVjdGVkRXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIEVGU0lPRXJyb3IgPSBUYWdnZWRFeGNlcHRpb248RUZTSU9FeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgRUZTTW91bnRDb25uZWN0aXZpdHlFcnJvciA9XG4gIFRhZ2dlZEV4Y2VwdGlvbjxFRlNNb3VudENvbm5lY3Rpdml0eUV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBFRlNNb3VudEZhaWx1cmVFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxFRlNNb3VudEZhaWx1cmVFeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgRUZTTW91bnRUaW1lb3V0RXJyb3IgPSBUYWdnZWRFeGNlcHRpb248RUZTTW91bnRUaW1lb3V0RXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIEVOSUxpbWl0UmVhY2hlZEVycm9yID0gVGFnZ2VkRXhjZXB0aW9uPEVOSUxpbWl0UmVhY2hlZEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBJbnZhbGlkQ29kZVNpZ25hdHVyZUVycm9yID1cbiAgVGFnZ2VkRXhjZXB0aW9uPEludmFsaWRDb2RlU2lnbmF0dXJlRXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIEludmFsaWRQYXJhbWV0ZXJWYWx1ZUVycm9yID1cbiAgVGFnZ2VkRXhjZXB0aW9uPEludmFsaWRQYXJhbWV0ZXJWYWx1ZUV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBJbnZhbGlkUmVxdWVzdENvbnRlbnRFcnJvciA9XG4gIFRhZ2dlZEV4Y2VwdGlvbjxJbnZhbGlkUmVxdWVzdENvbnRlbnRFeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgSW52YWxpZFJ1bnRpbWVFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxJbnZhbGlkUnVudGltZUV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBJbnZhbGlkU2VjdXJpdHlHcm91cElERXJyb3IgPVxuICBUYWdnZWRFeGNlcHRpb248SW52YWxpZFNlY3VyaXR5R3JvdXBJREV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBJbnZhbGlkU3VibmV0SURFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxJbnZhbGlkU3VibmV0SURFeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgSW52YWxpZFppcEZpbGVFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxJbnZhbGlkWmlwRmlsZUV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBLTVNBY2Nlc3NEZW5pZWRFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxLTVNBY2Nlc3NEZW5pZWRFeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgS01TRGlzYWJsZWRFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxLTVNEaXNhYmxlZEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBLTVNJbnZhbGlkU3RhdGVFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxLTVNJbnZhbGlkU3RhdGVFeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgS01TTm90Rm91bmRFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxLTVNOb3RGb3VuZEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBQb2xpY3lMZW5ndGhFeGNlZWRlZEVycm9yID1cbiAgVGFnZ2VkRXhjZXB0aW9uPFBvbGljeUxlbmd0aEV4Y2VlZGVkRXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFByZWNvbmRpdGlvbkZhaWxlZEVycm9yID1cbiAgVGFnZ2VkRXhjZXB0aW9uPFByZWNvbmRpdGlvbkZhaWxlZEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBQcm92aXNpb25lZENvbmN1cnJlbmN5Q29uZmlnTm90Rm91bmRFcnJvciA9XG4gIFRhZ2dlZEV4Y2VwdGlvbjxQcm92aXNpb25lZENvbmN1cnJlbmN5Q29uZmlnTm90Rm91bmRFeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgUmVjdXJzaXZlSW52b2NhdGlvbkVycm9yID1cbiAgVGFnZ2VkRXhjZXB0aW9uPFJlY3Vyc2l2ZUludm9jYXRpb25FeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgUmVxdWVzdFRvb0xhcmdlRXJyb3IgPSBUYWdnZWRFeGNlcHRpb248UmVxdWVzdFRvb0xhcmdlRXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFJlc291cmNlQ29uZmxpY3RFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxSZXNvdXJjZUNvbmZsaWN0RXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFJlc291cmNlSW5Vc2VFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxSZXNvdXJjZUluVXNlRXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFJlc291cmNlTm90Rm91bmRFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxSZXNvdXJjZU5vdEZvdW5kRXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFJlc291cmNlTm90UmVhZHlFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxSZXNvdXJjZU5vdFJlYWR5RXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFNlcnZpY2VFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxTZXJ2aWNlRXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFNuYXBTdGFydEVycm9yID0gVGFnZ2VkRXhjZXB0aW9uPFNuYXBTdGFydEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBTbmFwU3RhcnROb3RSZWFkeUVycm9yID1cbiAgVGFnZ2VkRXhjZXB0aW9uPFNuYXBTdGFydE5vdFJlYWR5RXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFNuYXBTdGFydFRpbWVvdXRFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxTbmFwU3RhcnRUaW1lb3V0RXhjZXB0aW9uPjtcbmV4cG9ydCB0eXBlIFN1Ym5ldElQQWRkcmVzc0xpbWl0UmVhY2hlZEVycm9yID1cbiAgVGFnZ2VkRXhjZXB0aW9uPFN1Ym5ldElQQWRkcmVzc0xpbWl0UmVhY2hlZEV4Y2VwdGlvbj47XG5leHBvcnQgdHlwZSBUb29NYW55UmVxdWVzdHNFcnJvciA9IFRhZ2dlZEV4Y2VwdGlvbjxUb29NYW55UmVxdWVzdHNFeGNlcHRpb24+O1xuZXhwb3J0IHR5cGUgVW5zdXBwb3J0ZWRNZWRpYVR5cGVFcnJvciA9XG4gIFRhZ2dlZEV4Y2VwdGlvbjxVbnN1cHBvcnRlZE1lZGlhVHlwZUV4Y2VwdGlvbj47XG5cbmV4cG9ydCB0eXBlIFNka0Vycm9yID0gVGFnZ2VkRXhjZXB0aW9uPEVycm9yICYgeyBuYW1lOiBcIlNka0Vycm9yXCIgfT47XG5leHBvcnQgY29uc3QgU2RrRXJyb3IgPSBEYXRhLnRhZ2dlZDxTZGtFcnJvcj4oXCJTZGtFcnJvclwiKTtcbiJdfQ==
|
|
@@ -44,11 +44,21 @@ exports.makeDefaultLambdaClientInstanceConfig = Effect.gen(function* (_) {
|
|
|
44
44
|
const runSync = Runtime.runSync(runtime);
|
|
45
45
|
return {
|
|
46
46
|
logger: {
|
|
47
|
-
info
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
47
|
+
info(m) {
|
|
48
|
+
Effect.logInfo(m).pipe(runSync);
|
|
49
|
+
},
|
|
50
|
+
warn(m) {
|
|
51
|
+
Effect.logWarning(m).pipe(runSync);
|
|
52
|
+
},
|
|
53
|
+
error(m) {
|
|
54
|
+
Effect.logError(m).pipe(runSync);
|
|
55
|
+
},
|
|
56
|
+
debug(m) {
|
|
57
|
+
Effect.logDebug(m).pipe(runSync);
|
|
58
|
+
},
|
|
59
|
+
trace(m) {
|
|
60
|
+
Effect.logTrace(m).pipe(runSync);
|
|
61
|
+
},
|
|
52
62
|
},
|
|
53
63
|
};
|
|
54
64
|
});
|
|
@@ -57,4 +67,4 @@ exports.makeDefaultLambdaClientInstanceConfig = Effect.gen(function* (_) {
|
|
|
57
67
|
* @category layers
|
|
58
68
|
*/
|
|
59
69
|
exports.DefaultLambdaClientConfigLayer = Layer.effect(LambdaClientInstanceConfig, exports.makeDefaultLambdaClientInstanceConfig);
|
|
60
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
70
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTGFtYmRhQ2xpZW50SW5zdGFuY2VDb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvTGFtYmRhQ2xpZW50SW5zdGFuY2VDb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFJQSx3REFBMEM7QUFDMUMsc0RBQXdDO0FBQ3hDLG9EQUFzQztBQUN0Qyx3REFBMEM7QUFFMUM7OztHQUdHO0FBQ0gsTUFBYSwwQkFBMkIsU0FBUSxPQUFPLENBQUMsR0FBRyxDQUN6RCxzREFBc0QsQ0FDdkQsRUFBa0Q7Q0FBRztBQUZ0RCxnRUFFc0Q7QUFFdEQ7OztHQUdHO0FBQ1UsUUFBQSxxQ0FBcUMsR0FDaEQsTUFBTSxDQUFDLEdBQUcsQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDO0lBQ3JCLE1BQU0sT0FBTyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsT0FBTyxFQUFTLENBQUMsQ0FBQztJQUNsRCxNQUFNLE9BQU8sR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBRXpDLE9BQU87UUFDTCxNQUFNLEVBQUU7WUFDTixJQUFJLENBQUMsQ0FBQztnQkFDSixNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUNsQyxDQUFDO1lBQ0QsSUFBSSxDQUFDLENBQUM7Z0JBQ0osTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDckMsQ0FBQztZQUNELEtBQUssQ0FBQyxDQUFDO2dCQUNMLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQ25DLENBQUM7WUFDRCxLQUFLLENBQUMsQ0FBQztnQkFDTCxNQUFNLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUNuQyxDQUFDO1lBQ0QsS0FBSyxDQUFDLENBQUM7Z0JBQ0wsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDbkMsQ0FBQztTQUNGO0tBQ0YsQ0FBQztBQUNKLENBQUMsQ0FBQyxDQUFDO0FBRUw7OztHQUdHO0FBQ1UsUUFBQSw4QkFBOEIsR0FBRyxLQUFLLENBQUMsTUFBTSxDQUN4RCwwQkFBMEIsRUFDMUIsNkNBQXFDLENBQ3RDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBzaW5jZSAxLjAuMFxuICovXG5pbXBvcnQgdHlwZSB7IExhbWJkYUNsaWVudENvbmZpZyB9IGZyb20gXCJAYXdzLXNkay9jbGllbnQtbGFtYmRhXCI7XG5pbXBvcnQgKiBhcyBDb250ZXh0IGZyb20gXCJlZmZlY3QvQ29udGV4dFwiO1xuaW1wb3J0ICogYXMgRWZmZWN0IGZyb20gXCJlZmZlY3QvRWZmZWN0XCI7XG5pbXBvcnQgKiBhcyBMYXllciBmcm9tIFwiZWZmZWN0L0xheWVyXCI7XG5pbXBvcnQgKiBhcyBSdW50aW1lIGZyb20gXCJlZmZlY3QvUnVudGltZVwiO1xuXG4vKipcbiAqIEBzaW5jZSAxLjAuMFxuICogQGNhdGVnb3J5IHRhZ3NcbiAqL1xuZXhwb3J0IGNsYXNzIExhbWJkYUNsaWVudEluc3RhbmNlQ29uZmlnIGV4dGVuZHMgQ29udGV4dC5UYWcoXG4gIFwiQGVmZmVjdC1hd3MvY2xpZW50LWxhbWJkYS9MYW1iZGFDbGllbnRJbnN0YW5jZUNvbmZpZ1wiLFxuKTxMYW1iZGFDbGllbnRJbnN0YW5jZUNvbmZpZywgTGFtYmRhQ2xpZW50Q29uZmlnPigpIHt9XG5cbi8qKlxuICogQHNpbmNlIDEuMC4wXG4gKiBAY2F0ZWdvcnkgY29uc3RydWN0b3JzXG4gKi9cbmV4cG9ydCBjb25zdCBtYWtlRGVmYXVsdExhbWJkYUNsaWVudEluc3RhbmNlQ29uZmlnOiBFZmZlY3QuRWZmZWN0PExhbWJkYUNsaWVudENvbmZpZz4gPVxuICBFZmZlY3QuZ2VuKGZ1bmN0aW9uKiAoXykge1xuICAgIGNvbnN0IHJ1bnRpbWUgPSB5aWVsZCogXyhFZmZlY3QucnVudGltZTxuZXZlcj4oKSk7XG4gICAgY29uc3QgcnVuU3luYyA9IFJ1bnRpbWUucnVuU3luYyhydW50aW1lKTtcblxuICAgIHJldHVybiB7XG4gICAgICBsb2dnZXI6IHtcbiAgICAgICAgaW5mbyhtKSB7XG4gICAgICAgICAgRWZmZWN0LmxvZ0luZm8obSkucGlwZShydW5TeW5jKTtcbiAgICAgICAgfSxcbiAgICAgICAgd2FybihtKSB7XG4gICAgICAgICAgRWZmZWN0LmxvZ1dhcm5pbmcobSkucGlwZShydW5TeW5jKTtcbiAgICAgICAgfSxcbiAgICAgICAgZXJyb3IobSkge1xuICAgICAgICAgIEVmZmVjdC5sb2dFcnJvcihtKS5waXBlKHJ1blN5bmMpO1xuICAgICAgICB9LFxuICAgICAgICBkZWJ1ZyhtKSB7XG4gICAgICAgICAgRWZmZWN0LmxvZ0RlYnVnKG0pLnBpcGUocnVuU3luYyk7XG4gICAgICAgIH0sXG4gICAgICAgIHRyYWNlKG0pIHtcbiAgICAgICAgICBFZmZlY3QubG9nVHJhY2UobSkucGlwZShydW5TeW5jKTtcbiAgICAgICAgfSxcbiAgICAgIH0sXG4gICAgfTtcbiAgfSk7XG5cbi8qKlxuICogQHNpbmNlIDEuMC4wXG4gKiBAY2F0ZWdvcnkgbGF5ZXJzXG4gKi9cbmV4cG9ydCBjb25zdCBEZWZhdWx0TGFtYmRhQ2xpZW50Q29uZmlnTGF5ZXIgPSBMYXllci5lZmZlY3QoXG4gIExhbWJkYUNsaWVudEluc3RhbmNlQ29uZmlnLFxuICBtYWtlRGVmYXVsdExhbWJkYUNsaWVudEluc3RhbmNlQ29uZmlnLFxuKTtcbiJdfQ==
|
package/lib/LambdaService.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
|
-
import { AddLayerVersionPermissionCommandInput, AddLayerVersionPermissionCommandOutput, AddPermissionCommandInput, AddPermissionCommandOutput, CreateAliasCommandInput, CreateAliasCommandOutput, CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput, CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput, CreateFunctionCommandInput, CreateFunctionCommandOutput, CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput, DeleteAliasCommandInput, DeleteAliasCommandOutput, DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput, DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput,
|
|
5
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
6
|
-
import {
|
|
4
|
+
import { type AddLayerVersionPermissionCommandInput, type AddLayerVersionPermissionCommandOutput, type AddPermissionCommandInput, type AddPermissionCommandOutput, type CreateAliasCommandInput, type CreateAliasCommandOutput, type CreateCodeSigningConfigCommandInput, type CreateCodeSigningConfigCommandOutput, type CreateEventSourceMappingCommandInput, type CreateEventSourceMappingCommandOutput, type CreateFunctionCommandInput, type CreateFunctionCommandOutput, type CreateFunctionUrlConfigCommandInput, type CreateFunctionUrlConfigCommandOutput, type DeleteAliasCommandInput, type DeleteAliasCommandOutput, type DeleteCodeSigningConfigCommandInput, type DeleteCodeSigningConfigCommandOutput, type DeleteEventSourceMappingCommandInput, type DeleteEventSourceMappingCommandOutput, type DeleteFunctionCommandInput, type DeleteFunctionCommandOutput, type DeleteFunctionCodeSigningConfigCommandInput, type DeleteFunctionCodeSigningConfigCommandOutput, type DeleteFunctionConcurrencyCommandInput, type DeleteFunctionConcurrencyCommandOutput, type DeleteFunctionEventInvokeConfigCommandInput, type DeleteFunctionEventInvokeConfigCommandOutput, type DeleteFunctionUrlConfigCommandInput, type DeleteFunctionUrlConfigCommandOutput, type DeleteLayerVersionCommandInput, type DeleteLayerVersionCommandOutput, type DeleteProvisionedConcurrencyConfigCommandInput, type DeleteProvisionedConcurrencyConfigCommandOutput, type GetAccountSettingsCommandInput, type GetAccountSettingsCommandOutput, type GetAliasCommandInput, type GetAliasCommandOutput, type GetCodeSigningConfigCommandInput, type GetCodeSigningConfigCommandOutput, type GetEventSourceMappingCommandInput, type GetEventSourceMappingCommandOutput, type GetFunctionCommandInput, type GetFunctionCommandOutput, type GetFunctionCodeSigningConfigCommandInput, type GetFunctionCodeSigningConfigCommandOutput, type GetFunctionConcurrencyCommandInput, type GetFunctionConcurrencyCommandOutput, type GetFunctionConfigurationCommandInput, type GetFunctionConfigurationCommandOutput, type GetFunctionEventInvokeConfigCommandInput, type GetFunctionEventInvokeConfigCommandOutput, type GetFunctionUrlConfigCommandInput, type GetFunctionUrlConfigCommandOutput, type GetLayerVersionCommandInput, type GetLayerVersionCommandOutput, type GetLayerVersionByArnCommandInput, type GetLayerVersionByArnCommandOutput, type GetLayerVersionPolicyCommandInput, type GetLayerVersionPolicyCommandOutput, type GetPolicyCommandInput, type GetPolicyCommandOutput, type GetProvisionedConcurrencyConfigCommandInput, type GetProvisionedConcurrencyConfigCommandOutput, type GetRuntimeManagementConfigCommandInput, type GetRuntimeManagementConfigCommandOutput, type InvokeCommandInput, type InvokeCommandOutput, type InvokeAsyncCommandInput, type InvokeAsyncCommandOutput, type InvokeWithResponseStreamCommandInput, type InvokeWithResponseStreamCommandOutput, type ListAliasesCommandInput, type ListAliasesCommandOutput, type ListCodeSigningConfigsCommandInput, type ListCodeSigningConfigsCommandOutput, type ListEventSourceMappingsCommandInput, type ListEventSourceMappingsCommandOutput, type ListFunctionEventInvokeConfigsCommandInput, type ListFunctionEventInvokeConfigsCommandOutput, type ListFunctionsCommandInput, type ListFunctionsCommandOutput, type ListFunctionsByCodeSigningConfigCommandInput, type ListFunctionsByCodeSigningConfigCommandOutput, type ListFunctionUrlConfigsCommandInput, type ListFunctionUrlConfigsCommandOutput, type ListLayersCommandInput, type ListLayersCommandOutput, type ListLayerVersionsCommandInput, type ListLayerVersionsCommandOutput, type ListProvisionedConcurrencyConfigsCommandInput, type ListProvisionedConcurrencyConfigsCommandOutput, type ListTagsCommandInput, type ListTagsCommandOutput, type ListVersionsByFunctionCommandInput, type ListVersionsByFunctionCommandOutput, type PublishLayerVersionCommandInput, type PublishLayerVersionCommandOutput, type PublishVersionCommandInput, type PublishVersionCommandOutput, type PutFunctionCodeSigningConfigCommandInput, type PutFunctionCodeSigningConfigCommandOutput, type PutFunctionConcurrencyCommandInput, type PutFunctionConcurrencyCommandOutput, type PutFunctionEventInvokeConfigCommandInput, type PutFunctionEventInvokeConfigCommandOutput, type PutProvisionedConcurrencyConfigCommandInput, type PutProvisionedConcurrencyConfigCommandOutput, type PutRuntimeManagementConfigCommandInput, type PutRuntimeManagementConfigCommandOutput, type RemoveLayerVersionPermissionCommandInput, type RemoveLayerVersionPermissionCommandOutput, type RemovePermissionCommandInput, type RemovePermissionCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateAliasCommandInput, type UpdateAliasCommandOutput, type UpdateCodeSigningConfigCommandInput, type UpdateCodeSigningConfigCommandOutput, type UpdateEventSourceMappingCommandInput, type UpdateEventSourceMappingCommandOutput, type UpdateFunctionCodeCommandInput, type UpdateFunctionCodeCommandOutput, type UpdateFunctionConfigurationCommandInput, type UpdateFunctionConfigurationCommandOutput, type UpdateFunctionEventInvokeConfigCommandInput, type UpdateFunctionEventInvokeConfigCommandOutput, type UpdateFunctionUrlConfigCommandInput, type UpdateFunctionUrlConfigCommandOutput } from "@aws-sdk/client-lambda";
|
|
5
|
+
import { type HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
6
|
+
import { Context, Effect, Layer } from "effect";
|
|
7
|
+
import { CodeSigningConfigNotFoundError, CodeStorageExceededError, CodeVerificationFailedError, EC2AccessDeniedError, EC2ThrottledError, EC2UnexpectedError, EFSIOError, EFSMountConnectivityError, EFSMountFailureError, EFSMountTimeoutError, ENILimitReachedError, InvalidCodeSignatureError, InvalidParameterValueError, InvalidRequestContentError, InvalidRuntimeError, InvalidSecurityGroupIDError, InvalidSubnetIDError, InvalidZipFileError, KMSAccessDeniedError, KMSDisabledError, KMSInvalidStateError, KMSNotFoundError, PolicyLengthExceededError, PreconditionFailedError, ProvisionedConcurrencyConfigNotFoundError, RecursiveInvocationError, RequestTooLargeError, ResourceConflictError, ResourceInUseError, ResourceNotFoundError, ResourceNotReadyError, ServiceError, SnapStartError, SnapStartNotReadyError, SnapStartTimeoutError, SubnetIPAddressLimitReachedError, TooManyRequestsError, UnsupportedMediaTypeError, SdkError } from "./Errors";
|
|
7
8
|
import { LambdaClientInstance } from "./LambdaClientInstance";
|
|
8
9
|
/**
|
|
9
10
|
* @since 1.0.0
|
|
@@ -14,267 +15,267 @@ export interface LambdaService {
|
|
|
14
15
|
/**
|
|
15
16
|
* @see {@link AddLayerVersionPermissionCommand}
|
|
16
17
|
*/
|
|
17
|
-
addLayerVersionPermission(args: AddLayerVersionPermissionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<AddLayerVersionPermissionCommandOutput,
|
|
18
|
+
addLayerVersionPermission(args: AddLayerVersionPermissionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<AddLayerVersionPermissionCommandOutput, SdkError | InvalidParameterValueError | PolicyLengthExceededError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
18
19
|
/**
|
|
19
20
|
* @see {@link AddPermissionCommand}
|
|
20
21
|
*/
|
|
21
|
-
addPermission(args: AddPermissionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<AddPermissionCommandOutput,
|
|
22
|
+
addPermission(args: AddPermissionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<AddPermissionCommandOutput, SdkError | InvalidParameterValueError | PolicyLengthExceededError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
22
23
|
/**
|
|
23
24
|
* @see {@link CreateAliasCommand}
|
|
24
25
|
*/
|
|
25
|
-
createAlias(args: CreateAliasCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateAliasCommandOutput,
|
|
26
|
+
createAlias(args: CreateAliasCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateAliasCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
26
27
|
/**
|
|
27
28
|
* @see {@link CreateCodeSigningConfigCommand}
|
|
28
29
|
*/
|
|
29
|
-
createCodeSigningConfig(args: CreateCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateCodeSigningConfigCommandOutput,
|
|
30
|
+
createCodeSigningConfig(args: CreateCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ServiceError>;
|
|
30
31
|
/**
|
|
31
32
|
* @see {@link CreateEventSourceMappingCommand}
|
|
32
33
|
*/
|
|
33
|
-
createEventSourceMapping(args: CreateEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateEventSourceMappingCommandOutput,
|
|
34
|
+
createEventSourceMapping(args: CreateEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateEventSourceMappingCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
34
35
|
/**
|
|
35
36
|
* @see {@link CreateFunctionCommand}
|
|
36
37
|
*/
|
|
37
|
-
createFunction(args: CreateFunctionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateFunctionCommandOutput,
|
|
38
|
+
createFunction(args: CreateFunctionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateFunctionCommandOutput, SdkError | CodeSigningConfigNotFoundError | CodeStorageExceededError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
38
39
|
/**
|
|
39
40
|
* @see {@link CreateFunctionUrlConfigCommand}
|
|
40
41
|
*/
|
|
41
|
-
createFunctionUrlConfig(args: CreateFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateFunctionUrlConfigCommandOutput,
|
|
42
|
+
createFunctionUrlConfig(args: CreateFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<CreateFunctionUrlConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
42
43
|
/**
|
|
43
44
|
* @see {@link DeleteAliasCommand}
|
|
44
45
|
*/
|
|
45
|
-
deleteAlias(args: DeleteAliasCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteAliasCommandOutput,
|
|
46
|
+
deleteAlias(args: DeleteAliasCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteAliasCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ServiceError | TooManyRequestsError>;
|
|
46
47
|
/**
|
|
47
48
|
* @see {@link DeleteCodeSigningConfigCommand}
|
|
48
49
|
*/
|
|
49
|
-
deleteCodeSigningConfig(args: DeleteCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteCodeSigningConfigCommandOutput,
|
|
50
|
+
deleteCodeSigningConfig(args: DeleteCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError>;
|
|
50
51
|
/**
|
|
51
52
|
* @see {@link DeleteEventSourceMappingCommand}
|
|
52
53
|
*/
|
|
53
|
-
deleteEventSourceMapping(args: DeleteEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteEventSourceMappingCommandOutput,
|
|
54
|
+
deleteEventSourceMapping(args: DeleteEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteEventSourceMappingCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceInUseError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
54
55
|
/**
|
|
55
56
|
* @see {@link DeleteFunctionCommand}
|
|
56
57
|
*/
|
|
57
|
-
deleteFunction(args: DeleteFunctionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionCommandOutput,
|
|
58
|
+
deleteFunction(args: DeleteFunctionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
58
59
|
/**
|
|
59
60
|
* @see {@link DeleteFunctionCodeSigningConfigCommand}
|
|
60
61
|
*/
|
|
61
|
-
deleteFunctionCodeSigningConfig(args: DeleteFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionCodeSigningConfigCommandOutput,
|
|
62
|
+
deleteFunctionCodeSigningConfig(args: DeleteFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionCodeSigningConfigCommandOutput, SdkError | CodeSigningConfigNotFoundError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
62
63
|
/**
|
|
63
64
|
* @see {@link DeleteFunctionConcurrencyCommand}
|
|
64
65
|
*/
|
|
65
|
-
deleteFunctionConcurrency(args: DeleteFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionConcurrencyCommandOutput,
|
|
66
|
+
deleteFunctionConcurrency(args: DeleteFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionConcurrencyCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
66
67
|
/**
|
|
67
68
|
* @see {@link DeleteFunctionEventInvokeConfigCommand}
|
|
68
69
|
*/
|
|
69
|
-
deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionEventInvokeConfigCommandOutput,
|
|
70
|
+
deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionEventInvokeConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
70
71
|
/**
|
|
71
72
|
* @see {@link DeleteFunctionUrlConfigCommand}
|
|
72
73
|
*/
|
|
73
|
-
deleteFunctionUrlConfig(args: DeleteFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionUrlConfigCommandOutput,
|
|
74
|
+
deleteFunctionUrlConfig(args: DeleteFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteFunctionUrlConfigCommandOutput, SdkError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
74
75
|
/**
|
|
75
76
|
* @see {@link DeleteLayerVersionCommand}
|
|
76
77
|
*/
|
|
77
|
-
deleteLayerVersion(args: DeleteLayerVersionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteLayerVersionCommandOutput,
|
|
78
|
+
deleteLayerVersion(args: DeleteLayerVersionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteLayerVersionCommandOutput, SdkError | ServiceError | TooManyRequestsError>;
|
|
78
79
|
/**
|
|
79
80
|
* @see {@link DeleteProvisionedConcurrencyConfigCommand}
|
|
80
81
|
*/
|
|
81
|
-
deleteProvisionedConcurrencyConfig(args: DeleteProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteProvisionedConcurrencyConfigCommandOutput,
|
|
82
|
+
deleteProvisionedConcurrencyConfig(args: DeleteProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<DeleteProvisionedConcurrencyConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
82
83
|
/**
|
|
83
84
|
* @see {@link GetAccountSettingsCommand}
|
|
84
85
|
*/
|
|
85
|
-
getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetAccountSettingsCommandOutput,
|
|
86
|
+
getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetAccountSettingsCommandOutput, SdkError | ServiceError | TooManyRequestsError>;
|
|
86
87
|
/**
|
|
87
88
|
* @see {@link GetAliasCommand}
|
|
88
89
|
*/
|
|
89
|
-
getAlias(args: GetAliasCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetAliasCommandOutput,
|
|
90
|
+
getAlias(args: GetAliasCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetAliasCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
90
91
|
/**
|
|
91
92
|
* @see {@link GetCodeSigningConfigCommand}
|
|
92
93
|
*/
|
|
93
|
-
getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetCodeSigningConfigCommandOutput,
|
|
94
|
+
getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError>;
|
|
94
95
|
/**
|
|
95
96
|
* @see {@link GetEventSourceMappingCommand}
|
|
96
97
|
*/
|
|
97
|
-
getEventSourceMapping(args: GetEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetEventSourceMappingCommandOutput,
|
|
98
|
+
getEventSourceMapping(args: GetEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetEventSourceMappingCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
98
99
|
/**
|
|
99
100
|
* @see {@link GetFunctionCommand}
|
|
100
101
|
*/
|
|
101
|
-
getFunction(args: GetFunctionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionCommandOutput,
|
|
102
|
+
getFunction(args: GetFunctionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
102
103
|
/**
|
|
103
104
|
* @see {@link GetFunctionCodeSigningConfigCommand}
|
|
104
105
|
*/
|
|
105
|
-
getFunctionCodeSigningConfig(args: GetFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionCodeSigningConfigCommandOutput,
|
|
106
|
+
getFunctionCodeSigningConfig(args: GetFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
106
107
|
/**
|
|
107
108
|
* @see {@link GetFunctionConcurrencyCommand}
|
|
108
109
|
*/
|
|
109
|
-
getFunctionConcurrency(args: GetFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionConcurrencyCommandOutput,
|
|
110
|
+
getFunctionConcurrency(args: GetFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionConcurrencyCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
110
111
|
/**
|
|
111
112
|
* @see {@link GetFunctionConfigurationCommand}
|
|
112
113
|
*/
|
|
113
|
-
getFunctionConfiguration(args: GetFunctionConfigurationCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionConfigurationCommandOutput,
|
|
114
|
+
getFunctionConfiguration(args: GetFunctionConfigurationCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionConfigurationCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
114
115
|
/**
|
|
115
116
|
* @see {@link GetFunctionEventInvokeConfigCommand}
|
|
116
117
|
*/
|
|
117
|
-
getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionEventInvokeConfigCommandOutput,
|
|
118
|
+
getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionEventInvokeConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
118
119
|
/**
|
|
119
120
|
* @see {@link GetFunctionUrlConfigCommand}
|
|
120
121
|
*/
|
|
121
|
-
getFunctionUrlConfig(args: GetFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionUrlConfigCommandOutput,
|
|
122
|
+
getFunctionUrlConfig(args: GetFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetFunctionUrlConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
122
123
|
/**
|
|
123
124
|
* @see {@link GetLayerVersionCommand}
|
|
124
125
|
*/
|
|
125
|
-
getLayerVersion(args: GetLayerVersionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetLayerVersionCommandOutput,
|
|
126
|
+
getLayerVersion(args: GetLayerVersionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetLayerVersionCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
126
127
|
/**
|
|
127
128
|
* @see {@link GetLayerVersionByArnCommand}
|
|
128
129
|
*/
|
|
129
|
-
getLayerVersionByArn(args: GetLayerVersionByArnCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetLayerVersionByArnCommandOutput,
|
|
130
|
+
getLayerVersionByArn(args: GetLayerVersionByArnCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetLayerVersionByArnCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
130
131
|
/**
|
|
131
132
|
* @see {@link GetLayerVersionPolicyCommand}
|
|
132
133
|
*/
|
|
133
|
-
getLayerVersionPolicy(args: GetLayerVersionPolicyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetLayerVersionPolicyCommandOutput,
|
|
134
|
+
getLayerVersionPolicy(args: GetLayerVersionPolicyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetLayerVersionPolicyCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
134
135
|
/**
|
|
135
136
|
* @see {@link GetPolicyCommand}
|
|
136
137
|
*/
|
|
137
|
-
getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetPolicyCommandOutput,
|
|
138
|
+
getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetPolicyCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
138
139
|
/**
|
|
139
140
|
* @see {@link GetProvisionedConcurrencyConfigCommand}
|
|
140
141
|
*/
|
|
141
|
-
getProvisionedConcurrencyConfig(args: GetProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetProvisionedConcurrencyConfigCommandOutput,
|
|
142
|
+
getProvisionedConcurrencyConfig(args: GetProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetProvisionedConcurrencyConfigCommandOutput, SdkError | InvalidParameterValueError | ProvisionedConcurrencyConfigNotFoundError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
142
143
|
/**
|
|
143
144
|
* @see {@link GetRuntimeManagementConfigCommand}
|
|
144
145
|
*/
|
|
145
|
-
getRuntimeManagementConfig(args: GetRuntimeManagementConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetRuntimeManagementConfigCommandOutput,
|
|
146
|
+
getRuntimeManagementConfig(args: GetRuntimeManagementConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<GetRuntimeManagementConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
146
147
|
/**
|
|
147
148
|
* @see {@link InvokeCommand}
|
|
148
149
|
*/
|
|
149
|
-
invoke(args: InvokeCommandInput, options?: __HttpHandlerOptions): Effect.Effect<InvokeCommandOutput,
|
|
150
|
+
invoke(args: InvokeCommandInput, options?: __HttpHandlerOptions): Effect.Effect<InvokeCommandOutput, SdkError | EC2AccessDeniedError | EC2ThrottledError | EC2UnexpectedError | EFSIOError | EFSMountConnectivityError | EFSMountFailureError | EFSMountTimeoutError | ENILimitReachedError | InvalidParameterValueError | InvalidRequestContentError | InvalidRuntimeError | InvalidSecurityGroupIDError | InvalidSubnetIDError | InvalidZipFileError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | RecursiveInvocationError | RequestTooLargeError | ResourceConflictError | ResourceNotFoundError | ResourceNotReadyError | ServiceError | SnapStartError | SnapStartNotReadyError | SnapStartTimeoutError | SubnetIPAddressLimitReachedError | TooManyRequestsError | UnsupportedMediaTypeError>;
|
|
150
151
|
/**
|
|
151
152
|
* @see {@link InvokeAsyncCommand}
|
|
152
153
|
*/
|
|
153
|
-
invokeAsync(args: InvokeAsyncCommandInput, options?: __HttpHandlerOptions): Effect.Effect<InvokeAsyncCommandOutput,
|
|
154
|
+
invokeAsync(args: InvokeAsyncCommandInput, options?: __HttpHandlerOptions): Effect.Effect<InvokeAsyncCommandOutput, SdkError | InvalidRequestContentError | InvalidRuntimeError | ResourceConflictError | ResourceNotFoundError | ServiceError>;
|
|
154
155
|
/**
|
|
155
156
|
* @see {@link InvokeWithResponseStreamCommand}
|
|
156
157
|
*/
|
|
157
|
-
invokeWithResponseStream(args: InvokeWithResponseStreamCommandInput, options?: __HttpHandlerOptions): Effect.Effect<InvokeWithResponseStreamCommandOutput,
|
|
158
|
+
invokeWithResponseStream(args: InvokeWithResponseStreamCommandInput, options?: __HttpHandlerOptions): Effect.Effect<InvokeWithResponseStreamCommandOutput, SdkError | EC2AccessDeniedError | EC2ThrottledError | EC2UnexpectedError | EFSIOError | EFSMountConnectivityError | EFSMountFailureError | EFSMountTimeoutError | ENILimitReachedError | InvalidParameterValueError | InvalidRequestContentError | InvalidRuntimeError | InvalidSecurityGroupIDError | InvalidSubnetIDError | InvalidZipFileError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | RecursiveInvocationError | RequestTooLargeError | ResourceConflictError | ResourceNotFoundError | ResourceNotReadyError | ServiceError | SnapStartError | SnapStartNotReadyError | SnapStartTimeoutError | SubnetIPAddressLimitReachedError | TooManyRequestsError | UnsupportedMediaTypeError>;
|
|
158
159
|
/**
|
|
159
160
|
* @see {@link ListAliasesCommand}
|
|
160
161
|
*/
|
|
161
|
-
listAliases(args: ListAliasesCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListAliasesCommandOutput,
|
|
162
|
+
listAliases(args: ListAliasesCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListAliasesCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
162
163
|
/**
|
|
163
164
|
* @see {@link ListCodeSigningConfigsCommand}
|
|
164
165
|
*/
|
|
165
|
-
listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListCodeSigningConfigsCommandOutput,
|
|
166
|
+
listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListCodeSigningConfigsCommandOutput, SdkError | InvalidParameterValueError | ServiceError>;
|
|
166
167
|
/**
|
|
167
168
|
* @see {@link ListEventSourceMappingsCommand}
|
|
168
169
|
*/
|
|
169
|
-
listEventSourceMappings(args: ListEventSourceMappingsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListEventSourceMappingsCommandOutput,
|
|
170
|
+
listEventSourceMappings(args: ListEventSourceMappingsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListEventSourceMappingsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
170
171
|
/**
|
|
171
172
|
* @see {@link ListFunctionEventInvokeConfigsCommand}
|
|
172
173
|
*/
|
|
173
|
-
listFunctionEventInvokeConfigs(args: ListFunctionEventInvokeConfigsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListFunctionEventInvokeConfigsCommandOutput,
|
|
174
|
+
listFunctionEventInvokeConfigs(args: ListFunctionEventInvokeConfigsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListFunctionEventInvokeConfigsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
174
175
|
/**
|
|
175
176
|
* @see {@link ListFunctionsCommand}
|
|
176
177
|
*/
|
|
177
|
-
listFunctions(args: ListFunctionsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListFunctionsCommandOutput,
|
|
178
|
+
listFunctions(args: ListFunctionsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListFunctionsCommandOutput, SdkError | InvalidParameterValueError | ServiceError | TooManyRequestsError>;
|
|
178
179
|
/**
|
|
179
180
|
* @see {@link ListFunctionsByCodeSigningConfigCommand}
|
|
180
181
|
*/
|
|
181
|
-
listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListFunctionsByCodeSigningConfigCommandOutput,
|
|
182
|
+
listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListFunctionsByCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError>;
|
|
182
183
|
/**
|
|
183
184
|
* @see {@link ListFunctionUrlConfigsCommand}
|
|
184
185
|
*/
|
|
185
|
-
listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListFunctionUrlConfigsCommandOutput,
|
|
186
|
+
listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListFunctionUrlConfigsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
186
187
|
/**
|
|
187
188
|
* @see {@link ListLayersCommand}
|
|
188
189
|
*/
|
|
189
|
-
listLayers(args: ListLayersCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListLayersCommandOutput,
|
|
190
|
+
listLayers(args: ListLayersCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListLayersCommandOutput, SdkError | InvalidParameterValueError | ServiceError | TooManyRequestsError>;
|
|
190
191
|
/**
|
|
191
192
|
* @see {@link ListLayerVersionsCommand}
|
|
192
193
|
*/
|
|
193
|
-
listLayerVersions(args: ListLayerVersionsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListLayerVersionsCommandOutput,
|
|
194
|
+
listLayerVersions(args: ListLayerVersionsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListLayerVersionsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
194
195
|
/**
|
|
195
196
|
* @see {@link ListProvisionedConcurrencyConfigsCommand}
|
|
196
197
|
*/
|
|
197
|
-
listProvisionedConcurrencyConfigs(args: ListProvisionedConcurrencyConfigsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListProvisionedConcurrencyConfigsCommandOutput,
|
|
198
|
+
listProvisionedConcurrencyConfigs(args: ListProvisionedConcurrencyConfigsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListProvisionedConcurrencyConfigsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
198
199
|
/**
|
|
199
200
|
* @see {@link ListTagsCommand}
|
|
200
201
|
*/
|
|
201
|
-
listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListTagsCommandOutput,
|
|
202
|
+
listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListTagsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
202
203
|
/**
|
|
203
204
|
* @see {@link ListVersionsByFunctionCommand}
|
|
204
205
|
*/
|
|
205
|
-
listVersionsByFunction(args: ListVersionsByFunctionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListVersionsByFunctionCommandOutput,
|
|
206
|
+
listVersionsByFunction(args: ListVersionsByFunctionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<ListVersionsByFunctionCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
206
207
|
/**
|
|
207
208
|
* @see {@link PublishLayerVersionCommand}
|
|
208
209
|
*/
|
|
209
|
-
publishLayerVersion(args: PublishLayerVersionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PublishLayerVersionCommandOutput,
|
|
210
|
+
publishLayerVersion(args: PublishLayerVersionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PublishLayerVersionCommandOutput, SdkError | CodeStorageExceededError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
210
211
|
/**
|
|
211
212
|
* @see {@link PublishVersionCommand}
|
|
212
213
|
*/
|
|
213
|
-
publishVersion(args: PublishVersionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PublishVersionCommandOutput,
|
|
214
|
+
publishVersion(args: PublishVersionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PublishVersionCommandOutput, SdkError | CodeStorageExceededError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
214
215
|
/**
|
|
215
216
|
* @see {@link PutFunctionCodeSigningConfigCommand}
|
|
216
217
|
*/
|
|
217
|
-
putFunctionCodeSigningConfig(args: PutFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutFunctionCodeSigningConfigCommandOutput,
|
|
218
|
+
putFunctionCodeSigningConfig(args: PutFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutFunctionCodeSigningConfigCommandOutput, SdkError | CodeSigningConfigNotFoundError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
218
219
|
/**
|
|
219
220
|
* @see {@link PutFunctionConcurrencyCommand}
|
|
220
221
|
*/
|
|
221
|
-
putFunctionConcurrency(args: PutFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutFunctionConcurrencyCommandOutput,
|
|
222
|
+
putFunctionConcurrency(args: PutFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutFunctionConcurrencyCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
222
223
|
/**
|
|
223
224
|
* @see {@link PutFunctionEventInvokeConfigCommand}
|
|
224
225
|
*/
|
|
225
|
-
putFunctionEventInvokeConfig(args: PutFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutFunctionEventInvokeConfigCommandOutput,
|
|
226
|
+
putFunctionEventInvokeConfig(args: PutFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutFunctionEventInvokeConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
226
227
|
/**
|
|
227
228
|
* @see {@link PutProvisionedConcurrencyConfigCommand}
|
|
228
229
|
*/
|
|
229
|
-
putProvisionedConcurrencyConfig(args: PutProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutProvisionedConcurrencyConfigCommandOutput,
|
|
230
|
+
putProvisionedConcurrencyConfig(args: PutProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutProvisionedConcurrencyConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
230
231
|
/**
|
|
231
232
|
* @see {@link PutRuntimeManagementConfigCommand}
|
|
232
233
|
*/
|
|
233
|
-
putRuntimeManagementConfig(args: PutRuntimeManagementConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutRuntimeManagementConfigCommandOutput,
|
|
234
|
+
putRuntimeManagementConfig(args: PutRuntimeManagementConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<PutRuntimeManagementConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
234
235
|
/**
|
|
235
236
|
* @see {@link RemoveLayerVersionPermissionCommand}
|
|
236
237
|
*/
|
|
237
|
-
removeLayerVersionPermission(args: RemoveLayerVersionPermissionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<RemoveLayerVersionPermissionCommandOutput,
|
|
238
|
+
removeLayerVersionPermission(args: RemoveLayerVersionPermissionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<RemoveLayerVersionPermissionCommandOutput, SdkError | InvalidParameterValueError | PreconditionFailedError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
238
239
|
/**
|
|
239
240
|
* @see {@link RemovePermissionCommand}
|
|
240
241
|
*/
|
|
241
|
-
removePermission(args: RemovePermissionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<RemovePermissionCommandOutput,
|
|
242
|
+
removePermission(args: RemovePermissionCommandInput, options?: __HttpHandlerOptions): Effect.Effect<RemovePermissionCommandOutput, SdkError | InvalidParameterValueError | PreconditionFailedError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
242
243
|
/**
|
|
243
244
|
* @see {@link TagResourceCommand}
|
|
244
245
|
*/
|
|
245
|
-
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput,
|
|
246
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
246
247
|
/**
|
|
247
248
|
* @see {@link UntagResourceCommand}
|
|
248
249
|
*/
|
|
249
|
-
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput,
|
|
250
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
250
251
|
/**
|
|
251
252
|
* @see {@link UpdateAliasCommand}
|
|
252
253
|
*/
|
|
253
|
-
updateAlias(args: UpdateAliasCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateAliasCommandOutput,
|
|
254
|
+
updateAlias(args: UpdateAliasCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateAliasCommandOutput, SdkError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
254
255
|
/**
|
|
255
256
|
* @see {@link UpdateCodeSigningConfigCommand}
|
|
256
257
|
*/
|
|
257
|
-
updateCodeSigningConfig(args: UpdateCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateCodeSigningConfigCommandOutput,
|
|
258
|
+
updateCodeSigningConfig(args: UpdateCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError>;
|
|
258
259
|
/**
|
|
259
260
|
* @see {@link UpdateEventSourceMappingCommand}
|
|
260
261
|
*/
|
|
261
|
-
updateEventSourceMapping(args: UpdateEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateEventSourceMappingCommandOutput,
|
|
262
|
+
updateEventSourceMapping(args: UpdateEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateEventSourceMappingCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceInUseError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
262
263
|
/**
|
|
263
264
|
* @see {@link UpdateFunctionCodeCommand}
|
|
264
265
|
*/
|
|
265
|
-
updateFunctionCode(args: UpdateFunctionCodeCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateFunctionCodeCommandOutput,
|
|
266
|
+
updateFunctionCode(args: UpdateFunctionCodeCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateFunctionCodeCommandOutput, SdkError | CodeSigningConfigNotFoundError | CodeStorageExceededError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
266
267
|
/**
|
|
267
268
|
* @see {@link UpdateFunctionConfigurationCommand}
|
|
268
269
|
*/
|
|
269
|
-
updateFunctionConfiguration(args: UpdateFunctionConfigurationCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateFunctionConfigurationCommandOutput,
|
|
270
|
+
updateFunctionConfiguration(args: UpdateFunctionConfigurationCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateFunctionConfigurationCommandOutput, SdkError | CodeSigningConfigNotFoundError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
270
271
|
/**
|
|
271
272
|
* @see {@link UpdateFunctionEventInvokeConfigCommand}
|
|
272
273
|
*/
|
|
273
|
-
updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateFunctionEventInvokeConfigCommandOutput,
|
|
274
|
+
updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateFunctionEventInvokeConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
274
275
|
/**
|
|
275
276
|
* @see {@link UpdateFunctionUrlConfigCommand}
|
|
276
277
|
*/
|
|
277
|
-
updateFunctionUrlConfig(args: UpdateFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateFunctionUrlConfigCommandOutput,
|
|
278
|
+
updateFunctionUrlConfig(args: UpdateFunctionUrlConfigCommandInput, options?: __HttpHandlerOptions): Effect.Effect<UpdateFunctionUrlConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
278
279
|
}
|
|
279
280
|
/**
|
|
280
281
|
* @since 1.0.0
|