@aws-sdk/client-lambda 3.37.0 → 3.41.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.
Files changed (90) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist-cjs/commands/index.js +61 -0
  3. package/dist-cjs/endpoints.js +145 -23
  4. package/dist-cjs/index.js +5 -74
  5. package/dist-cjs/pagination/index.js +14 -0
  6. package/dist-cjs/runtimeConfig.browser.js +6 -3
  7. package/dist-cjs/runtimeConfig.js +5 -3
  8. package/dist-cjs/waiters/index.js +6 -0
  9. package/dist-es/commands/index.js +58 -0
  10. package/dist-es/endpoints.js +145 -23
  11. package/dist-es/index.js +5 -74
  12. package/dist-es/pagination/index.js +11 -0
  13. package/dist-es/runtimeConfig.browser.js +3 -2
  14. package/dist-es/runtimeConfig.js +3 -3
  15. package/dist-es/waiters/index.js +3 -0
  16. package/dist-types/LambdaClient.d.ts +8 -0
  17. package/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +1 -1
  18. package/dist-types/commands/AddPermissionCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateAliasCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateEventSourceMappingCommand.d.ts +1 -1
  22. package/dist-types/commands/CreateFunctionCommand.d.ts +1 -1
  23. package/dist-types/commands/DeleteAliasCommand.d.ts +1 -1
  24. package/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +1 -1
  27. package/dist-types/commands/DeleteFunctionCommand.d.ts +1 -1
  28. package/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +1 -1
  29. package/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +1 -1
  30. package/dist-types/commands/DeleteLayerVersionCommand.d.ts +1 -1
  31. package/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +1 -1
  32. package/dist-types/commands/GetAccountSettingsCommand.d.ts +1 -1
  33. package/dist-types/commands/GetAliasCommand.d.ts +1 -1
  34. package/dist-types/commands/GetCodeSigningConfigCommand.d.ts +1 -1
  35. package/dist-types/commands/GetEventSourceMappingCommand.d.ts +1 -1
  36. package/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +1 -1
  37. package/dist-types/commands/GetFunctionCommand.d.ts +1 -1
  38. package/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +1 -1
  39. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +1 -1
  40. package/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +1 -1
  41. package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +1 -1
  42. package/dist-types/commands/GetLayerVersionCommand.d.ts +1 -1
  43. package/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +1 -1
  44. package/dist-types/commands/GetPolicyCommand.d.ts +1 -1
  45. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +1 -1
  46. package/dist-types/commands/InvokeAsyncCommand.d.ts +1 -1
  47. package/dist-types/commands/InvokeCommand.d.ts +1 -1
  48. package/dist-types/commands/ListAliasesCommand.d.ts +1 -1
  49. package/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +1 -1
  50. package/dist-types/commands/ListEventSourceMappingsCommand.d.ts +1 -1
  51. package/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +1 -1
  52. package/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +1 -1
  53. package/dist-types/commands/ListFunctionsCommand.d.ts +1 -1
  54. package/dist-types/commands/ListLayerVersionsCommand.d.ts +1 -1
  55. package/dist-types/commands/ListLayersCommand.d.ts +1 -1
  56. package/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +1 -1
  57. package/dist-types/commands/ListTagsCommand.d.ts +1 -1
  58. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +1 -1
  59. package/dist-types/commands/PublishLayerVersionCommand.d.ts +1 -1
  60. package/dist-types/commands/PublishVersionCommand.d.ts +1 -1
  61. package/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +1 -1
  62. package/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +1 -1
  63. package/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +1 -1
  64. package/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
  65. package/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +1 -1
  66. package/dist-types/commands/RemovePermissionCommand.d.ts +1 -1
  67. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  68. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  69. package/dist-types/commands/UpdateAliasCommand.d.ts +1 -1
  70. package/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +1 -1
  71. package/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +1 -1
  72. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +1 -1
  73. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +1 -1
  74. package/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +1 -1
  75. package/dist-types/commands/index.d.ts +58 -0
  76. package/dist-types/index.d.ts +5 -74
  77. package/dist-types/pagination/index.d.ts +11 -0
  78. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  79. package/dist-types/runtimeConfig.d.ts +2 -0
  80. package/dist-types/runtimeConfig.native.d.ts +2 -0
  81. package/dist-types/ts3.4/LambdaClient.d.ts +4 -0
  82. package/dist-types/ts3.4/commands/index.d.ts +58 -0
  83. package/dist-types/ts3.4/index.d.ts +5 -74
  84. package/dist-types/ts3.4/pagination/index.d.ts +11 -0
  85. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  86. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  87. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  88. package/dist-types/ts3.4/waiters/index.d.ts +3 -0
  89. package/dist-types/waiters/index.d.ts +3 -0
  90. package/package.json +27 -27
