@cdklabs/cdk-ssm-documents 0.0.55 → 0.0.56

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 (283) hide show
  1. package/.jsii +12 -12
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws-sdk/client-cloudformation/package.json +34 -34
  117. package/node_modules/@aws-sdk/client-cloudwatch/package.json +36 -36
  118. package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
  119. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +41 -0
  120. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +156 -78
  121. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +6 -0
  122. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMonitoredTagKeysCommand.js +16 -0
  123. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerMonitoredTagKeysCommand.js +16 -0
  124. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
  125. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +8 -0
  126. package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/GetCapacityManagerMonitoredTagKeysPaginator.js +4 -0
  127. package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/index.js +1 -0
  128. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +96 -18
  129. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +23 -0
  130. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +4 -2
  131. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +9 -2
  132. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +9 -2
  133. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +87 -0
  134. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleScreenshotCommand.d.ts +1 -1
  135. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +1 -2
  136. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +1 -1
  137. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +1 -1
  138. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +91 -0
  139. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
  140. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +16 -0
  141. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +126 -79
  142. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +81 -122
  143. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +168 -3
  144. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetCapacityManagerMonitoredTagKeysPaginator.d.ts +7 -0
  145. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/index.d.ts +1 -0
  146. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +8 -0
  147. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +55 -0
  148. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
  149. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +51 -0
  150. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleScreenshotCommand.d.ts +1 -1
  151. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +4 -2
  152. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +1 -1
  153. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +1 -1
  154. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +51 -0
  155. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
  156. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +10 -0
  157. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +23 -18
  158. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +19 -34
  159. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +43 -0
  160. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/GetCapacityManagerMonitoredTagKeysPaginator.d.ts +11 -0
  161. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/index.d.ts +1 -0
  162. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
  163. package/node_modules/@aws-sdk/client-ec2/package.json +36 -36
  164. package/node_modules/@aws-sdk/client-iam/package.json +35 -35
  165. package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +52 -1
  166. package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +29 -8
  167. package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +48 -0
  168. package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +22 -1
  169. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +9 -0
  170. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +9 -0
  171. package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +66 -0
  172. package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +6 -6
  173. package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +3 -0
  174. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +30 -0
  175. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
  176. package/node_modules/@aws-sdk/client-lambda/package.json +38 -38
  177. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5 -0
  178. package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +5 -0
  179. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +1 -1
  180. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +1 -1
  181. package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +5 -0
  182. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +5 -0
  183. package/node_modules/@aws-sdk/client-s3/package.json +50 -50
  184. package/node_modules/@aws-sdk/client-sns/package.json +33 -33
  185. package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +2 -0
  186. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +2 -0
  187. package/node_modules/@aws-sdk/client-sqs/package.json +36 -36
  188. package/node_modules/@aws-sdk/client-ssm/package.json +34 -34
  189. package/node_modules/@aws-sdk/core/dist-cjs/index.js +17 -0
  190. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +17 -0
  191. package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +1 -0
  192. package/node_modules/@aws-sdk/core/dist-es/submodules/client/longPollMiddleware.js +15 -0
  193. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +1 -0
  194. package/node_modules/@aws-sdk/core/dist-types/submodules/client/longPollMiddleware.d.ts +14 -0
  195. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +1 -0
  196. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/longPollMiddleware.d.ts +15 -0
  197. package/node_modules/@aws-sdk/core/package.json +11 -11
  198. package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
  199. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  200. package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
  201. package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
  202. package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
  203. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  204. package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
  205. package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
  206. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
  207. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
  208. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
  209. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +10 -10
  210. package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
  211. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
  212. package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
  213. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
  214. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
  215. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +11 -11
  216. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
  217. package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
  218. package/node_modules/@aws-sdk/middleware-user-agent/package.json +8 -8
  219. package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
  220. package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
  221. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +6 -6
  222. package/node_modules/@aws-sdk/token-providers/package.json +7 -7
  223. package/node_modules/@aws-sdk/types/package.json +2 -2
  224. package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
  225. package/node_modules/@aws-sdk/util-format-url/package.json +4 -4
  226. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
  227. package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
  228. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +1 -1
  229. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  230. package/node_modules/@smithy/config-resolver/package.json +2 -2
  231. package/node_modules/@smithy/middleware-retry/package.json +2 -2
  232. package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
  233. package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +154 -61
  234. package/node_modules/@smithy/util-endpoints/dist-es/bdd/BinaryDecisionDiagram.js +15 -0
  235. package/node_modules/@smithy/util-endpoints/dist-es/decideEndpoint.js +41 -0
  236. package/node_modules/@smithy/util-endpoints/dist-es/index.js +2 -0
  237. package/node_modules/@smithy/util-endpoints/dist-es/lib/coalesce.js +8 -0
  238. package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +3 -0
  239. package/node_modules/@smithy/util-endpoints/dist-es/lib/ite.js +3 -0
  240. package/node_modules/@smithy/util-endpoints/dist-es/lib/split.js +13 -0
  241. package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +1 -1
  242. package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +4 -1
  243. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +20 -5
  244. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +3 -6
  245. package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +1 -5
  246. package/node_modules/@smithy/util-endpoints/dist-types/bdd/BinaryDecisionDiagram.d.ts +22 -0
  247. package/node_modules/@smithy/util-endpoints/dist-types/decideEndpoint.d.ts +7 -0
  248. package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +2 -0
  249. package/node_modules/@smithy/util-endpoints/dist-types/lib/coalesce.d.ts +7 -0
  250. package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +3 -0
  251. package/node_modules/@smithy/util-endpoints/dist-types/lib/ite.d.ts +6 -0
  252. package/node_modules/@smithy/util-endpoints/dist-types/lib/split.d.ts +11 -0
  253. package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +4 -0
  254. package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +3 -1
  255. package/node_modules/@smithy/util-endpoints/package.json +1 -1
  256. package/node_modules/@smithy/util-retry/dist-cjs/index.js +6 -0
  257. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +3 -0
  258. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +3 -0
  259. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +5 -0
  260. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +5 -0
  261. package/node_modules/@smithy/util-retry/package.json +1 -1
  262. package/node_modules/path-expression-matcher/README.md +214 -62
  263. package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
  264. package/node_modules/path-expression-matcher/lib/pem.d.cts +111 -0
  265. package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
  266. package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
  267. package/node_modules/path-expression-matcher/package.json +1 -1
  268. package/node_modules/path-expression-matcher/src/Expression.js +2 -2
  269. package/node_modules/path-expression-matcher/src/ExpressionSet.js +209 -0
  270. package/node_modules/path-expression-matcher/src/Matcher.js +235 -177
  271. package/node_modules/path-expression-matcher/src/index.d.ts +199 -194
  272. package/node_modules/path-expression-matcher/src/index.js +3 -2
  273. package/package.json +10 -10
  274. package/node_modules/strnum/.github/SECURITY.md +0 -5
  275. package/node_modules/strnum/.vscode/launch.json +0 -25
  276. package/node_modules/strnum/algo.stflow +0 -84
  277. package/node_modules/strnum/tests/infinity_test.js +0 -18
  278. package/node_modules/strnum/tests/strnum_test.js +0 -175
  279. package/node_modules/strnum/tests/temp.js +0 -8
  280. /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +0 -0
  281. /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
  282. /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +0 -0
  283. /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +0 -0