@@ -1,29 +1,77 @@
1
1
  import { __assign, __awaiter, __generator } from "tslib";
2
2
  import { getRegionInfo } from "@aws-sdk/config-resolver";
3
3
  var regionHash = {
4
- "fips-us-east-1": {
5
- hostname: "lambda-fips.us-east-1.amazonaws.com",
6
- signingRegion: "us-east-1",
4
+ "us-east-1": {
5
+ variants: [
6
+ {
7
+ hostname: "lambda.us-east-1.amazonaws.com",
8
+ tags: [],
9
+ },
10
+ {
11
+ hostname: "lambda-fips.us-east-1.amazonaws.com",
12
+ tags: ["fips"],
13
+ },
14
+ ],
7
15
  },
8
- "fips-us-east-2": {
9
- hostname: "lambda-fips.us-east-2.amazonaws.com",
10
- signingRegion: "us-east-2",
16
+ "us-east-2": {
17
+ variants: [
18
+ {
19
+ hostname: "lambda.us-east-2.amazonaws.com",
20
+ tags: [],
21
+ },
22
+ {
23
+ hostname: "lambda-fips.us-east-2.amazonaws.com",
24
+ tags: ["fips"],
25
+ },
26
+ ],
11
27
  },
12
- "fips-us-gov-east-1": {
13
- hostname: "lambda-fips.us-gov-east-1.amazonaws.com",
14
- signingRegion: "us-gov-east-1",
28
+ "us-gov-east-1": {
29
+ variants: [
30
+ {
31
+ hostname: "lambda.us-gov-east-1.amazonaws.com",
32
+ tags: [],
33
+ },
34
+ {
35
+ hostname: "lambda-fips.us-gov-east-1.amazonaws.com",
36
+ tags: ["fips"],
37
+ },
38
+ ],
15
39
  },
16
- "fips-us-gov-west-1": {
17
- hostname: "lambda-fips.us-gov-west-1.amazonaws.com",
18
- signingRegion: "us-gov-west-1",
40
+ "us-gov-west-1": {
41
+ variants: [
42
+ {
43
+ hostname: "lambda.us-gov-west-1.amazonaws.com",
44
+ tags: [],
45
+ },
46
+ {
47
+ hostname: "lambda-fips.us-gov-west-1.amazonaws.com",
48
+ tags: ["fips"],
49
+ },
50
+ ],
19
51
  },
20
- "fips-us-west-1": {
21
- hostname: "lambda-fips.us-west-1.amazonaws.com",
22
- signingRegion: "us-west-1",
52
+ "us-west-1": {
53
+ variants: [
54
+ {
55
+ hostname: "lambda.us-west-1.amazonaws.com",
56
+ tags: [],
57
+ },
58
+ {
59
+ hostname: "lambda-fips.us-west-1.amazonaws.com",
60
+ tags: ["fips"],
61
+ },
62
+ ],
23
63
  },
24
- "fips-us-west-2": {
25
- hostname: "lambda-fips.us-west-2.amazonaws.com",
26
- signingRegion: "us-west-2",
64
+ "us-west-2": {
65
+ variants: [
66
+ {
67
+ hostname: "lambda.us-west-2.amazonaws.com",
68
+ tags: [],
69
+ },
70
+ {
71
+ hostname: "lambda-fips.us-west-2.amazonaws.com",
72
+ tags: ["fips"],
73
+ },
74
+ ],
27
75
  },
28
76
  };
29
77
  var partitionHash = {
@@ -55,23 +103,97 @@ var partitionHash = {
55
103
  "us-west-1",
56
104
  "us-west-2",
57
105
  ],
58
- hostname: "lambda.{region}.amazonaws.com",
106
+ regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
107
+ variants: [
108
+ {
109
+ hostname: "lambda.{region}.amazonaws.com",
110
+ tags: [],
111
+ },
112
+ {
113
+ hostname: "lambda-fips.{region}.amazonaws.com",
114
+ tags: ["fips"],
115
+ },
116
+ {
117
+ hostname: "lambda-fips.{region}.api.aws",
118
+ tags: ["dualstack", "fips"],
119
+ },
120
+ {
121
+ hostname: "lambda.{region}.api.aws",
122
+ tags: ["dualstack"],
123
+ },
124
+ ],
59
125
  },
60
126
  "aws-cn": {
61
127
  regions: ["cn-north-1", "cn-northwest-1"],
62
- hostname: "lambda.{region}.amazonaws.com.cn",
128
+ regionRegex: "^cn\\-\\w+\\-\\d+$",
129
+ variants: [
130
+ {
131
+ hostname: "lambda.{region}.amazonaws.com.cn",
132
+ tags: [],
133
+ },
134
+ {
135
+ hostname: "lambda-fips.{region}.amazonaws.com.cn",
136
+ tags: ["fips"],
137
+ },
138
+ {
139
+ hostname: "lambda-fips.{region}.api.amazonwebservices.com.cn",
140
+ tags: ["dualstack", "fips"],
141
+ },
142
+ {
143
+ hostname: "lambda.{region}.api.amazonwebservices.com.cn",
144
+ tags: ["dualstack"],
145
+ },
146
+ ],
63
147
  },
64
148
  "aws-iso": {
65
149
  regions: ["us-iso-east-1", "us-iso-west-1"],
66
- hostname: "lambda.{region}.c2s.ic.gov",
150
+ regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
151
+ variants: [
152
+ {
153
+ hostname: "lambda.{region}.c2s.ic.gov",
154
+ tags: [],
155
+ },
156
+ {
157
+ hostname: "lambda-fips.{region}.c2s.ic.gov",
158
+ tags: ["fips"],
159
+ },
160
+ ],
67
161
  },
68
162
  "aws-iso-b": {
69
163
  regions: ["us-isob-east-1"],
70
- hostname: "lambda.{region}.sc2s.sgov.gov",
164
+ regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
165
+ variants: [
166
+ {
167
+ hostname: "lambda.{region}.sc2s.sgov.gov",
168
+ tags: [],
169
+ },
170
+ {
171
+ hostname: "lambda-fips.{region}.sc2s.sgov.gov",
172
+ tags: ["fips"],
173
+ },
174
+ ],
71
175
  },
72
176
  "aws-us-gov": {
73
177
  regions: ["fips-us-gov-east-1", "fips-us-gov-west-1", "us-gov-east-1", "us-gov-west-1"],
74
- hostname: "lambda.{region}.amazonaws.com",
178
+ regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
179
+ variants: [
180
+ {
181
+ hostname: "lambda.{region}.amazonaws.com",
182
+ tags: [],
183
+ },
184
+ {
185
+ hostname: "lambda-fips.{region}.amazonaws.com",
186
+ tags: ["fips"],
187
+ },
188
+ {
189
+ hostname: "lambda-fips.{region}.api.aws",
190
+ tags: ["dualstack", "fips"],
191
+ },
192
+ {
193
+ hostname: "lambda.{region}.api.aws",
194
+ tags: ["dualstack"],
195
+ },
196
+ ],
75
197
  },
76
198
  };
77
199
  export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
package/dist-es/index.js CHANGED
@@ -1,75 +1,6 @@
1
- export * from "./LambdaClient";
2
1
  export * from "./Lambda";
3
- export * from "./commands/AddLayerVersionPermissionCommand";
4
- export * from "./commands/AddPermissionCommand";
5
- export * from "./commands/CreateAliasCommand";
6
- export * from "./commands/CreateCodeSigningConfigCommand";
7
- export * from "./commands/CreateEventSourceMappingCommand";
8
- export * from "./commands/CreateFunctionCommand";
9
- export * from "./commands/DeleteAliasCommand";
10
- export * from "./commands/DeleteCodeSigningConfigCommand";
11
- export * from "./commands/DeleteEventSourceMappingCommand";
12
- export * from "./commands/DeleteFunctionCommand";
13
- export * from "./commands/DeleteFunctionCodeSigningConfigCommand";
14
- export * from "./commands/DeleteFunctionConcurrencyCommand";
15
- export * from "./commands/DeleteFunctionEventInvokeConfigCommand";
16
- export * from "./commands/DeleteLayerVersionCommand";
17
- export * from "./commands/DeleteProvisionedConcurrencyConfigCommand";
18
- export * from "./commands/GetAccountSettingsCommand";
19
- export * from "./commands/GetAliasCommand";
20
- export * from "./commands/GetCodeSigningConfigCommand";
21
- export * from "./commands/GetEventSourceMappingCommand";
22
- export * from "./commands/GetFunctionCommand";
23
- export * from "./waiters/waitForFunctionExists";
24
- export * from "./commands/GetFunctionCodeSigningConfigCommand";
25
- export * from "./commands/GetFunctionConcurrencyCommand";
26
- export * from "./commands/GetFunctionConfigurationCommand";
27
- export * from "./waiters/waitForFunctionActive";
28
- export * from "./waiters/waitForFunctionUpdated";
29
- export * from "./commands/GetFunctionEventInvokeConfigCommand";
30
- export * from "./commands/GetLayerVersionCommand";
31
- export * from "./commands/GetLayerVersionByArnCommand";
32
- export * from "./commands/GetLayerVersionPolicyCommand";
33
- export * from "./commands/GetPolicyCommand";
34
- export * from "./commands/GetProvisionedConcurrencyConfigCommand";
35
- export * from "./commands/InvokeCommand";
36
- export * from "./commands/InvokeAsyncCommand";
37
- export * from "./commands/ListAliasesCommand";
38
- export * from "./pagination/ListAliasesPaginator";
39
- export * from "./commands/ListCodeSigningConfigsCommand";
40
- export * from "./pagination/ListCodeSigningConfigsPaginator";
41
- export * from "./commands/ListEventSourceMappingsCommand";
42
- export * from "./pagination/ListEventSourceMappingsPaginator";
43
- export * from "./commands/ListFunctionEventInvokeConfigsCommand";
44
- export * from "./pagination/ListFunctionEventInvokeConfigsPaginator";
45
- export * from "./commands/ListFunctionsCommand";
46
- export * from "./pagination/ListFunctionsPaginator";
47
- export * from "./commands/ListFunctionsByCodeSigningConfigCommand";
48
- export * from "./pagination/ListFunctionsByCodeSigningConfigPaginator";
49
- export * from "./commands/ListLayersCommand";
50
- export * from "./pagination/ListLayersPaginator";
51
- export * from "./commands/ListLayerVersionsCommand";
52
- export * from "./pagination/ListLayerVersionsPaginator";
53
- export * from "./commands/ListProvisionedConcurrencyConfigsCommand";
54
- export * from "./pagination/ListProvisionedConcurrencyConfigsPaginator";
55
- export * from "./commands/ListTagsCommand";
56
- export * from "./commands/ListVersionsByFunctionCommand";
57
- export * from "./pagination/ListVersionsByFunctionPaginator";
58
- export * from "./commands/PublishLayerVersionCommand";
59
- export * from "./commands/PublishVersionCommand";
60
- export * from "./commands/PutFunctionCodeSigningConfigCommand";
61
- export * from "./commands/PutFunctionConcurrencyCommand";
62
- export * from "./commands/PutFunctionEventInvokeConfigCommand";
63
- export * from "./commands/PutProvisionedConcurrencyConfigCommand";
64
- export * from "./commands/RemoveLayerVersionPermissionCommand";
65
- export * from "./commands/RemovePermissionCommand";
66
- export * from "./commands/TagResourceCommand";
67
- export * from "./commands/UntagResourceCommand";
68
- export * from "./commands/UpdateAliasCommand";
69
- export * from "./commands/UpdateCodeSigningConfigCommand";
70
- export * from "./commands/UpdateEventSourceMappingCommand";
71
- export * from "./commands/UpdateFunctionCodeCommand";
72
- export * from "./commands/UpdateFunctionConfigurationCommand";
73
- export * from "./commands/UpdateFunctionEventInvokeConfigCommand";
74
- export * from "./pagination/Interfaces";
75
- export * from "./models/index";
2
+ export * from "./LambdaClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
@@ -0,0 +1,11 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListAliasesPaginator";
3
+ export * from "./ListCodeSigningConfigsPaginator";
4
+ export * from "./ListEventSourceMappingsPaginator";
5
+ export * from "./ListFunctionEventInvokeConfigsPaginator";
6
+ export * from "./ListFunctionsByCodeSigningConfigPaginator";
7
+ export * from "./ListFunctionsPaginator";
8
+ export * from "./ListLayerVersionsPaginator";
9
+ export * from "./ListLayersPaginator";
10
+ export * from "./ListProvisionedConcurrencyConfigsPaginator";
11
+ export * from "./ListVersionsByFunctionPaginator";
@@ -1,6 +1,7 @@
1
1
  import { __assign } from "tslib";
2
2
  import packageInfo from "../package.json";
3
3
  import { Sha256 } from "@aws-crypto/sha256-browser";
4
+ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
4
5
  import { FetchHttpHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
5
6
  import { invalidProvider } from "@aws-sdk/invalid-dependency";
6
7
  import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
@@ -10,7 +11,7 @@ import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
10
11
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
11
12
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
12
13
  export var getRuntimeConfig = function (config) {
13
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
14
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
14
15
  var clientSharedValues = getSharedRuntimeConfig(config);
15
- return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : fromUtf8, utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : toUtf8 });
16
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
16
17
  };
@@ -1,7 +1,7 @@
1
1
  import { __assign } from "tslib";
2
2
  import packageInfo from "../package.json";
3
3
  import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
4
- import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS } from "@aws-sdk/config-resolver";
4
+ import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
5
5
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
6
6
  import { Hash } from "@aws-sdk/hash-node";
7
7
  import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@aws-sdk/middleware-retry";
@@ -14,8 +14,8 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
14
14
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
15
15
  import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
16
16
  export var getRuntimeConfig = function (config) {
17
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
17
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
18
18
  emitWarningIfUnsupportedVersion(process.version);
19
19
  var clientSharedValues = getSharedRuntimeConfig(config);
20
- return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : fromUtf8, utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : toUtf8 });
20
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
21
21
  };
@@ -0,0 +1,3 @@
1
+ export * from "./waitForFunctionActive";
2
+ export * from "./waitForFunctionExists";
3
+ export * from "./waitForFunctionUpdated";
@@ -134,6 +134,14 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
134
134
  * Optional logger for logging debug/info/warn/error.
135
135
  */
136
136
  logger?: __Logger;
137
+ /**
138
+ * Enables IPv6/IPv4 dualstack endpoint.
139
+ */
140
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
141
+ /**
142
+ * Enables FIPS compatible endpoints.
143
+ */
144
+ useFipsEndpoint?: boolean | __Provider<boolean>;
137
145
  /**
138
146
  * Unique service identifier.
139
147
  * @internal
@@ -25,7 +25,7 @@ export interface AddLayerVersionPermissionCommandOutput extends AddLayerVersionP
25
25
  *
26
26
  * @see {@link AddLayerVersionPermissionCommandInput} for command's `input` shape.
27
27
  * @see {@link AddLayerVersionPermissionCommandOutput} for command's `response` shape.
28
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
28
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
29
29
  *
30
30
  */
31
31
  export declare class AddLayerVersionPermissionCommand extends $Command<AddLayerVersionPermissionCommandInput, AddLayerVersionPermissionCommandOutput, LambdaClientResolvedConfig> {
@@ -32,7 +32,7 @@ export interface AddPermissionCommandOutput extends AddPermissionResponse, __Met
32
32
  *
33
33
  * @see {@link AddPermissionCommandInput} for command's `input` shape.
34
34
  * @see {@link AddPermissionCommandOutput} for command's `response` shape.
35
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
35
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
36
36
  *
37
37
  */
38
38
  export declare class AddPermissionCommand extends $Command<AddPermissionCommandInput, AddPermissionCommandOutput, LambdaClientResolvedConfig> {
@@ -25,7 +25,7 @@ export interface CreateAliasCommandOutput extends AliasConfiguration, __Metadata
25
25
  *
26
26
  * @see {@link CreateAliasCommandInput} for command's `input` shape.
27
27
  * @see {@link CreateAliasCommandOutput} for command's `response` shape.
28
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
28
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
29
29
  *
30
30
  */
31
31
  export declare class CreateAliasCommand extends $Command<CreateAliasCommandInput, CreateAliasCommandOutput, LambdaClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface CreateCodeSigningConfigCommandOutput extends CreateCodeSigningC
22
22
  *
23
23
  * @see {@link CreateCodeSigningConfigCommandInput} for command's `input` shape.
24
24
  * @see {@link CreateCodeSigningConfigCommandOutput} for command's `response` shape.
25
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class CreateCodeSigningConfigCommand extends $Command<CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput, LambdaClientResolvedConfig> {
@@ -84,7 +84,7 @@ export interface CreateEventSourceMappingCommandOutput extends EventSourceMappin
84
84
  *
85
85
  * @see {@link CreateEventSourceMappingCommandInput} for command's `input` shape.
86
86
  * @see {@link CreateEventSourceMappingCommandOutput} for command's `response` shape.
87
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
87
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
88
88
  *
89
89
  */
90
90
  export declare class CreateEventSourceMappingCommand extends $Command<CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput, LambdaClientResolvedConfig> {
@@ -66,7 +66,7 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me
66
66
  *
67
67
  * @see {@link CreateFunctionCommandInput} for command's `input` shape.
68
68
  * @see {@link CreateFunctionCommandOutput} for command's `response` shape.
69
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
69
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
70
70
  *
71
71
  */
72
72
  export declare class CreateFunctionCommand extends $Command<CreateFunctionCommandInput, CreateFunctionCommandOutput, LambdaClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteAliasCommandOutput extends __MetadataBearer {
20
20
  *
21
21
  * @see {@link DeleteAliasCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteAliasCommandOutput} for command's `response` shape.
23
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteAliasCommand extends $Command<DeleteAliasCommandInput, DeleteAliasCommandOutput, LambdaClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface DeleteCodeSigningConfigCommandOutput extends DeleteCodeSigningC
21
21
  *
22
22
  * @see {@link DeleteCodeSigningConfigCommandInput} for command's `input` shape.
23
23
  * @see {@link DeleteCodeSigningConfigCommandOutput} for command's `response` shape.
24
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class DeleteCodeSigningConfigCommand extends $Command<DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput, LambdaClientResolvedConfig> {
@@ -23,7 +23,7 @@ export interface DeleteEventSourceMappingCommandOutput extends EventSourceMappin
23
23
  *
24
24
  * @see {@link DeleteEventSourceMappingCommandInput} for command's `input` shape.
25
25
  * @see {@link DeleteEventSourceMappingCommandOutput} for command's `response` shape.
26
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
26
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
27
27
  *
28
28
  */
29
29
  export declare class DeleteEventSourceMappingCommand extends $Command<DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput, LambdaClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteFunctionCodeSigningConfigCommandOutput extends __Metadata
20
20
  *
21
21
  * @see {@link DeleteFunctionCodeSigningConfigCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteFunctionCodeSigningConfigCommandOutput} for command's `response` shape.
23
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteFunctionCodeSigningConfigCommand extends $Command<DeleteFunctionCodeSigningConfigCommandInput, DeleteFunctionCodeSigningConfigCommandOutput, LambdaClientResolvedConfig> {
@@ -25,7 +25,7 @@ export interface DeleteFunctionCommandOutput extends __MetadataBearer {
25
25
  *
26
26
  * @see {@link DeleteFunctionCommandInput} for command's `input` shape.
27
27
  * @see {@link DeleteFunctionCommandOutput} for command's `response` shape.
28
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
28
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
29
29
  *
30
30
  */
31
31
  export declare class DeleteFunctionCommand extends $Command<DeleteFunctionCommandInput, DeleteFunctionCommandOutput, LambdaClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteFunctionConcurrencyCommandOutput extends __MetadataBearer
20
20
  *
21
21
  * @see {@link DeleteFunctionConcurrencyCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteFunctionConcurrencyCommandOutput} for command's `response` shape.
23
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteFunctionConcurrencyCommand extends $Command<DeleteFunctionConcurrencyCommandInput, DeleteFunctionConcurrencyCommandOutput, LambdaClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface DeleteFunctionEventInvokeConfigCommandOutput extends __Metadata
21
21
  *
22
22
  * @see {@link DeleteFunctionEventInvokeConfigCommandInput} for command's `input` shape.
23
23
  * @see {@link DeleteFunctionEventInvokeConfigCommandOutput} for command's `response` shape.
24
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class DeleteFunctionEventInvokeConfigCommand extends $Command<DeleteFunctionEventInvokeConfigCommandInput, DeleteFunctionEventInvokeConfigCommandOutput, LambdaClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface DeleteLayerVersionCommandOutput extends __MetadataBearer {
22
22
  *
23
23
  * @see {@link DeleteLayerVersionCommandInput} for command's `input` shape.
24
24
  * @see {@link DeleteLayerVersionCommandOutput} for command's `response` shape.
25
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class DeleteLayerVersionCommand extends $Command<DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput, LambdaClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteProvisionedConcurrencyConfigCommandOutput extends __Metad
20
20
  *
21
21
  * @see {@link DeleteProvisionedConcurrencyConfigCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteProvisionedConcurrencyConfigCommandOutput} for command's `response` shape.
23
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteProvisionedConcurrencyConfigCommand extends $Command<DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput, LambdaClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo
20
20
  *
21
21
  * @see {@link GetAccountSettingsCommandInput} for command's `input` shape.
22
22
  * @see {@link GetAccountSettingsCommandOutput} for command's `response` shape.
23
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetAccountSettingsCommand extends $Command<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, LambdaClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetAliasCommandOutput extends AliasConfiguration, __MetadataBea
20
20
  *
21
21
  * @see {@link GetAliasCommandInput} for command's `input` shape.
22
22
  * @see {@link GetAliasCommandOutput} for command's `response` shape.
23
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetAliasCommand extends $Command<GetAliasCommandInput, GetAliasCommandOutput, LambdaClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetCodeSigningConfigCommandOutput extends GetCodeSigningConfigR
20
20
  *
21
21
  * @see {@link GetCodeSigningConfigCommandInput} for command's `input` shape.
22
22
  * @see {@link GetCodeSigningConfigCommandOutput} for command's `response` shape.
23
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetCodeSigningConfigCommand extends $Command<GetCodeSigningConfigCommandInput, GetCodeSigningConfigCommandOutput, LambdaClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface GetEventSourceMappingCommandOutput extends EventSourceMappingCo
21
21
  *
22
22
  * @see {@link GetEventSourceMappingCommandInput} for command's `input` shape.
23
23
  * @see {@link GetEventSourceMappingCommandOutput} for command's `response` shape.
24
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetEventSourceMappingCommand extends $Command<GetEventSourceMappingCommandInput, GetEventSourceMappingCommandOutput, LambdaClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetFunctionCodeSigningConfigCommandOutput extends GetFunctionCo
20
20
  *
21
21
  * @see {@link GetFunctionCodeSigningConfigCommandInput} for command's `input` shape.
22
22
  * @see {@link GetFunctionCodeSigningConfigCommandOutput} for command's `response` shape.
23
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetFunctionCodeSigningConfigCommand extends $Command<GetFunctionCodeSigningConfigCommandInput, GetFunctionCodeSigningConfigCommandOutput, LambdaClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface GetFunctionCommandOutput extends GetFunctionResponse, __Metadat
22
22
  *
23
23
  * @see {@link GetFunctionCommandInput} for command's `input` shape.
24
24
  * @see {@link GetFunctionCommandOutput} for command's `response` shape.
25
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class GetFunctionCommand extends $Command<GetFunctionCommandInput, GetFunctionCommandOutput, LambdaClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface GetFunctionConcurrencyCommandOutput extends GetFunctionConcurre
21
21
  *
22
22
  * @see {@link GetFunctionConcurrencyCommandInput} for command's `input` shape.
23
23
  * @see {@link GetFunctionConcurrencyCommandOutput} for command's `response` shape.
24
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetFunctionConcurrencyCommand extends $Command<GetFunctionConcurrencyCommandInput, GetFunctionConcurrencyCommandOutput, LambdaClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface GetFunctionConfigurationCommandOutput extends FunctionConfigura
22
22
  *
23
23
  * @see {@link GetFunctionConfigurationCommandInput} for command's `input` shape.
24
24
  * @see {@link GetFunctionConfigurationCommandOutput} for command's `response` shape.
25
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class GetFunctionConfigurationCommand extends $Command<GetFunctionConfigurationCommandInput, GetFunctionConfigurationCommandOutput, LambdaClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface GetFunctionEventInvokeConfigCommandOutput extends FunctionEvent
21
21
  *
22
22
  * @see {@link GetFunctionEventInvokeConfigCommandInput} for command's `input` shape.
23
23
  * @see {@link GetFunctionEventInvokeConfigCommandOutput} for command's `response` shape.
24
- * @see {@link LambdaClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetFunctionEventInvokeConfigCommand extends $Command<GetFunctionEventInvokeConfigCommandInput, GetFunctionEventInvokeConfigCommandOutput, LambdaClientResolvedConfig> {