@@ -559,6 +559,54 @@ export class ResourceNotReadyException extends __BaseException {
559
559
  this.Type = opts.Type;
560
560
  }
561
561
  }
562
+ export class S3FilesMountConnectivityException extends __BaseException {
563
+ name = "S3FilesMountConnectivityException";
564
+ $fault = "client";
565
+ Type;
566
+ Message;
567
+ constructor(opts) {
568
+ super({
569
+ name: "S3FilesMountConnectivityException",
570
+ $fault: "client",
571
+ ...opts,
572
+ });
573
+ Object.setPrototypeOf(this, S3FilesMountConnectivityException.prototype);
574
+ this.Type = opts.Type;
575
+ this.Message = opts.Message;
576
+ }
577
+ }
578
+ export class S3FilesMountFailureException extends __BaseException {
579
+ name = "S3FilesMountFailureException";
580
+ $fault = "client";
581
+ Type;
582
+ Message;
583
+ constructor(opts) {
584
+ super({
585
+ name: "S3FilesMountFailureException",
586
+ $fault: "client",
587
+ ...opts,
588
+ });
589
+ Object.setPrototypeOf(this, S3FilesMountFailureException.prototype);
590
+ this.Type = opts.Type;
591
+ this.Message = opts.Message;
592
+ }
593
+ }
594
+ export class S3FilesMountTimeoutException extends __BaseException {
595
+ name = "S3FilesMountTimeoutException";
596
+ $fault = "client";
597
+ Type;
598
+ Message;
599
+ constructor(opts) {
600
+ super({
601
+ name: "S3FilesMountTimeoutException",
602
+ $fault: "client",
603
+ ...opts,
604
+ });
605
+ Object.setPrototypeOf(this, S3FilesMountTimeoutException.prototype);
606
+ this.Type = opts.Type;
607
+ this.Message = opts.Message;
608
+ }
609
+ }
562
610
  export class SerializedRequestEntityTooLargeException extends __BaseException {
563
611
  name = "SerializedRequestEntityTooLargeException";
564
612
  $fault = "client";
@@ -579,6 +579,9 @@ const _SDERt = "StopDurableExecutionResponse";
579
579
  const _SE = "ServiceException";
580
580
  const _SET = "ScheduledEndTimestamp";
581
581
  const _SFD = "StepFailedDetails";
582
+ const _SFMCE = "S3FilesMountConnectivityException";
583
+ const _SFMFE = "S3FilesMountFailureException";
584
+ const _SFMTE = "S3FilesMountTimeoutException";
582
585
  const _SGI = "SecurityGroupIds";
583
586
  const _SI = "StatementId";
584
587
  const _SIPALRE = "SubnetIPAddressLimitReachedException";
@@ -713,7 +716,7 @@ const _st = "streaming";
713
716
  const _tK = "tagKeys";
714
717
  const n0 = "com.amazonaws.lambda";
715
718
  import { TypeRegistry } from "@smithy/core/schema";
716
- import { CallbackTimeoutException, CapacityProviderLimitExceededException, CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, DurableExecutionAlreadyStartedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, NoPublishedVersionException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, SerializedRequestEntityTooLargeException, ServiceException, SnapStartException, SnapStartNotReadyException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException, } from "../models/errors";
719
+ import { CallbackTimeoutException, CapacityProviderLimitExceededException, CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, DurableExecutionAlreadyStartedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, NoPublishedVersionException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, S3FilesMountConnectivityException, S3FilesMountFailureException, S3FilesMountTimeoutException, SerializedRequestEntityTooLargeException, ServiceException, SnapStartException, SnapStartNotReadyException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException, } from "../models/errors";
717
720
  import { LambdaServiceException } from "../models/LambdaServiceException";
718
721
  const _s_registry = TypeRegistry.for(_s);
719
722
  export var LambdaServiceException$ = [-3, _s, "LambdaServiceException", 0, [], []];
@@ -935,6 +938,24 @@ export var ResourceNotReadyException$ = [-3, n0, _RNRE,
935
938
  [0, 0]
936
939
  ];
937
940
  n0_registry.registerError(ResourceNotReadyException$, ResourceNotReadyException);
941
+ export var S3FilesMountConnectivityException$ = [-3, n0, _SFMCE,
942
+ { [_e]: _c, [_hE]: 408 },
943
+ [_T, _M],
944
+ [0, 0]
945
+ ];
946
+ n0_registry.registerError(S3FilesMountConnectivityException$, S3FilesMountConnectivityException);
947
+ export var S3FilesMountFailureException$ = [-3, n0, _SFMFE,
948
+ { [_e]: _c, [_hE]: 403 },
949
+ [_T, _M],
950
+ [0, 0]
951
+ ];
952
+ n0_registry.registerError(S3FilesMountFailureException$, S3FilesMountFailureException);
953
+ export var S3FilesMountTimeoutException$ = [-3, n0, _SFMTE,
954
+ { [_e]: _c, [_hE]: 408 },
955
+ [_T, _M],
956
+ [0, 0]
957
+ ];
958
+ n0_registry.registerError(S3FilesMountTimeoutException$, S3FilesMountTimeoutException);
938
959
  export var SerializedRequestEntityTooLargeException$ = [-3, n0, _SRETLE,
939
960
  { [_e]: _c, [_hE]: 413 },
940
961
  [_T, _m],
@@ -153,6 +153,15 @@ declare const InvokeCommand_base: {
153
153
  * @throws {@link ResourceNotReadyException} (server fault)
154
154
  * <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
155
155
  *
156
+ * @throws {@link S3FilesMountConnectivityException} (client fault)
157
+ * <p>The Lambda function couldn't make a network connection to the configured S3 Files access point.</p>
158
+ *
159
+ * @throws {@link S3FilesMountFailureException} (client fault)
160
+ * <p>The Lambda function couldn't mount the configured S3 Files access point due to a permission or configuration issue.</p>
161
+ *
162
+ * @throws {@link S3FilesMountTimeoutException} (client fault)
163
+ * <p>The Lambda function made a network connection to the configured S3 Files access point, but the mount operation timed out.</p>
164
+ *
156
165
  * @throws {@link SerializedRequestEntityTooLargeException} (client fault)
157
166
  * <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
158
167
  *
@@ -149,6 +149,15 @@ declare const InvokeWithResponseStreamCommand_base: {
149
149
  * @throws {@link ResourceNotReadyException} (server fault)
150
150
  * <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
151
151
  *
152
+ * @throws {@link S3FilesMountConnectivityException} (client fault)
153
+ * <p>The Lambda function couldn't make a network connection to the configured S3 Files access point.</p>
154
+ *
155
+ * @throws {@link S3FilesMountFailureException} (client fault)
156
+ * <p>The Lambda function couldn't mount the configured S3 Files access point due to a permission or configuration issue.</p>
157
+ *
158
+ * @throws {@link S3FilesMountTimeoutException} (client fault)
159
+ * <p>The Lambda function made a network connection to the configured S3 Files access point, but the mount operation timed out.</p>
160
+ *
152
161
  * @throws {@link SerializedRequestEntityTooLargeException} (client fault)
153
162
  * <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
154
163
  *
@@ -549,6 +549,72 @@ export declare class ResourceNotReadyException extends __BaseException {
549
549
  */
550
550
  constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
551
551
  }
552
+ /**
553
+ * <p>The Lambda function couldn't make a network connection to the configured S3 Files access point.</p>
554
+ * @public
555
+ */
556
+ export declare class S3FilesMountConnectivityException extends __BaseException {
557
+ readonly name: "S3FilesMountConnectivityException";
558
+ readonly $fault: "client";
559
+ /**
560
+ * <p>The exception type.</p>
561
+ * @public
562
+ */
563
+ Type?: string | undefined;
564
+ /**
565
+ * <p>The exception message.</p>
566
+ * @public
567
+ */
568
+ Message?: string | undefined;
569
+ /**
570
+ * @internal
571
+ */
572
+ constructor(opts: __ExceptionOptionType<S3FilesMountConnectivityException, __BaseException>);
573
+ }
574
+ /**
575
+ * <p>The Lambda function couldn't mount the configured S3 Files access point due to a permission or configuration issue.</p>
576
+ * @public
577
+ */
578
+ export declare class S3FilesMountFailureException extends __BaseException {
579
+ readonly name: "S3FilesMountFailureException";
580
+ readonly $fault: "client";
581
+ /**
582
+ * <p>The exception type.</p>
583
+ * @public
584
+ */
585
+ Type?: string | undefined;
586
+ /**
587
+ * <p>The exception message.</p>
588
+ * @public
589
+ */
590
+ Message?: string | undefined;
591
+ /**
592
+ * @internal
593
+ */
594
+ constructor(opts: __ExceptionOptionType<S3FilesMountFailureException, __BaseException>);
595
+ }
596
+ /**
597
+ * <p>The Lambda function made a network connection to the configured S3 Files access point, but the mount operation timed out.</p>
598
+ * @public
599
+ */
600
+ export declare class S3FilesMountTimeoutException extends __BaseException {
601
+ readonly name: "S3FilesMountTimeoutException";
602
+ readonly $fault: "client";
603
+ /**
604
+ * <p>The exception type.</p>
605
+ * @public
606
+ */
607
+ Type?: string | undefined;
608
+ /**
609
+ * <p>The exception message.</p>
610
+ * @public
611
+ */
612
+ Message?: string | undefined;
613
+ /**
614
+ * @internal
615
+ */
616
+ constructor(opts: __ExceptionOptionType<S3FilesMountTimeoutException, __BaseException>);
617
+ }
552
618
  /**
553
619
  * <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
554
620
  * @public
@@ -2102,12 +2102,12 @@ export interface EphemeralStorage {
2102
2102
  Size: number | undefined;
2103
2103
  }
2104
2104
  /**
2105
- * <p>Details about the connection between a Lambda function and an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
2105
+ * <p>Details about the connection between a Lambda function and an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a> or an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon S3 Files file system</a>.</p>
2106
2106
  * @public
2107
2107
  */
2108
2108
  export interface FileSystemConfig {
2109
2109
  /**
2110
- * <p>The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.</p>
2110
+ * <p>The Amazon Resource Name (ARN) of the Amazon EFS or Amazon S3 Files access point that provides access to the file system.</p>
2111
2111
  * @public
2112
2112
  */
2113
2113
  Arn: string | undefined;
@@ -2308,7 +2308,7 @@ export interface CreateFunctionRequest {
2308
2308
  */
2309
2309
  Layers?: string[] | undefined;
2310
2310
  /**
2311
- * <p>Connection settings for an Amazon EFS file system.</p>
2311
+ * <p>Connection settings for an Amazon EFS file system or an Amazon S3 Files file system.</p>
2312
2312
  * @public
2313
2313
  */
2314
2314
  FileSystemConfigs?: FileSystemConfig[] | undefined;
@@ -2674,7 +2674,7 @@ export interface FunctionConfiguration {
2674
2674
  */
2675
2675
  LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | undefined;
2676
2676
  /**
2677
- * <p>Connection settings for an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
2677
+ * <p>Connection settings for an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a> or an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon S3 Files file system</a>.</p>
2678
2678
  * @public
2679
2679
  */
2680
2680
  FileSystemConfigs?: FileSystemConfig[] | undefined;
@@ -3962,7 +3962,7 @@ export interface UpdateFunctionConfigurationRequest {
3962
3962
  */
3963
3963
  Layers?: string[] | undefined;
3964
3964
  /**
3965
- * <p>Connection settings for an Amazon EFS file system.</p>
3965
+ * <p>Connection settings for an Amazon EFS file system or an Amazon S3 Files file system.</p>
3966
3966
  * @public
3967
3967
  */
3968
3968
  FileSystemConfigs?: FileSystemConfig[] | undefined;
@@ -5494,7 +5494,7 @@ export interface ListDurableExecutionsByFunctionRequest {
5494
5494
  */
5495
5495
  Qualifier?: string | undefined;
5496
5496
  /**
5497
- * <p>Filter executions by name. Only executions with names that contain this string are returned.</p>
5497
+ * <p>Filter executions by name. Only executions with names that matches this string are returned.</p>
5498
5498
  * @public
5499
5499
  */
5500
5500
  DurableExecutionName?: string | undefined;
@@ -37,6 +37,9 @@ export declare var ResourceConflictException$: StaticErrorSchema;
37
37
  export declare var ResourceInUseException$: StaticErrorSchema;
38
38
  export declare var ResourceNotFoundException$: StaticErrorSchema;
39
39
  export declare var ResourceNotReadyException$: StaticErrorSchema;
40
+ export declare var S3FilesMountConnectivityException$: StaticErrorSchema;
41
+ export declare var S3FilesMountFailureException$: StaticErrorSchema;
42
+ export declare var S3FilesMountTimeoutException$: StaticErrorSchema;
40
43
  export declare var SerializedRequestEntityTooLargeException$: StaticErrorSchema;
41
44
  export declare var ServiceException$: StaticErrorSchema;
42
45
  export declare var SnapStartException$: StaticErrorSchema;
@@ -331,6 +331,36 @@ export declare class ResourceNotReadyException extends __BaseException {
331
331
  opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
332
332
  );
333
333
  }
334
+ export declare class S3FilesMountConnectivityException extends __BaseException {
335
+ readonly name: "S3FilesMountConnectivityException";
336
+ readonly $fault: "client";
337
+ Type?: string | undefined;
338
+ Message?: string | undefined;
339
+ constructor(
340
+ opts: __ExceptionOptionType<
341
+ S3FilesMountConnectivityException,
342
+ __BaseException
343
+ >
344
+ );
345
+ }
346
+ export declare class S3FilesMountFailureException extends __BaseException {
347
+ readonly name: "S3FilesMountFailureException";
348
+ readonly $fault: "client";
349
+ Type?: string | undefined;
350
+ Message?: string | undefined;
351
+ constructor(
352
+ opts: __ExceptionOptionType<S3FilesMountFailureException, __BaseException>
353
+ );
354
+ }
355
+ export declare class S3FilesMountTimeoutException extends __BaseException {
356
+ readonly name: "S3FilesMountTimeoutException";
357
+ readonly $fault: "client";
358
+ Type?: string | undefined;
359
+ Message?: string | undefined;
360
+ constructor(
361
+ opts: __ExceptionOptionType<S3FilesMountTimeoutException, __BaseException>
362
+ );
363
+ }
334
364
  export declare class SerializedRequestEntityTooLargeException extends __BaseException {
335
365
  readonly name: "SerializedRequestEntityTooLargeException";
336
366
  readonly $fault: "client";
@@ -42,6 +42,9 @@ export declare var ResourceConflictException$: StaticErrorSchema;
42
42
  export declare var ResourceInUseException$: StaticErrorSchema;
43
43
  export declare var ResourceNotFoundException$: StaticErrorSchema;
44
44
  export declare var ResourceNotReadyException$: StaticErrorSchema;
45
+ export declare var S3FilesMountConnectivityException$: StaticErrorSchema;
46
+ export declare var S3FilesMountFailureException$: StaticErrorSchema;
47
+ export declare var S3FilesMountTimeoutException$: StaticErrorSchema;
45
48
  export declare var SerializedRequestEntityTooLargeException$: StaticErrorSchema;
46
49
  export declare var ServiceException$: StaticErrorSchema;
47
50
  export declare var SnapStartException$: StaticErrorSchema;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lambda",
3
3
  "description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
4
- "version": "3.1024.0",
4
+ "version": "3.1029.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-lambda",
@@ -23,47 +23,47 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.973.26",
27
- "@aws-sdk/credential-provider-node": "^3.972.29",
28
- "@aws-sdk/middleware-host-header": "^3.972.8",
29
- "@aws-sdk/middleware-logger": "^3.972.8",
30
- "@aws-sdk/middleware-recursion-detection": "^3.972.9",
31
- "@aws-sdk/middleware-user-agent": "^3.972.28",
32
- "@aws-sdk/region-config-resolver": "^3.972.10",
33
- "@aws-sdk/types": "^3.973.6",
34
- "@aws-sdk/util-endpoints": "^3.996.5",
35
- "@aws-sdk/util-user-agent-browser": "^3.972.8",
36
- "@aws-sdk/util-user-agent-node": "^3.973.14",
37
- "@smithy/config-resolver": "^4.4.13",
38
- "@smithy/core": "^3.23.13",
39
- "@smithy/eventstream-serde-browser": "^4.2.12",
40
- "@smithy/eventstream-serde-config-resolver": "^4.3.12",
41
- "@smithy/eventstream-serde-node": "^4.2.12",
42
- "@smithy/fetch-http-handler": "^5.3.15",
43
- "@smithy/hash-node": "^4.2.12",
44
- "@smithy/invalid-dependency": "^4.2.12",
45
- "@smithy/middleware-content-length": "^4.2.12",
46
- "@smithy/middleware-endpoint": "^4.4.28",
47
- "@smithy/middleware-retry": "^4.4.46",
48
- "@smithy/middleware-serde": "^4.2.16",
49
- "@smithy/middleware-stack": "^4.2.12",
50
- "@smithy/node-config-provider": "^4.3.12",
51
- "@smithy/node-http-handler": "^4.5.1",
52
- "@smithy/protocol-http": "^5.3.12",
53
- "@smithy/smithy-client": "^4.12.8",
54
- "@smithy/types": "^4.13.1",
55
- "@smithy/url-parser": "^4.2.12",
26
+ "@aws-sdk/core": "^3.973.27",
27
+ "@aws-sdk/credential-provider-node": "^3.972.30",
28
+ "@aws-sdk/middleware-host-header": "^3.972.9",
29
+ "@aws-sdk/middleware-logger": "^3.972.9",
30
+ "@aws-sdk/middleware-recursion-detection": "^3.972.10",
31
+ "@aws-sdk/middleware-user-agent": "^3.972.29",
32
+ "@aws-sdk/region-config-resolver": "^3.972.11",
33
+ "@aws-sdk/types": "^3.973.7",
34
+ "@aws-sdk/util-endpoints": "^3.996.6",
35
+ "@aws-sdk/util-user-agent-browser": "^3.972.9",
36
+ "@aws-sdk/util-user-agent-node": "^3.973.15",
37
+ "@smithy/config-resolver": "^4.4.14",
38
+ "@smithy/core": "^3.23.14",
39
+ "@smithy/eventstream-serde-browser": "^4.2.13",
40
+ "@smithy/eventstream-serde-config-resolver": "^4.3.13",
41
+ "@smithy/eventstream-serde-node": "^4.2.13",
42
+ "@smithy/fetch-http-handler": "^5.3.16",
43
+ "@smithy/hash-node": "^4.2.13",
44
+ "@smithy/invalid-dependency": "^4.2.13",
45
+ "@smithy/middleware-content-length": "^4.2.13",
46
+ "@smithy/middleware-endpoint": "^4.4.29",
47
+ "@smithy/middleware-retry": "^4.5.0",
48
+ "@smithy/middleware-serde": "^4.2.17",
49
+ "@smithy/middleware-stack": "^4.2.13",
50
+ "@smithy/node-config-provider": "^4.3.13",
51
+ "@smithy/node-http-handler": "^4.5.2",
52
+ "@smithy/protocol-http": "^5.3.13",
53
+ "@smithy/smithy-client": "^4.12.9",
54
+ "@smithy/types": "^4.14.0",
55
+ "@smithy/url-parser": "^4.2.13",
56
56
  "@smithy/util-base64": "^4.3.2",
57
57
  "@smithy/util-body-length-browser": "^4.2.2",
58
58
  "@smithy/util-body-length-node": "^4.2.3",
59
- "@smithy/util-defaults-mode-browser": "^4.3.44",
60
- "@smithy/util-defaults-mode-node": "^4.2.48",
61
- "@smithy/util-endpoints": "^3.3.3",
62
- "@smithy/util-middleware": "^4.2.12",
63
- "@smithy/util-retry": "^4.2.13",
64
- "@smithy/util-stream": "^4.5.21",
59
+ "@smithy/util-defaults-mode-browser": "^4.3.45",
60
+ "@smithy/util-defaults-mode-node": "^4.2.49",
61
+ "@smithy/util-endpoints": "^3.3.4",
62
+ "@smithy/util-middleware": "^4.2.13",
63
+ "@smithy/util-retry": "^4.3.0",
64
+ "@smithy/util-stream": "^4.5.22",
65
65
  "@smithy/util-utf8": "^4.2.2",
66
- "@smithy/util-waiter": "^4.2.14",
66
+ "@smithy/util-waiter": "^4.2.15",
67
67
  "tslib": "^2.6.2"
68
68
  },
69
69
  "devDependencies": {
@@ -2546,6 +2546,7 @@ const BucketLocationConstraint = {
2546
2546
  EU: "EU",
2547
2547
  af_south_1: "af-south-1",
2548
2548
  ap_east_1: "ap-east-1",
2549
+ ap_east_2: "ap-east-2",
2549
2550
  ap_northeast_1: "ap-northeast-1",
2550
2551
  ap_northeast_2: "ap-northeast-2",
2551
2552
  ap_northeast_3: "ap-northeast-3",
@@ -2556,7 +2557,10 @@ const BucketLocationConstraint = {
2556
2557
  ap_southeast_3: "ap-southeast-3",
2557
2558
  ap_southeast_4: "ap-southeast-4",
2558
2559
  ap_southeast_5: "ap-southeast-5",
2560
+ ap_southeast_6: "ap-southeast-6",
2561
+ ap_southeast_7: "ap-southeast-7",
2559
2562
  ca_central_1: "ca-central-1",
2563
+ ca_west_1: "ca-west-1",
2560
2564
  cn_north_1: "cn-north-1",
2561
2565
  cn_northwest_1: "cn-northwest-1",
2562
2566
  eu_central_1: "eu-central-1",
@@ -2570,6 +2574,7 @@ const BucketLocationConstraint = {
2570
2574
  il_central_1: "il-central-1",
2571
2575
  me_central_1: "me-central-1",
2572
2576
  me_south_1: "me-south-1",
2577
+ mx_central_1: "mx-central-1",
2573
2578
  sa_east_1: "sa-east-1",
2574
2579
  us_east_2: "us-east-2",
2575
2580
  us_gov_east_1: "us-gov-east-1",
@@ -109,6 +109,7 @@ export const BucketLocationConstraint = {
109
109
  EU: "EU",
110
110
  af_south_1: "af-south-1",
111
111
  ap_east_1: "ap-east-1",
112
+ ap_east_2: "ap-east-2",
112
113
  ap_northeast_1: "ap-northeast-1",
113
114
  ap_northeast_2: "ap-northeast-2",
114
115
  ap_northeast_3: "ap-northeast-3",
@@ -119,7 +120,10 @@ export const BucketLocationConstraint = {
119
120
  ap_southeast_3: "ap-southeast-3",
120
121
  ap_southeast_4: "ap-southeast-4",
121
122
  ap_southeast_5: "ap-southeast-5",
123
+ ap_southeast_6: "ap-southeast-6",
124
+ ap_southeast_7: "ap-southeast-7",
122
125
  ca_central_1: "ca-central-1",
126
+ ca_west_1: "ca-west-1",
123
127
  cn_north_1: "cn-north-1",
124
128
  cn_northwest_1: "cn-northwest-1",
125
129
  eu_central_1: "eu-central-1",
@@ -133,6 +137,7 @@ export const BucketLocationConstraint = {
133
137
  il_central_1: "il-central-1",
134
138
  me_central_1: "me-central-1",
135
139
  me_south_1: "me-south-1",
140
+ mx_central_1: "mx-central-1",
136
141
  sa_east_1: "sa-east-1",
137
142
  us_east_2: "us-east-2",
138
143
  us_gov_east_1: "us-gov-east-1",
@@ -187,7 +187,7 @@ declare const CreateBucketCommand_base: {
187
187
  * ACL: "private" || "public-read" || "public-read-write" || "authenticated-read",
188
188
  * Bucket: "STRING_VALUE", // required
189
189
  * CreateBucketConfiguration: { // CreateBucketConfiguration
190
- * LocationConstraint: "af-south-1" || "ap-east-1" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ap-south-1" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-southeast-4" || "ap-southeast-5" || "ca-central-1" || "cn-north-1" || "cn-northwest-1" || "EU" || "eu-central-1" || "eu-central-2" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "il-central-1" || "me-central-1" || "me-south-1" || "sa-east-1" || "us-east-2" || "us-gov-east-1" || "us-gov-west-1" || "us-west-1" || "us-west-2",
190
+ * LocationConstraint: "af-south-1" || "ap-east-1" || "ap-east-2" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ap-south-1" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-southeast-4" || "ap-southeast-5" || "ap-southeast-6" || "ap-southeast-7" || "ca-central-1" || "ca-west-1" || "cn-north-1" || "cn-northwest-1" || "EU" || "eu-central-1" || "eu-central-2" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "il-central-1" || "me-central-1" || "me-south-1" || "mx-central-1" || "sa-east-1" || "us-east-2" || "us-gov-east-1" || "us-gov-west-1" || "us-west-1" || "us-west-2",
191
191
  * Location: { // LocationInfo
192
192
  * Type: "AvailabilityZone" || "LocalZone",
193
193
  * Name: "STRING_VALUE",
@@ -84,7 +84,7 @@ declare const GetBucketLocationCommand_base: {
84
84
  * const command = new GetBucketLocationCommand(input);
85
85
  * const response = await client.send(command);
86
86
  * // { // GetBucketLocationOutput
87
- * // LocationConstraint: "af-south-1" || "ap-east-1" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ap-south-1" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-southeast-4" || "ap-southeast-5" || "ca-central-1" || "cn-north-1" || "cn-northwest-1" || "EU" || "eu-central-1" || "eu-central-2" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "il-central-1" || "me-central-1" || "me-south-1" || "sa-east-1" || "us-east-2" || "us-gov-east-1" || "us-gov-west-1" || "us-west-1" || "us-west-2",
87
+ * // LocationConstraint: "af-south-1" || "ap-east-1" || "ap-east-2" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ap-south-1" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-southeast-4" || "ap-southeast-5" || "ap-southeast-6" || "ap-southeast-7" || "ca-central-1" || "ca-west-1" || "cn-north-1" || "cn-northwest-1" || "EU" || "eu-central-1" || "eu-central-2" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "il-central-1" || "me-central-1" || "me-south-1" || "mx-central-1" || "sa-east-1" || "us-east-2" || "us-gov-east-1" || "us-gov-west-1" || "us-west-1" || "us-west-2",
88
88
  * // };
89
89
  *
90
90
  * ```
@@ -281,6 +281,7 @@ export declare const BucketLocationConstraint: {
281
281
  readonly EU: "EU";
282
282
  readonly af_south_1: "af-south-1";
283
283
  readonly ap_east_1: "ap-east-1";
284
+ readonly ap_east_2: "ap-east-2";
284
285
  readonly ap_northeast_1: "ap-northeast-1";
285
286
  readonly ap_northeast_2: "ap-northeast-2";
286
287
  readonly ap_northeast_3: "ap-northeast-3";
@@ -291,7 +292,10 @@ export declare const BucketLocationConstraint: {
291
292
  readonly ap_southeast_3: "ap-southeast-3";
292
293
  readonly ap_southeast_4: "ap-southeast-4";
293
294
  readonly ap_southeast_5: "ap-southeast-5";
295
+ readonly ap_southeast_6: "ap-southeast-6";
296
+ readonly ap_southeast_7: "ap-southeast-7";
294
297
  readonly ca_central_1: "ca-central-1";
298
+ readonly ca_west_1: "ca-west-1";
295
299
  readonly cn_north_1: "cn-north-1";
296
300
  readonly cn_northwest_1: "cn-northwest-1";
297
301
  readonly eu_central_1: "eu-central-1";
@@ -305,6 +309,7 @@ export declare const BucketLocationConstraint: {
305
309
  readonly il_central_1: "il-central-1";
306
310
  readonly me_central_1: "me-central-1";
307
311
  readonly me_south_1: "me-south-1";
312
+ readonly mx_central_1: "mx-central-1";
308
313
  readonly sa_east_1: "sa-east-1";
309
314
  readonly us_east_2: "us-east-2";
310
315
  readonly us_gov_east_1: "us-gov-east-1";
@@ -143,6 +143,7 @@ export declare const BucketLocationConstraint: {
143
143
  readonly EU: "EU";
144
144
  readonly af_south_1: "af-south-1";
145
145
  readonly ap_east_1: "ap-east-1";
146
+ readonly ap_east_2: "ap-east-2";
146
147
  readonly ap_northeast_1: "ap-northeast-1";
147
148
  readonly ap_northeast_2: "ap-northeast-2";
148
149
  readonly ap_northeast_3: "ap-northeast-3";
@@ -153,7 +154,10 @@ export declare const BucketLocationConstraint: {
153
154
  readonly ap_southeast_3: "ap-southeast-3";
154
155
  readonly ap_southeast_4: "ap-southeast-4";
155
156
  readonly ap_southeast_5: "ap-southeast-5";
157
+ readonly ap_southeast_6: "ap-southeast-6";
158
+ readonly ap_southeast_7: "ap-southeast-7";
156
159
  readonly ca_central_1: "ca-central-1";
160
+ readonly ca_west_1: "ca-west-1";
157
161
  readonly cn_north_1: "cn-north-1";
158
162
  readonly cn_northwest_1: "cn-northwest-1";
159
163
  readonly eu_central_1: "eu-central-1";
@@ -167,6 +171,7 @@ export declare const BucketLocationConstraint: {
167
171
  readonly il_central_1: "il-central-1";
168
172
  readonly me_central_1: "me-central-1";
169
173
  readonly me_south_1: "me-south-1";
174
+ readonly mx_central_1: "mx-central-1";
170
175
  readonly sa_east_1: "sa-east-1";
171
176
  readonly us_east_2: "us-east-2";
172
177
  readonly us_gov_east_1: "us-gov-east-1";