@alliander-opensource/aws-jwt-sts 0.3.4 → 0.3.6

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 (2557) hide show
  1. package/.jsii +8951 -0
  2. package/dist/index.d.ts +6 -0
  3. package/dist/index.js +12 -5
  4. package/dist/index.sign.d.ts +1 -1
  5. package/dist/index.sign.js +2 -2
  6. package/dist/test/index.test.js +27 -5
  7. package/dist/tsconfig.tsbuildinfo +1 -1
  8. package/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
  9. package/node_modules/@aws/lambda-invoke-store/README.md +198 -0
  10. package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
  11. package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
  12. package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
  13. package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +49 -0
  14. package/node_modules/@aws/lambda-invoke-store/package.json +55 -0
  15. package/node_modules/@aws-lambda-powertools/commons/README.md +7 -15
  16. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts.map +1 -1
  17. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.js +3 -2
  18. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts +3 -3
  19. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.js +3 -3
  20. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts.map +1 -1
  21. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.js +1 -0
  22. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts +2 -1
  23. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts.map +1 -1
  24. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.js +3 -1
  25. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.d.ts +23 -0
  26. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.d.ts.map +1 -0
  27. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.js +130 -0
  28. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts +14 -6
  29. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts.map +1 -1
  30. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.js +28 -12
  31. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts +5 -5
  32. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts.map +1 -1
  33. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.js +27 -21
  34. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts +43 -11
  35. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts.map +1 -1
  36. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.js +59 -15
  37. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts +6 -6
  38. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts.map +1 -1
  39. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts +1 -1
  40. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts.map +1 -1
  41. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.js +2 -2
  42. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts +1 -1
  43. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.js +1 -1
  44. package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts.map +1 -1
  45. package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.js +3 -2
  46. package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts +3 -3
  47. package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.js +3 -3
  48. package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts.map +1 -1
  49. package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.js +1 -0
  50. package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts +2 -1
  51. package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts.map +1 -1
  52. package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.js +2 -1
  53. package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.d.ts +23 -0
  54. package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.d.ts.map +1 -0
  55. package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.js +127 -0
  56. package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts +14 -6
  57. package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts.map +1 -1
  58. package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.js +28 -13
  59. package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts +5 -5
  60. package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts.map +1 -1
  61. package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.js +11 -7
  62. package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts +43 -11
  63. package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts.map +1 -1
  64. package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.js +57 -15
  65. package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts +6 -6
  66. package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts.map +1 -1
  67. package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts +1 -1
  68. package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts.map +1 -1
  69. package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.js +2 -2
  70. package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts +1 -1
  71. package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.js +1 -1
  72. package/node_modules/@aws-lambda-powertools/commons/package.json +12 -1
  73. package/node_modules/@aws-lambda-powertools/logger/README.md +6 -3
  74. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.d.ts +23 -0
  75. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.d.ts.map +1 -0
  76. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.js +134 -0
  77. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts +8 -27
  78. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts.map +1 -1
  79. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.js +113 -138
  80. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts +1 -10
  81. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts.map +1 -1
  82. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.js +11 -20
  83. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.js +2 -5
  84. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.d.ts.map +1 -1
  85. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.js +2 -1
  86. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.d.ts.map +1 -1
  87. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.js +6 -2
  88. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.d.ts.map +1 -1
  89. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.js +7 -4
  90. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.d.ts +1 -1
  91. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts +4 -3
  92. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts.map +1 -1
  93. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts +2 -12
  94. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts.map +1 -1
  95. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts +10 -4
  96. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts.map +1 -1
  97. package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.d.ts +23 -0
  98. package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.d.ts.map +1 -0
  99. package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.js +131 -0
  100. package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts +8 -27
  101. package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts.map +1 -1
  102. package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.js +114 -136
  103. package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts +1 -10
  104. package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts.map +1 -1
  105. package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.js +11 -20
  106. package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.js +2 -2
  107. package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.d.ts.map +1 -1
  108. package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.js +2 -1
  109. package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.d.ts.map +1 -1
  110. package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.js +6 -2
  111. package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.d.ts.map +1 -1
  112. package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.js +7 -4
  113. package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.d.ts +1 -1
  114. package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts +4 -3
  115. package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts.map +1 -1
  116. package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts +2 -12
  117. package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts.map +1 -1
  118. package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts +10 -4
  119. package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts.map +1 -1
  120. package/node_modules/@aws-lambda-powertools/logger/package.json +5 -5
  121. package/node_modules/@aws-sdk/client-kms/README.md +3 -60
  122. package/node_modules/@aws-sdk/client-kms/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
  123. package/node_modules/@aws-sdk/client-kms/dist-cjs/endpoint/ruleset.js +1 -1
  124. package/node_modules/@aws-sdk/client-kms/dist-cjs/index.js +3294 -4498
  125. package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.browser.js +3 -4
  126. package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.js +5 -8
  127. package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.shared.js +8 -0
  128. package/node_modules/@aws-sdk/client-kms/dist-es/KMS.js +19 -1
  129. package/node_modules/@aws-sdk/client-kms/dist-es/KMSClient.js +4 -2
  130. package/node_modules/@aws-sdk/client-kms/dist-es/auth/httpAuthSchemeProvider.js +3 -4
  131. package/node_modules/@aws-sdk/client-kms/dist-es/commands/CancelKeyDeletionCommand.js +3 -9
  132. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ConnectCustomKeyStoreCommand.js +3 -9
  133. package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateAliasCommand.js +3 -9
  134. package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateCustomKeyStoreCommand.js +3 -10
  135. package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateGrantCommand.js +3 -9
  136. package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateKeyCommand.js +3 -9
  137. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DecryptCommand.js +3 -10
  138. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteAliasCommand.js +3 -9
  139. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteCustomKeyStoreCommand.js +3 -9
  140. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteImportedKeyMaterialCommand.js +3 -9
  141. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeriveSharedSecretCommand.js +3 -10
  142. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DescribeCustomKeyStoresCommand.js +3 -10
  143. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DescribeKeyCommand.js +3 -9
  144. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisableKeyCommand.js +3 -9
  145. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisableKeyRotationCommand.js +3 -9
  146. package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisconnectCustomKeyStoreCommand.js +3 -9
  147. package/node_modules/@aws-sdk/client-kms/dist-es/commands/EnableKeyCommand.js +3 -9
  148. package/node_modules/@aws-sdk/client-kms/dist-es/commands/EnableKeyRotationCommand.js +3 -9
  149. package/node_modules/@aws-sdk/client-kms/dist-es/commands/EncryptCommand.js +3 -10
  150. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyCommand.js +3 -10
  151. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyPairCommand.js +3 -10
  152. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +3 -9
  153. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyWithoutPlaintextCommand.js +3 -9
  154. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateMacCommand.js +3 -10
  155. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateRandomCommand.js +3 -10
  156. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetKeyPolicyCommand.js +3 -9
  157. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetKeyRotationStatusCommand.js +3 -9
  158. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetParametersForImportCommand.js +3 -10
  159. package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetPublicKeyCommand.js +3 -9
  160. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ImportKeyMaterialCommand.js +3 -9
  161. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListAliasesCommand.js +3 -9
  162. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListGrantsCommand.js +3 -9
  163. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeyPoliciesCommand.js +3 -9
  164. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeyRotationsCommand.js +3 -9
  165. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeysCommand.js +3 -9
  166. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListResourceTagsCommand.js +3 -9
  167. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListRetirableGrantsCommand.js +3 -9
  168. package/node_modules/@aws-sdk/client-kms/dist-es/commands/PutKeyPolicyCommand.js +3 -9
  169. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ReEncryptCommand.js +3 -9
  170. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ReplicateKeyCommand.js +3 -9
  171. package/node_modules/@aws-sdk/client-kms/dist-es/commands/RetireGrantCommand.js +3 -9
  172. package/node_modules/@aws-sdk/client-kms/dist-es/commands/RevokeGrantCommand.js +3 -9
  173. package/node_modules/@aws-sdk/client-kms/dist-es/commands/RotateKeyOnDemandCommand.js +3 -9
  174. package/node_modules/@aws-sdk/client-kms/dist-es/commands/ScheduleKeyDeletionCommand.js +3 -9
  175. package/node_modules/@aws-sdk/client-kms/dist-es/commands/SignCommand.js +3 -10
  176. package/node_modules/@aws-sdk/client-kms/dist-es/commands/TagResourceCommand.js +3 -9
  177. package/node_modules/@aws-sdk/client-kms/dist-es/commands/UntagResourceCommand.js +3 -9
  178. package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateAliasCommand.js +3 -9
  179. package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateCustomKeyStoreCommand.js +3 -10
  180. package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateKeyDescriptionCommand.js +3 -9
  181. package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdatePrimaryRegionCommand.js +3 -9
  182. package/node_modules/@aws-sdk/client-kms/dist-es/commands/VerifyCommand.js +3 -10
  183. package/node_modules/@aws-sdk/client-kms/dist-es/commands/VerifyMacCommand.js +3 -10
  184. package/node_modules/@aws-sdk/client-kms/dist-es/endpoint/ruleset.js +1 -1
  185. package/node_modules/@aws-sdk/client-kms/dist-es/index.js +4 -1
  186. package/node_modules/@aws-sdk/client-kms/dist-es/models/enums.js +211 -0
  187. package/node_modules/@aws-sdk/client-kms/dist-es/models/errors.js +577 -0
  188. package/node_modules/@aws-sdk/client-kms/dist-es/models/models_0.js +1 -863
  189. package/node_modules/@aws-sdk/client-kms/dist-es/pagination/index.js +1 -1
  190. package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.browser.js +3 -4
  191. package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.js +6 -9
  192. package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.shared.js +8 -0
  193. package/node_modules/@aws-sdk/client-kms/dist-es/schemas/schemas_0.js +1379 -0
  194. package/node_modules/@aws-sdk/client-kms/dist-types/KMS.d.ts +59 -2
  195. package/node_modules/@aws-sdk/client-kms/dist-types/KMSClient.d.ts +12 -11
  196. package/node_modules/@aws-sdk/client-kms/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  197. package/node_modules/@aws-sdk/client-kms/dist-types/auth/httpAuthSchemeProvider.d.ts +3 -3
  198. package/node_modules/@aws-sdk/client-kms/dist-types/commands/CancelKeyDeletionCommand.d.ts +5 -3
  199. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ConnectCustomKeyStoreCommand.d.ts +5 -3
  200. package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateAliasCommand.d.ts +5 -3
  201. package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateCustomKeyStoreCommand.d.ts +6 -3
  202. package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateGrantCommand.d.ts +5 -3
  203. package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateKeyCommand.d.ts +11 -8
  204. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DecryptCommand.d.ts +11 -9
  205. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteAliasCommand.d.ts +5 -3
  206. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteCustomKeyStoreCommand.d.ts +5 -3
  207. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteImportedKeyMaterialCommand.d.ts +19 -3
  208. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeriveSharedSecretCommand.d.ts +10 -8
  209. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DescribeCustomKeyStoresCommand.d.ts +6 -3
  210. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DescribeKeyCommand.d.ts +10 -8
  211. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisableKeyCommand.d.ts +5 -3
  212. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisableKeyRotationCommand.d.ts +7 -5
  213. package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisconnectCustomKeyStoreCommand.d.ts +5 -3
  214. package/node_modules/@aws-sdk/client-kms/dist-types/commands/EnableKeyCommand.d.ts +5 -3
  215. package/node_modules/@aws-sdk/client-kms/dist-types/commands/EnableKeyRotationCommand.d.ts +8 -6
  216. package/node_modules/@aws-sdk/client-kms/dist-types/commands/EncryptCommand.d.ts +5 -3
  217. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyCommand.d.ts +11 -9
  218. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyPairCommand.d.ts +14 -12
  219. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyPairWithoutPlaintextCommand.d.ts +7 -5
  220. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyWithoutPlaintextCommand.d.ts +5 -3
  221. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateMacCommand.d.ts +5 -3
  222. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateRandomCommand.d.ts +10 -8
  223. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetKeyPolicyCommand.d.ts +5 -3
  224. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetKeyRotationStatusCommand.d.ts +6 -4
  225. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetParametersForImportCommand.d.ts +5 -3
  226. package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetPublicKeyCommand.d.ts +7 -5
  227. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ImportKeyMaterialCommand.d.ts +35 -15
  228. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListAliasesCommand.d.ts +5 -3
  229. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListGrantsCommand.d.ts +5 -3
  230. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeyPoliciesCommand.d.ts +5 -3
  231. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeyRotationsCommand.d.ts +6 -4
  232. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeysCommand.d.ts +5 -3
  233. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListResourceTagsCommand.d.ts +5 -3
  234. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListRetirableGrantsCommand.d.ts +5 -3
  235. package/node_modules/@aws-sdk/client-kms/dist-types/commands/PutKeyPolicyCommand.d.ts +5 -3
  236. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ReEncryptCommand.d.ts +5 -3
  237. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ReplicateKeyCommand.d.ts +7 -5
  238. package/node_modules/@aws-sdk/client-kms/dist-types/commands/RetireGrantCommand.d.ts +5 -3
  239. package/node_modules/@aws-sdk/client-kms/dist-types/commands/RevokeGrantCommand.d.ts +5 -3
  240. package/node_modules/@aws-sdk/client-kms/dist-types/commands/RotateKeyOnDemandCommand.d.ts +13 -12
  241. package/node_modules/@aws-sdk/client-kms/dist-types/commands/ScheduleKeyDeletionCommand.d.ts +5 -3
  242. package/node_modules/@aws-sdk/client-kms/dist-types/commands/SignCommand.d.ts +7 -5
  243. package/node_modules/@aws-sdk/client-kms/dist-types/commands/TagResourceCommand.d.ts +8 -7
  244. package/node_modules/@aws-sdk/client-kms/dist-types/commands/UntagResourceCommand.d.ts +7 -5
  245. package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateAliasCommand.d.ts +5 -3
  246. package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateCustomKeyStoreCommand.d.ts +6 -3
  247. package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateKeyDescriptionCommand.d.ts +5 -3
  248. package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdatePrimaryRegionCommand.d.ts +5 -3
  249. package/node_modules/@aws-sdk/client-kms/dist-types/commands/VerifyCommand.d.ts +7 -5
  250. package/node_modules/@aws-sdk/client-kms/dist-types/commands/VerifyMacCommand.d.ts +5 -3
  251. package/node_modules/@aws-sdk/client-kms/dist-types/endpoint/EndpointParameters.d.ts +13 -1
  252. package/node_modules/@aws-sdk/client-kms/dist-types/endpoint/endpointResolver.d.ts +5 -2
  253. package/node_modules/@aws-sdk/client-kms/dist-types/extensionConfiguration.d.ts +4 -4
  254. package/node_modules/@aws-sdk/client-kms/dist-types/index.d.ts +6 -2
  255. package/node_modules/@aws-sdk/client-kms/dist-types/models/KMSServiceException.d.ts +1 -1
  256. package/node_modules/@aws-sdk/client-kms/dist-types/models/enums.d.ts +435 -0
  257. package/node_modules/@aws-sdk/client-kms/dist-types/models/errors.d.ts +769 -0
  258. package/node_modules/@aws-sdk/client-kms/dist-types/models/models_0.d.ts +196 -1381
  259. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/DescribeCustomKeyStoresPaginator.d.ts +1 -1
  260. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/Interfaces.d.ts +1 -1
  261. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListAliasesPaginator.d.ts +1 -1
  262. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListGrantsPaginator.d.ts +1 -1
  263. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeyPoliciesPaginator.d.ts +1 -1
  264. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeyRotationsPaginator.d.ts +1 -1
  265. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeysPaginator.d.ts +1 -1
  266. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListResourceTagsPaginator.d.ts +1 -1
  267. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListRetirableGrantsPaginator.d.ts +1 -1
  268. package/node_modules/@aws-sdk/client-kms/dist-types/pagination/index.d.ts +1 -1
  269. package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.browser.d.ts +7 -2
  270. package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.d.ts +8 -3
  271. package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.native.d.ts +7 -2
  272. package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.shared.d.ts +7 -1
  273. package/node_modules/@aws-sdk/client-kms/dist-types/runtimeExtensions.d.ts +1 -1
  274. package/node_modules/@aws-sdk/client-kms/dist-types/schemas/schemas_0.d.ts +208 -0
  275. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/KMS.d.ts +61 -1
  276. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/KMSClient.d.ts +3 -3
  277. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  278. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/index.d.ts +4 -1
  279. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/KMSServiceException.d.ts +1 -1
  280. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/enums.d.ts +257 -0
  281. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/errors.d.ts +381 -0
  282. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/models_0.d.ts +33 -682
  283. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/pagination/index.d.ts +1 -1
  284. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -1
  285. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.d.ts +10 -4
  286. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -1
  287. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -0
  288. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/schemas/schemas_0.d.ts +212 -0
  289. package/node_modules/@aws-sdk/client-kms/package.json +48 -45
  290. package/node_modules/@aws-sdk/client-s3/README.md +51 -98
  291. package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +8 -9
  292. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +3 -3
  293. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +6893 -11519
  294. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +3 -4
  295. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +7 -12
  296. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +8 -0
  297. package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +37 -1
  298. package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +4 -2
  299. package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +8 -9
  300. package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -6
  301. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -7
  302. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -7
  303. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -6
  304. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +27 -0
  305. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +3 -7
  306. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -7
  307. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -7
  308. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +3 -9
  309. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +3 -9
  310. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +3 -9
  311. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +3 -9
  312. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +3 -9
  313. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +3 -9
  314. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +3 -9
  315. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +20 -0
  316. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +3 -9
  317. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +3 -9
  318. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +3 -9
  319. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +3 -9
  320. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +3 -9
  321. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +3 -9
  322. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +3 -9
  323. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -6
  324. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -6
  325. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +3 -7
  326. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +3 -9
  327. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +23 -0
  328. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -6
  329. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -6
  330. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -6
  331. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -6
  332. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -7
  333. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -6
  334. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -7
  335. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -6
  336. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -6
  337. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -6
  338. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +24 -0
  339. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -6
  340. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -6
  341. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -6
  342. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -6
  343. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -6
  344. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -6
  345. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -6
  346. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -6
  347. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -6
  348. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -6
  349. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -6
  350. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -6
  351. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -7
  352. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +4 -9
  353. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -6
  354. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -6
  355. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -6
  356. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -6
  357. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +3 -10
  358. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -6
  359. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -6
  360. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -7
  361. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -6
  362. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -6
  363. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -7
  364. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -6
  365. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -6
  366. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -6
  367. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -6
  368. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -6
  369. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -6
  370. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -6
  371. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -7
  372. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +26 -0
  373. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +3 -7
  374. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +3 -7
  375. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +3 -9
  376. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +3 -7
  377. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +3 -8
  378. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +3 -9
  379. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +3 -10
  380. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +3 -7
  381. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +3 -7
  382. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +3 -9
  383. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +3 -9
  384. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +3 -7
  385. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +3 -7
  386. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +3 -7
  387. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +3 -7
  388. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +3 -7
  389. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +3 -7
  390. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +3 -7
  391. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +3 -7
  392. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +3 -8
  393. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +3 -7
  394. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +3 -7
  395. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +3 -7
  396. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +3 -7
  397. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +3 -7
  398. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -6
  399. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +3 -8
  400. package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -7
  401. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +27 -0
  402. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +27 -0
  403. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +28 -0
  404. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +3 -8
  405. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -7
  406. package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +3 -10
  407. package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +8 -0
  408. package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/EndpointParameters.js +2 -0
  409. package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +3 -3
  410. package/node_modules/@aws-sdk/client-s3/dist-es/index.js +5 -1
  411. package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +399 -0
  412. package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +185 -0
  413. package/node_modules/@aws-sdk/client-s3/dist-es/models/models_0.js +1 -595
  414. package/node_modules/@aws-sdk/client-s3/dist-es/models/models_1.js +1 -210
  415. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +3 -4
  416. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +8 -13
  417. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +8 -0
  418. package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +3238 -0
  419. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +1 -1
  420. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +1 -1
  421. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +1 -1
  422. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +1 -1
  423. package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +110 -1
  424. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +22 -14
  425. package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  426. package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
  427. package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +25 -25
  428. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +54 -60
  429. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +111 -118
  430. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +86 -101
  431. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +187 -0
  432. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +33 -15
  433. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +100 -123
  434. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +53 -53
  435. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +15 -12
  436. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +18 -15
  437. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +12 -8
  438. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +24 -21
  439. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +8 -3
  440. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +12 -9
  441. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +31 -31
  442. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +119 -0
  443. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +34 -11
  444. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +17 -15
  445. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +13 -9
  446. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +28 -26
  447. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +13 -10
  448. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +12 -7
  449. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +17 -13
  450. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +53 -26
  451. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +15 -10
  452. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +50 -47
  453. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +16 -9
  454. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +77 -0
  455. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +22 -20
  456. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +18 -22
  457. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +16 -14
  458. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +12 -9
  459. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +29 -22
  460. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +8 -3
  461. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +15 -12
  462. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +36 -40
  463. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +26 -11
  464. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +11 -13
  465. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +151 -0
  466. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +33 -11
  467. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +18 -14
  468. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +15 -11
  469. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +17 -11
  470. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +33 -33
  471. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +13 -9
  472. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +20 -16
  473. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +10 -6
  474. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +12 -7
  475. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +11 -6
  476. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +14 -10
  477. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +17 -14
  478. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +64 -74
  479. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +75 -85
  480. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +9 -5
  481. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +11 -6
  482. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +9 -5
  483. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +16 -13
  484. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +12 -8
  485. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +23 -15
  486. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +45 -38
  487. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +59 -66
  488. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +22 -20
  489. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +8 -3
  490. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +21 -19
  491. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +23 -21
  492. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +20 -20
  493. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +18 -12
  494. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +50 -60
  495. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +15 -19
  496. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +17 -18
  497. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +36 -34
  498. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +30 -35
  499. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +78 -0
  500. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +21 -20
  501. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +61 -70
  502. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +30 -27
  503. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +31 -30
  504. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +53 -51
  505. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +19 -15
  506. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +42 -41
  507. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +61 -65
  508. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +37 -42
  509. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +20 -17
  510. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +37 -38
  511. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +12 -9
  512. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +32 -32
  513. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +40 -42
  514. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +12 -8
  515. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +30 -31
  516. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +28 -26
  517. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +27 -21
  518. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +67 -65
  519. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +87 -85
  520. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +9 -6
  521. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +18 -14
  522. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +12 -7
  523. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +26 -27
  524. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +20 -15
  525. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +42 -43
  526. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +86 -89
  527. package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +58 -62
  528. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +166 -0
  529. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +118 -0
  530. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +259 -0
  531. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +75 -77
  532. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +91 -99
  533. package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +37 -36
  534. package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +8 -0
  535. package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/EndpointParameters.d.ts +16 -1
  536. package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/endpointResolver.d.ts +5 -2
  537. package/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +4 -4
  538. package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +5 -1
  539. package/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +1 -1
  540. package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +975 -0
  541. package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +208 -0
  542. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +5432 -3703
  543. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +611 -2914
  544. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/Interfaces.d.ts +1 -1
  545. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListBucketsPaginator.d.ts +1 -1
  546. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListDirectoryBucketsPaginator.d.ts +1 -1
  547. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectsV2Paginator.d.ts +1 -1
  548. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListPartsPaginator.d.ts +1 -1
  549. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +12 -3
  550. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +13 -4
  551. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +12 -3
  552. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +9 -2
  553. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeExtensions.d.ts +1 -1
  554. package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +457 -0
  555. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +231 -1
  556. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +54 -6
  557. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  558. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +3 -3
  559. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +47 -0
  560. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +47 -0
  561. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +47 -0
  562. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +51 -0
  563. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +1 -1
  564. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +1 -1
  565. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +45 -0
  566. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +1 -1
  567. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +1 -1
  568. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +1 -1
  569. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +1 -1
  570. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  571. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +1 -1
  572. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +1 -1
  573. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +1 -1
  574. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +1 -1
  575. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +1 -1
  576. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +1 -1
  577. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
  578. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +1 -1
  579. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +1 -1
  580. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +1 -1
  581. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +1 -1
  582. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +1 -1
  583. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +1 -1
  584. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
  585. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +1 -1
  586. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +1 -1
  587. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  588. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
  589. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +2 -1
  590. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +47 -0
  591. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +47 -0
  592. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +51 -0
  593. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +8 -0
  594. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +6 -0
  595. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +5 -1
  596. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +1 -1
  597. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +523 -0
  598. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +92 -0
  599. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +505 -574
  600. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +70 -495
  601. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +17 -4
  602. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +18 -7
  603. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +17 -4
  604. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -3
  605. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +462 -0
  606. package/node_modules/@aws-sdk/client-s3/package.json +68 -70
  607. package/node_modules/@aws-sdk/client-sso/README.md +1 -9
  608. package/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +27 -20
  609. package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +1 -1
  610. package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +410 -611
  611. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +3 -4
  612. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +5 -8
  613. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +7 -0
  614. package/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +7 -1
  615. package/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +4 -2
  616. package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +27 -20
  617. package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +3 -10
  618. package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +3 -10
  619. package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +3 -10
  620. package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +3 -10
  621. package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +1 -1
  622. package/node_modules/@aws-sdk/client-sso/dist-es/index.js +3 -1
  623. package/node_modules/@aws-sdk/client-sso/dist-es/models/errors.js +49 -0
  624. package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +1 -75
  625. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +3 -4
  626. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +6 -9
  627. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +7 -0
  628. package/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +152 -0
  629. package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +15 -1
  630. package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +10 -10
  631. package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  632. package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +3 -3
  633. package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +5 -3
  634. package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +5 -3
  635. package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +5 -3
  636. package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +5 -3
  637. package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +13 -1
  638. package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -2
  639. package/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +4 -4
  640. package/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +3 -1
  641. package/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +1 -1
  642. package/node_modules/@aws-sdk/client-sso/dist-types/models/errors.d.ts +53 -0
  643. package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +0 -77
  644. package/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +1 -1
  645. package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +1 -1
  646. package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +1 -1
  647. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +7 -2
  648. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +7 -2
  649. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +7 -2
  650. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +8 -2
  651. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +1 -1
  652. package/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +20 -0
  653. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +19 -1
  654. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +2 -2
  655. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  656. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +3 -1
  657. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +1 -1
  658. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/errors.d.ts +30 -0
  659. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +0 -48
  660. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -1
  661. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +9 -1
  662. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -1
  663. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -0
  664. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
  665. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
  666. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
  667. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
  668. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
  669. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
  670. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
  671. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
  672. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
  673. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
  674. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
  675. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
  676. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
  677. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
  678. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
  679. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
  680. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
  681. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
  682. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
  683. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
  684. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
  685. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
  686. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
  687. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
  688. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
  689. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
  690. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
  691. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
  692. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
  693. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
  694. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
  695. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
  696. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
  697. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
  698. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
  699. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
  700. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
  701. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
  702. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
  703. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
  704. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
  705. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
  706. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
  707. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
  708. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
  709. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
  710. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
  711. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
  712. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
  713. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
  714. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
  715. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
  716. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
  717. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
  718. package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
  719. package/node_modules/@aws-sdk/client-sso/package.json +45 -44
  720. package/node_modules/@aws-sdk/core/LICENSE +201 -0
  721. package/node_modules/@aws-sdk/core/account-id-endpoint.js +0 -1
  722. package/node_modules/@aws-sdk/core/dist-cjs/index.js +2196 -6
  723. package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +48 -88
  724. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +39 -66
  725. package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +281 -365
  726. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1801 -1670
  727. package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +3 -3
  728. package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +1 -0
  729. package/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
  730. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +9 -1
  731. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
  732. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +23 -0
  733. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -0
  734. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -1
  735. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +1 -0
  736. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +7 -1
  737. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +7 -1
  738. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +36 -44
  739. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +25 -61
  740. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +87 -37
  741. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +131 -61
  742. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +135 -0
  743. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +1 -1
  744. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +31 -42
  745. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +36 -7
  746. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +29 -73
  747. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +24 -23
  748. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +36 -20
  749. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +2 -13
  750. package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +1 -1
  751. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +1 -0
  752. package/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
  753. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +1 -1
  754. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +1 -1
  755. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
  756. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +1 -1
  757. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +1 -1
  758. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +61 -0
  759. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -0
  760. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
  761. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +1 -0
  762. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +10 -2
  763. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +10 -2
  764. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +13 -4
  765. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +17 -2
  766. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +2 -2
  767. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +3 -3
  768. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +19 -6
  769. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
  770. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +1 -1
  771. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +1 -1
  772. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +10 -3
  773. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +1 -1
  774. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +1 -1
  775. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +11 -3
  776. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +1 -1
  777. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +3 -3
  778. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +1 -1
  779. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +1 -0
  780. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
  781. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
  782. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -0
  783. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
  784. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +1 -0
  785. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +13 -1
  786. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +13 -1
  787. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +15 -2
  788. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +8 -0
  789. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +1 -1
  790. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +10 -3
  791. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -0
  792. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +3 -1
  793. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +4 -1
  794. package/node_modules/@aws-sdk/core/package.json +24 -26
  795. package/node_modules/@aws-sdk/crc64-nvme/LICENSE +201 -0
  796. package/node_modules/@aws-sdk/crc64-nvme/README.md +61 -0
  797. package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +101 -0
  798. package/node_modules/@aws-sdk/crc64-nvme/dist-es/Crc64Nvme.js +92 -0
  799. package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +2 -0
  800. package/node_modules/@aws-sdk/crc64-nvme/dist-types/Crc64Nvme.d.ts +24 -0
  801. package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +2 -0
  802. package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/Crc64Nvme.d.ts +9 -0
  803. package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +2 -0
  804. package/node_modules/@aws-sdk/crc64-nvme/package.json +50 -0
  805. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +38 -73
  806. package/node_modules/@aws-sdk/credential-provider-env/package.json +14 -13
  807. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +4 -2
  808. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +4 -2
  809. package/node_modules/@aws-sdk/credential-provider-http/package.json +19 -18
  810. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +207 -259
  811. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +3 -10
  812. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +4 -4
  813. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
  814. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +8 -4
  815. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +4 -2
  816. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +4 -2
  817. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +6 -6
  818. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +4 -3
  819. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +11 -0
  820. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +6 -1
  821. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +2 -1
  822. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +2 -1
  823. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +8 -4
  824. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +5 -1
  825. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +9 -0
  826. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +3 -0
  827. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +3 -1
  828. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +3 -1
  829. package/node_modules/@aws-sdk/credential-provider-ini/package.json +25 -23
  830. package/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
  831. package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
  832. package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
  833. package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
  834. package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
  835. package/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
  836. package/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
  837. package/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
  838. package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
  839. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
  840. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
  841. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
  842. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
  843. package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
  844. package/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
  845. package/node_modules/@aws-sdk/credential-provider-node/README.md +3 -3
  846. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +133 -124
  847. package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +55 -44
  848. package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +60 -0
  849. package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +3 -2
  850. package/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
  851. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +3 -2
  852. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
  853. package/node_modules/@aws-sdk/credential-provider-node/package.json +25 -23
  854. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +71 -106
  855. package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +2 -1
  856. package/node_modules/@aws-sdk/credential-provider-process/package.json +15 -14
  857. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +179 -233
  858. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-CVy8iqsZ.js +14 -0
  859. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +10 -0
  860. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +9 -3
  861. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +2 -1
  862. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +1 -1
  863. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +2 -0
  864. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +4 -0
  865. package/node_modules/@aws-sdk/credential-provider-sso/package.json +17 -16
  866. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +5 -3
  867. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +16 -25
  868. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +5 -3
  869. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +2 -3
  870. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +5 -3
  871. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +16 -14
  872. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +334 -450
  873. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +15 -14
  874. package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +42 -60
  875. package/node_modules/@aws-sdk/middleware-expect-continue/dist-es/index.js +18 -6
  876. package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/index.d.ts +3 -1
  877. package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +3 -0
  878. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +14 -13
  879. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +390 -479
  880. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js +25 -9
  881. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -1
  882. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/selectChecksumAlgorithmFunction.js +2 -6
  883. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.d.ts +1 -1
  884. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +0 -1
  885. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/stringHasher.d.ts +1 -1
  886. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.d.ts +1 -1
  887. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +0 -1
  888. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/stringHasher.d.ts +1 -1
  889. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +24 -22
  890. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +35 -63
  891. package/node_modules/@aws-sdk/middleware-host-header/package.json +14 -13
  892. package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +23 -57
  893. package/node_modules/@aws-sdk/middleware-location-constraint/dist-es/index.js +4 -7
  894. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +13 -12
  895. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +44 -75
  896. package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +1 -1
  897. package/node_modules/@aws-sdk/middleware-logger/package.json +14 -13
  898. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +20 -67
  899. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +33 -0
  900. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
  901. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
  902. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
  903. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -37
  904. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
  905. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +29 -0
  906. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
  907. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
  908. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
  909. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -18
  910. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
  911. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
  912. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
  913. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
  914. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
  915. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -18
  916. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
  917. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
  918. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
  919. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +20 -14
  920. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +513 -638
  921. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-middleware.js +15 -10
  922. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +2 -1
  923. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +17 -0
  924. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +2 -0
  925. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +26 -25
  926. package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +65 -92
  927. package/node_modules/@aws-sdk/middleware-ssec/package.json +13 -12
  928. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +170 -203
  929. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +2 -2
  930. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +1 -1
  931. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
  932. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
  933. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
  934. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
  935. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
  936. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
  937. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
  938. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
  939. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
  940. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
  941. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
  942. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
  943. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
  944. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
  945. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
  946. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
  947. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
  948. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
  949. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
  950. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
  951. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
  952. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
  953. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
  954. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
  955. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
  956. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
  957. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
  958. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
  959. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
  960. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
  961. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
  962. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
  963. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
  964. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
  965. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
  966. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
  967. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
  968. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
  969. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
  970. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
  971. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
  972. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
  973. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
  974. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
  975. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
  976. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
  977. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
  978. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
  979. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
  980. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
  981. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
  982. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
  983. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
  984. package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
  985. package/node_modules/@aws-sdk/middleware-user-agent/package.json +17 -16
  986. package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -2
  987. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
  988. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
  989. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +7 -0
  990. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +349 -0
  991. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
  992. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
  993. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
  994. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +47 -0
  995. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +1 -1
  996. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +482 -854
  997. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +2 -2
  998. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +3 -4
  999. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +7 -0
  1000. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +2 -0
  1001. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +1 -1
  1002. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +463 -931
  1003. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +2 -2
  1004. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +3 -4
  1005. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +8 -0
  1006. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
  1007. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
  1008. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
  1009. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
  1010. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
  1011. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
  1012. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
  1013. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
  1014. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +4 -0
  1015. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
  1016. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +8 -0
  1017. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
  1018. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
  1019. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
  1020. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
  1021. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
  1022. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
  1023. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
  1024. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +43 -0
  1025. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
  1026. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +119 -0
  1027. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +4 -2
  1028. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +3 -10
  1029. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +1 -1
  1030. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +4 -1
  1031. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
  1032. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
  1033. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -190
  1034. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +2 -2
  1035. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +4 -5
  1036. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +7 -0
  1037. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +134 -0
  1038. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +4 -2
  1039. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +3 -10
  1040. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +3 -10
  1041. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +22 -10
  1042. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +1 -1
  1043. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +3 -1
  1044. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
  1045. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -102
  1046. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +2 -2
  1047. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +4 -5
  1048. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +8 -0
  1049. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +189 -0
  1050. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
  1051. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +189 -0
  1052. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  1053. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
  1054. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
  1055. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
  1056. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
  1057. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
  1058. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
  1059. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
  1060. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +17 -0
  1061. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
  1062. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
  1063. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
  1064. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
  1065. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +63 -0
  1066. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +63 -0
  1067. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +62 -0
  1068. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +38 -0
  1069. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
  1070. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +12 -0
  1071. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +2 -2
  1072. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +11 -11
  1073. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  1074. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +3 -3
  1075. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +5 -3
  1076. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +13 -1
  1077. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +5 -2
  1078. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +4 -4
  1079. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +5 -2
  1080. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
  1081. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
  1082. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
  1083. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +1 -279
  1084. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +7 -2
  1085. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +7 -2
  1086. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +7 -2
  1087. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +8 -2
  1088. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +1 -1
  1089. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +16 -0
  1090. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +1 -1
  1091. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +10 -10
  1092. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  1093. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +3 -3
  1094. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +8 -7
  1095. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +10 -8
  1096. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +1 -1
  1097. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +13 -1
  1098. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +5 -2
  1099. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +4 -4
  1100. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +3 -1
  1101. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
  1102. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
  1103. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +7 -131
  1104. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +7 -2
  1105. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +8 -3
  1106. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +7 -2
  1107. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +8 -2
  1108. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +1 -1
  1109. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +20 -0
  1110. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
  1111. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +123 -0
  1112. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  1113. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
  1114. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
  1115. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
  1116. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
  1117. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
  1118. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
  1119. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
  1120. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +11 -0
  1121. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
  1122. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
  1123. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
  1124. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
  1125. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +125 -0
  1126. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +118 -0
  1127. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +129 -0
  1128. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +58 -0
  1129. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
  1130. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +16 -0
  1131. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +2 -2
  1132. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  1133. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +4 -1
  1134. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
  1135. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
  1136. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
  1137. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +0 -105
  1138. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +9 -1
  1139. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +9 -1
  1140. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +9 -1
  1141. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +9 -0
  1142. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +20 -0
  1143. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +3 -3
  1144. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  1145. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -1
  1146. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +1 -1
  1147. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +3 -1
  1148. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
  1149. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
  1150. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +0 -64
  1151. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +9 -1
  1152. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +9 -1
  1153. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +9 -1
  1154. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +9 -0
  1155. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +24 -0
  1156. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
  1157. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
  1158. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
  1159. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
  1160. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
  1161. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
  1162. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
  1163. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
  1164. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
  1165. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
  1166. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
  1167. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
  1168. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
  1169. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
  1170. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
  1171. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
  1172. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
  1173. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
  1174. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
  1175. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
  1176. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
  1177. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
  1178. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
  1179. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
  1180. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
  1181. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
  1182. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
  1183. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
  1184. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
  1185. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
  1186. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
  1187. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
  1188. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
  1189. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
  1190. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
  1191. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
  1192. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
  1193. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
  1194. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
  1195. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
  1196. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
  1197. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
  1198. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
  1199. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
  1200. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
  1201. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
  1202. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
  1203. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
  1204. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
  1205. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
  1206. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
  1207. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
  1208. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
  1209. package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
  1210. package/node_modules/@aws-sdk/nested-clients/package.json +53 -41
  1211. package/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
  1212. package/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
  1213. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +44 -100
  1214. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
  1215. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
  1216. package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +2 -1
  1217. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
  1218. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
  1219. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
  1220. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -0
  1221. package/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +2 -2
  1222. package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +2 -1
  1223. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
  1224. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
  1225. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
  1226. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
  1227. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +2 -1
  1228. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
  1229. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
  1230. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
  1231. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
  1232. package/node_modules/@aws-sdk/region-config-resolver/package.json +18 -15
  1233. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +108 -137
  1234. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +14 -13
  1235. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +143 -220
  1236. package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +5 -2
  1237. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +2 -9
  1238. package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +2 -2
  1239. package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +4 -2
  1240. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +1 -1
  1241. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +3 -2
  1242. package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +2 -1
  1243. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
  1244. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +3 -1
  1245. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +3 -1
  1246. package/node_modules/@aws-sdk/token-providers/package.json +17 -15
  1247. package/node_modules/@aws-sdk/types/dist-cjs/index.js +18 -290
  1248. package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +1 -1
  1249. package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +2 -0
  1250. package/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +9 -1
  1251. package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +1 -0
  1252. package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +10 -0
  1253. package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +2 -0
  1254. package/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +7 -1
  1255. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -0
  1256. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +5 -0
  1257. package/node_modules/@aws-sdk/types/package.json +10 -9
  1258. package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +24 -61
  1259. package/node_modules/@aws-sdk/util-arn-parser/dist-types/index.d.ts +9 -0
  1260. package/node_modules/@aws-sdk/util-arn-parser/package.json +10 -9
  1261. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +398 -436
  1262. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +43 -37
  1263. package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +1 -0
  1264. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +43 -37
  1265. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
  1266. package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +1 -0
  1267. package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
  1268. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +1 -0
  1269. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
  1270. package/node_modules/@aws-sdk/util-endpoints/package.json +13 -11
  1271. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +22 -3
  1272. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
  1273. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +39 -8
  1274. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
  1275. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +37 -6
  1276. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
  1277. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +14 -4
  1278. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +4 -3
  1279. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
  1280. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +5 -0
  1281. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +10 -9
  1282. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +50 -94
  1283. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +1 -2
  1284. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +10 -5
  1285. package/node_modules/@aws-sdk/util-user-agent-node/package.json +14 -13
  1286. package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +106 -155
  1287. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +18 -0
  1288. package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +1 -0
  1289. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
  1290. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +15 -0
  1291. package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +4 -0
  1292. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +1 -0
  1293. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
  1294. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
  1295. package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
  1296. package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
  1297. package/node_modules/@aws-sdk/xml-builder/package.json +19 -10
  1298. package/node_modules/@smithy/abort-controller/dist-cjs/index.js +28 -80
  1299. package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +1 -3
  1300. package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +2 -2
  1301. package/node_modules/@smithy/abort-controller/package.json +4 -3
  1302. package/node_modules/@smithy/chunked-blob-reader/dist-cjs/index.js +9 -37
  1303. package/node_modules/@smithy/chunked-blob-reader/package.json +5 -4
  1304. package/node_modules/@smithy/chunked-blob-reader-native/dist-cjs/index.js +28 -55
  1305. package/node_modules/@smithy/chunked-blob-reader-native/package.json +6 -5
  1306. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +172 -214
  1307. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
  1308. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +5 -5
  1309. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +1 -1
  1310. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +1 -1
  1311. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +2 -2
  1312. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +1 -1
  1313. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +1 -1
  1314. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
  1315. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +1 -1
  1316. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +1 -1
  1317. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +1 -1
  1318. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +1 -1
  1319. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +1 -1
  1320. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +1 -1
  1321. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +3 -3
  1322. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +1 -1
  1323. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
  1324. package/node_modules/@smithy/config-resolver/package.json +8 -6
  1325. package/node_modules/@smithy/core/dist-cjs/index.js +308 -413
  1326. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1030 -927
  1327. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +256 -0
  1328. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +816 -799
  1329. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +600 -732
  1330. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +662 -716
  1331. package/node_modules/@smithy/core/dist-es/index.js +1 -1
  1332. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -1
  1333. package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +0 -1
  1334. package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +129 -53
  1335. package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +41 -19
  1336. package/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +35 -1
  1337. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +38 -23
  1338. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +5 -5
  1339. package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +1 -1
  1340. package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +251 -0
  1341. package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
  1342. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +130 -37
  1343. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +55 -101
  1344. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +38 -12
  1345. package/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
  1346. package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +2 -0
  1347. package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +9 -7
  1348. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +23 -21
  1349. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +5 -1
  1350. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +3 -0
  1351. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +16 -12
  1352. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +5 -6
  1353. package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +27 -11
  1354. package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +2 -0
  1355. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +6 -1
  1356. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +3 -1
  1357. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +12 -14
  1358. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +11 -12
  1359. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +13 -13
  1360. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +169 -189
  1361. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +13 -13
  1362. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +17 -3
  1363. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +17 -12
  1364. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +13 -19
  1365. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
  1366. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +14 -14
  1367. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +22 -0
  1368. package/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -53
  1369. package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
  1370. package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +2 -0
  1371. package/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +101 -0
  1372. package/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +7 -21
  1373. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +1 -1
  1374. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +4 -2
  1375. package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +1 -1
  1376. package/node_modules/@smithy/core/dist-types/index.d.ts +1 -1
  1377. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +2 -2
  1378. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +2 -2
  1379. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +1 -1
  1380. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +1 -1
  1381. package/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +1 -1
  1382. package/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +1 -1
  1383. package/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +1 -1
  1384. package/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +18 -14
  1385. package/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +3 -3
  1386. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +1 -1
  1387. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +1 -1
  1388. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +1 -1
  1389. package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +2 -2
  1390. package/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
  1391. package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
  1392. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +15 -3
  1393. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +48 -5
  1394. package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +2 -2
  1395. package/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +16 -0
  1396. package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +1 -1
  1397. package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +2 -0
  1398. package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +4 -5
  1399. package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +7 -4
  1400. package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +6 -3
  1401. package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +4 -5
  1402. package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +2 -2
  1403. package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +15 -6
  1404. package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +2 -0
  1405. package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +2 -2
  1406. package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +2 -2
  1407. package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +2 -2
  1408. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +11 -12
  1409. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +6 -3
  1410. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +6 -7
  1411. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +38 -28
  1412. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +6 -3
  1413. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +7 -2
  1414. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +12 -4
  1415. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +6 -4
  1416. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
  1417. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +4 -2
  1418. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +7 -0
  1419. package/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +2 -1
  1420. package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
  1421. package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +2 -0
  1422. package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
  1423. package/node_modules/@smithy/core/dist-types/submodules/serde/value/NumericValue.d.ts +1 -1
  1424. package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +1 -1
  1425. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +18 -14
  1426. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +3 -3
  1427. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +1 -1
  1428. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +1 -1
  1429. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
  1430. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
  1431. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +15 -3
  1432. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +48 -5
  1433. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +1 -1
  1434. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -0
  1435. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +2 -0
  1436. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +4 -5
  1437. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +6 -3
  1438. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +6 -3
  1439. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +4 -5
  1440. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +1 -1
  1441. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +14 -5
  1442. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +2 -0
  1443. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +11 -12
  1444. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +6 -3
  1445. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +6 -7
  1446. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +38 -28
  1447. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +6 -3
  1448. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +7 -2
  1449. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +11 -3
  1450. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +6 -7
  1451. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
  1452. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +3 -1
  1453. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +7 -0
  1454. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +1 -0
  1455. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
  1456. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +2 -0
  1457. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
  1458. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +1 -1
  1459. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +1 -1
  1460. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +1 -1
  1461. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +1 -1
  1462. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +1 -1
  1463. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +1 -1
  1464. package/node_modules/@smithy/core/event-streams.d.ts +7 -0
  1465. package/node_modules/@smithy/core/event-streams.js +6 -0
  1466. package/node_modules/@smithy/core/package.json +38 -24
  1467. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +340 -413
  1468. package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +2 -1
  1469. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
  1470. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
  1471. package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +2 -2
  1472. package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
  1473. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +1 -1
  1474. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +1 -1
  1475. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -1
  1476. package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +1 -1
  1477. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +2 -2
  1478. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +1 -1
  1479. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +2 -2
  1480. package/node_modules/@smithy/credential-provider-imds/package.json +7 -6
  1481. package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +372 -459
  1482. package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +3 -0
  1483. package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +2 -0
  1484. package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +2 -1
  1485. package/node_modules/@smithy/eventstream-codec/dist-es/MessageDecoderStream.js +1 -0
  1486. package/node_modules/@smithy/eventstream-codec/dist-es/MessageEncoderStream.js +1 -0
  1487. package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageDecoderStream.js +1 -0
  1488. package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageEncoderStream.js +1 -0
  1489. package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +2 -2
  1490. package/node_modules/@smithy/eventstream-codec/dist-types/HeaderMarshaller.d.ts +1 -1
  1491. package/node_modules/@smithy/eventstream-codec/dist-types/Int64.d.ts +1 -1
  1492. package/node_modules/@smithy/eventstream-codec/dist-types/Message.d.ts +1 -1
  1493. package/node_modules/@smithy/eventstream-codec/dist-types/MessageDecoderStream.d.ts +1 -1
  1494. package/node_modules/@smithy/eventstream-codec/dist-types/MessageEncoderStream.d.ts +1 -1
  1495. package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageDecoderStream.d.ts +1 -1
  1496. package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageEncoderStream.d.ts +1 -1
  1497. package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +1 -1
  1498. package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +1 -1
  1499. package/node_modules/@smithy/eventstream-codec/package.json +6 -5
  1500. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +51 -97
  1501. package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +1 -0
  1502. package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +1 -1
  1503. package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +1 -1
  1504. package/node_modules/@smithy/eventstream-serde-browser/package.json +5 -4
  1505. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +4 -33
  1506. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/EventStreamSerdeConfig.d.ts +1 -1
  1507. package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +4 -3
  1508. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +44 -80
  1509. package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +1 -0
  1510. package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +1 -1
  1511. package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +1 -1
  1512. package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +1 -1
  1513. package/node_modules/@smithy/eventstream-serde-node/package.json +5 -4
  1514. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +120 -171
  1515. package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +2 -0
  1516. package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +1 -1
  1517. package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +2 -2
  1518. package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +1 -1
  1519. package/node_modules/@smithy/eventstream-serde-universal/package.json +9 -6
  1520. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +190 -238
  1521. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +6 -4
  1522. package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +1 -1
  1523. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +4 -3
  1524. package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +1 -1
  1525. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +3 -2
  1526. package/node_modules/@smithy/fetch-http-handler/package.json +10 -9
  1527. package/node_modules/@smithy/hash-blob-browser/dist-cjs/index.js +10 -36
  1528. package/node_modules/@smithy/hash-blob-browser/dist-types/index.d.ts +1 -1
  1529. package/node_modules/@smithy/hash-blob-browser/package.json +7 -6
  1530. package/node_modules/@smithy/hash-node/dist-cjs/index.js +38 -63
  1531. package/node_modules/@smithy/hash-node/dist-es/index.js +3 -0
  1532. package/node_modules/@smithy/hash-node/dist-types/index.d.ts +1 -1
  1533. package/node_modules/@smithy/hash-node/package.json +6 -5
  1534. package/node_modules/@smithy/hash-stream-node/dist-cjs/index.js +58 -92
  1535. package/node_modules/@smithy/hash-stream-node/dist-es/HashCalculator.js +1 -0
  1536. package/node_modules/@smithy/hash-stream-node/dist-types/HashCalculator.d.ts +3 -2
  1537. package/node_modules/@smithy/hash-stream-node/dist-types/fileStreamHasher.d.ts +2 -2
  1538. package/node_modules/@smithy/hash-stream-node/dist-types/readableStreamHasher.d.ts +2 -2
  1539. package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/HashCalculator.d.ts +2 -1
  1540. package/node_modules/@smithy/hash-stream-node/package.json +6 -5
  1541. package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +7 -38
  1542. package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +1 -1
  1543. package/node_modules/@smithy/invalid-dependency/package.json +4 -3
  1544. package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +4 -30
  1545. package/node_modules/@smithy/is-array-buffer/package.json +5 -4
  1546. package/node_modules/@smithy/md5-js/dist-cjs/index.js +153 -186
  1547. package/node_modules/@smithy/md5-js/dist-es/index.js +5 -0
  1548. package/node_modules/@smithy/md5-js/dist-types/index.d.ts +1 -1
  1549. package/node_modules/@smithy/md5-js/package.json +7 -6
  1550. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +39 -64
  1551. package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +1 -1
  1552. package/node_modules/@smithy/middleware-content-length/package.json +7 -6
  1553. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +1 -1
  1554. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +226 -272
  1555. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +13 -2
  1556. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +3 -2
  1557. package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +1 -1
  1558. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +2 -1
  1559. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +3 -3
  1560. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +1 -1
  1561. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +1 -1
  1562. package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +3 -3
  1563. package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +3 -3
  1564. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +6 -3
  1565. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +1 -1
  1566. package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +1 -1
  1567. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +2 -1
  1568. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +5 -2
  1569. package/node_modules/@smithy/middleware-endpoint/package.json +13 -12
  1570. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +327 -394
  1571. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +1 -1
  1572. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +2 -2
  1573. package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +1 -0
  1574. package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +6 -2
  1575. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +1 -1
  1576. package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +4 -3
  1577. package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +2 -2
  1578. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +2 -2
  1579. package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +1 -1
  1580. package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +1 -1
  1581. package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +1 -1
  1582. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +2 -2
  1583. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +2 -1
  1584. package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +1 -1
  1585. package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +1 -1
  1586. package/node_modules/@smithy/middleware-retry/package.json +17 -17
  1587. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +92 -118
  1588. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +3 -0
  1589. package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +1 -1
  1590. package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +1 -1
  1591. package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +1 -1
  1592. package/node_modules/@smithy/middleware-serde/package.json +7 -6
  1593. package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +274 -302
  1594. package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +1 -1
  1595. package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +1 -1
  1596. package/node_modules/@smithy/middleware-stack/package.json +4 -3
  1597. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +51 -98
  1598. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +4 -4
  1599. package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +1 -1
  1600. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +2 -2
  1601. package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +1 -1
  1602. package/node_modules/@smithy/node-config-provider/package.json +6 -5
  1603. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +694 -768
  1604. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +31 -16
  1605. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +2 -1
  1606. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +1 -1
  1607. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +11 -8
  1608. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +3 -1
  1609. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +1 -1
  1610. package/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
  1611. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +2 -3
  1612. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +1 -4
  1613. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +3 -1
  1614. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +4 -4
  1615. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +2 -2
  1616. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +5 -4
  1617. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +4 -4
  1618. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +2 -2
  1619. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +4 -3
  1620. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +2 -1
  1621. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +4 -4
  1622. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +1 -1
  1623. package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
  1624. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +1 -1
  1625. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +1 -1
  1626. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +1 -1
  1627. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +2 -1
  1628. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +5 -4
  1629. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +3 -2
  1630. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +2 -1
  1631. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
  1632. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +2 -1
  1633. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +2 -1
  1634. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +5 -4
  1635. package/node_modules/@smithy/node-http-handler/package.json +7 -6
  1636. package/node_modules/@smithy/property-provider/dist-cjs/index.js +105 -158
  1637. package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +1 -1
  1638. package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +2 -1
  1639. package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +1 -1
  1640. package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +2 -1
  1641. package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +1 -1
  1642. package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +2 -1
  1643. package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +1 -1
  1644. package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +1 -1
  1645. package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +1 -1
  1646. package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +2 -1
  1647. package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +2 -1
  1648. package/node_modules/@smithy/property-provider/package.json +4 -3
  1649. package/node_modules/@smithy/protocol-http/dist-cjs/index.js +154 -247
  1650. package/node_modules/@smithy/protocol-http/dist-es/Field.js +3 -0
  1651. package/node_modules/@smithy/protocol-http/dist-es/Fields.js +2 -1
  1652. package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +11 -0
  1653. package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +4 -0
  1654. package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +2 -1
  1655. package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +2 -2
  1656. package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +1 -1
  1657. package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +2 -1
  1658. package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +1 -1
  1659. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +2 -1
  1660. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +2 -1
  1661. package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +1 -1
  1662. package/node_modules/@smithy/protocol-http/package.json +4 -3
  1663. package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +21 -47
  1664. package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +1 -1
  1665. package/node_modules/@smithy/querystring-builder/package.json +5 -4
  1666. package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +22 -48
  1667. package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +1 -1
  1668. package/node_modules/@smithy/querystring-parser/package.json +4 -3
  1669. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +70 -103
  1670. package/node_modules/@smithy/service-error-classification/dist-es/index.js +3 -2
  1671. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +1 -1
  1672. package/node_modules/@smithy/service-error-classification/package.json +4 -3
  1673. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +7 -4
  1674. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +177 -189
  1675. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
  1676. package/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
  1677. package/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
  1678. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +1 -1
  1679. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +5 -2
  1680. package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +3 -1
  1681. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +4 -4
  1682. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +2 -2
  1683. package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +1 -1
  1684. package/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
  1685. package/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
  1686. package/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
  1687. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +1 -1
  1688. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +7 -1
  1689. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +1 -1
  1690. package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +3 -1
  1691. package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +2 -5
  1692. package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +1 -1
  1693. package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +1 -1
  1694. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +1 -1
  1695. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +2 -2
  1696. package/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
  1697. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
  1698. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
  1699. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +7 -1
  1700. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +3 -1
  1701. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +1 -4
  1702. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
  1703. package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +1 -1
  1704. package/node_modules/@smithy/shared-ini-file-loader/package.json +7 -6
  1705. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +525 -651
  1706. package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +2 -1
  1707. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +1 -1
  1708. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +6 -0
  1709. package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +3 -2
  1710. package/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +1 -1
  1711. package/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +1 -1
  1712. package/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +1 -1
  1713. package/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +1 -1
  1714. package/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +1 -1
  1715. package/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +1 -1
  1716. package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +1 -1
  1717. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +2 -1
  1718. package/node_modules/@smithy/signature-v4/package.json +10 -9
  1719. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +589 -714
  1720. package/node_modules/@smithy/smithy-client/dist-es/client.js +10 -1
  1721. package/node_modules/@smithy/smithy-client/dist-es/command.js +23 -20
  1722. package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +29 -3
  1723. package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +4 -0
  1724. package/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
  1725. package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +1 -1
  1726. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +33 -7
  1727. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +3 -3
  1728. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +9 -2
  1729. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +1 -1
  1730. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
  1731. package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +1 -1
  1732. package/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
  1733. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +33 -7
  1734. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +3 -3
  1735. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +8 -1
  1736. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
  1737. package/node_modules/@smithy/smithy-client/package.json +12 -11
  1738. package/node_modules/@smithy/types/dist-cjs/index.js +80 -133
  1739. package/node_modules/@smithy/types/dist-es/index.js +3 -0
  1740. package/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
  1741. package/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
  1742. package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +4 -4
  1743. package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +2 -2
  1744. package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +2 -2
  1745. package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +2 -2
  1746. package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +1 -1
  1747. package/node_modules/@smithy/types/dist-types/checksum.d.ts +1 -1
  1748. package/node_modules/@smithy/types/dist-types/client.d.ts +4 -4
  1749. package/node_modules/@smithy/types/dist-types/command.d.ts +2 -2
  1750. package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +2 -2
  1751. package/node_modules/@smithy/types/dist-types/encode.d.ts +1 -1
  1752. package/node_modules/@smithy/types/dist-types/endpoint.d.ts +1 -1
  1753. package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +2 -2
  1754. package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +1 -1
  1755. package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +1 -1
  1756. package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +3 -3
  1757. package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +1 -1
  1758. package/node_modules/@smithy/types/dist-types/eventStream.d.ts +3 -3
  1759. package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +2 -2
  1760. package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +1 -1
  1761. package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
  1762. package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +2 -2
  1763. package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +19 -12
  1764. package/node_modules/@smithy/types/dist-types/http.d.ts +2 -2
  1765. package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +1 -1
  1766. package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +1 -1
  1767. package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +1 -1
  1768. package/node_modules/@smithy/types/dist-types/index.d.ts +3 -0
  1769. package/node_modules/@smithy/types/dist-types/retry.d.ts +1 -1
  1770. package/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
  1771. package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +33 -58
  1772. package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +99 -0
  1773. package/node_modules/@smithy/types/dist-types/serde.d.ts +5 -5
  1774. package/node_modules/@smithy/types/dist-types/shapes.d.ts +2 -2
  1775. package/node_modules/@smithy/types/dist-types/signature.d.ts +2 -2
  1776. package/node_modules/@smithy/types/dist-types/stream.d.ts +3 -3
  1777. package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +17 -10
  1778. package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +3 -0
  1779. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
  1780. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +37 -62
  1781. package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
  1782. package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +2 -2
  1783. package/node_modules/@smithy/types/dist-types/uri.d.ts +1 -1
  1784. package/node_modules/@smithy/types/dist-types/util.d.ts +3 -3
  1785. package/node_modules/@smithy/types/dist-types/waiter.d.ts +1 -1
  1786. package/node_modules/@smithy/types/package.json +3 -2
  1787. package/node_modules/@smithy/url-parser/dist-cjs/index.js +20 -46
  1788. package/node_modules/@smithy/url-parser/dist-types/index.d.ts +1 -1
  1789. package/node_modules/@smithy/url-parser/package.json +5 -4
  1790. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +9 -32
  1791. package/node_modules/@smithy/util-base64/dist-cjs/index.js +16 -24
  1792. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +1 -2
  1793. package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +9 -28
  1794. package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +5 -6
  1795. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +5 -6
  1796. package/node_modules/@smithy/util-base64/package.json +7 -6
  1797. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +26 -53
  1798. package/node_modules/@smithy/util-body-length-browser/package.json +5 -4
  1799. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +29 -50
  1800. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +8 -6
  1801. package/node_modules/@smithy/util-body-length-node/package.json +5 -4
  1802. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +17 -44
  1803. package/node_modules/@smithy/util-buffer-from/package.json +6 -5
  1804. package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +26 -60
  1805. package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +1 -1
  1806. package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +1 -1
  1807. package/node_modules/@smithy/util-config-provider/package.json +5 -4
  1808. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +9 -22
  1809. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +13 -12
  1810. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +2 -2
  1811. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +11 -8
  1812. package/node_modules/@smithy/util-defaults-mode-browser/package.json +9 -9
  1813. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +65 -110
  1814. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +1 -1
  1815. package/node_modules/@smithy/util-defaults-mode-node/package.json +12 -11
  1816. package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +435 -507
  1817. package/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +3 -2
  1818. package/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -11
  1819. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +15 -2
  1820. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +17 -2
  1821. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -13
  1822. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +25 -2
  1823. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -21
  1824. package/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +3 -3
  1825. package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +1 -1
  1826. package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +1 -1
  1827. package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +2 -2
  1828. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -2
  1829. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -2
  1830. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +6 -1
  1831. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -3
  1832. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +6 -0
  1833. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -3
  1834. package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +1 -1
  1835. package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -1
  1836. package/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -1
  1837. package/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -1
  1838. package/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -1
  1839. package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +1 -1
  1840. package/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -2
  1841. package/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +1 -1
  1842. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +1 -1
  1843. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +1 -1
  1844. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +2 -2
  1845. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +1 -1
  1846. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -2
  1847. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +7 -2
  1848. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +1 -1
  1849. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -3
  1850. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +1 -1
  1851. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +7 -1
  1852. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -3
  1853. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +1 -1
  1854. package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +1 -1
  1855. package/node_modules/@smithy/util-endpoints/package.json +7 -6
  1856. package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +29 -58
  1857. package/node_modules/@smithy/util-hex-encoding/package.json +5 -4
  1858. package/node_modules/@smithy/util-middleware/dist-cjs/index.js +11 -41
  1859. package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +1 -1
  1860. package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +1 -1
  1861. package/node_modules/@smithy/util-middleware/package.json +4 -3
  1862. package/node_modules/@smithy/util-retry/dist-cjs/index.js +260 -340
  1863. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +4 -1
  1864. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +1 -0
  1865. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +17 -8
  1866. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +5 -3
  1867. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +2 -2
  1868. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +1 -1
  1869. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +1 -1
  1870. package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +1 -1
  1871. package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +1 -1
  1872. package/node_modules/@smithy/util-retry/package.json +8 -5
  1873. package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +3 -2
  1874. package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +7 -3
  1875. package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +2 -3
  1876. package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +1 -1
  1877. package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +2 -3
  1878. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +20 -9
  1879. package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +1 -2
  1880. package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +4 -8
  1881. package/node_modules/@smithy/util-stream/dist-cjs/index.js +80 -97
  1882. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +1 -2
  1883. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +1 -2
  1884. package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +3 -7
  1885. package/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +3 -2
  1886. package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +12 -7
  1887. package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +5 -0
  1888. package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +19 -7
  1889. package/node_modules/@smithy/util-stream/dist-es/headStream.js +3 -6
  1890. package/node_modules/@smithy/util-stream/dist-es/index.js +1 -1
  1891. package/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +1 -1
  1892. package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +1 -0
  1893. package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +1 -1
  1894. package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +10 -9
  1895. package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +3 -4
  1896. package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +7 -5
  1897. package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +4 -1
  1898. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +1 -1
  1899. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +7 -3
  1900. package/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +1 -2
  1901. package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +3 -3
  1902. package/node_modules/@smithy/util-stream/dist-types/index.d.ts +4 -1
  1903. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +1 -1
  1904. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +1 -1
  1905. package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +3 -0
  1906. package/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +2 -1
  1907. package/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +1 -1
  1908. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +1 -0
  1909. package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +9 -8
  1910. package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +2 -3
  1911. package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +4 -2
  1912. package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +4 -1
  1913. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +7 -3
  1914. package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +1 -2
  1915. package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +2 -2
  1916. package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +4 -1
  1917. package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +3 -0
  1918. package/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +2 -1
  1919. package/node_modules/@smithy/util-stream/package.json +14 -13
  1920. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +6 -40
  1921. package/node_modules/@smithy/util-uri-escape/package.json +5 -4
  1922. package/node_modules/@smithy/util-utf8/dist-cjs/index.js +27 -60
  1923. package/node_modules/@smithy/util-utf8/package.json +6 -5
  1924. package/node_modules/@smithy/util-waiter/dist-cjs/index.js +165 -171
  1925. package/node_modules/@smithy/util-waiter/dist-es/circularReplacer.js +12 -0
  1926. package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +27 -8
  1927. package/node_modules/@smithy/util-waiter/dist-es/poller.js +2 -1
  1928. package/node_modules/@smithy/util-waiter/dist-es/waiter.js +4 -3
  1929. package/node_modules/@smithy/util-waiter/dist-types/circularReplacer.d.ts +6 -0
  1930. package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +1 -1
  1931. package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +2 -2
  1932. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/circularReplacer.d.ts +6 -0
  1933. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/poller.d.ts +1 -1
  1934. package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +1 -1
  1935. package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +1 -1
  1936. package/node_modules/@smithy/util-waiter/package.json +5 -4
  1937. package/node_modules/@smithy/uuid/LICENSE +201 -0
  1938. package/node_modules/@smithy/uuid/README.md +10 -0
  1939. package/node_modules/@smithy/uuid/dist-cjs/index.js +36 -0
  1940. package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +6 -0
  1941. package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +4 -0
  1942. package/node_modules/@smithy/uuid/dist-es/index.js +1 -0
  1943. package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +1 -0
  1944. package/node_modules/@smithy/uuid/dist-es/randomUUID.js +2 -0
  1945. package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +1 -0
  1946. package/node_modules/@smithy/uuid/dist-es/v4.js +31 -0
  1947. package/node_modules/@smithy/uuid/dist-types/index.d.ts +1 -0
  1948. package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +1 -0
  1949. package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +2 -0
  1950. package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +1 -0
  1951. package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +1 -0
  1952. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +1 -0
  1953. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +2 -0
  1954. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +1 -0
  1955. package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +19 -0
  1956. package/node_modules/@smithy/uuid/dist-types/v4.d.ts +19 -0
  1957. package/node_modules/@smithy/uuid/package.json +66 -0
  1958. package/node_modules/bowser/CHANGELOG.md +1 -1
  1959. package/node_modules/bowser/README.md +2 -4
  1960. package/node_modules/bowser/bundled.js +1 -1
  1961. package/node_modules/bowser/es5.js +1 -1
  1962. package/node_modules/bowser/index.d.ts +71 -6
  1963. package/node_modules/bowser/package.json +8 -3
  1964. package/node_modules/bowser/src/constants.js +71 -18
  1965. package/node_modules/bowser/src/parser-browsers.js +394 -0
  1966. package/node_modules/bowser/src/parser-os.js +12 -0
  1967. package/node_modules/bowser/src/parser-platforms.js +259 -1
  1968. package/node_modules/bowser/src/parser.js +20 -5
  1969. package/node_modules/bowser/src/utils.js +33 -15
  1970. package/node_modules/fast-xml-parser/CHANGELOG.md +93 -0
  1971. package/node_modules/fast-xml-parser/README.md +40 -52
  1972. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
  1973. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
  1974. package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
  1975. package/node_modules/fast-xml-parser/lib/fxp.d.cts +458 -0
  1976. package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
  1977. package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
  1978. package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
  1979. package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
  1980. package/node_modules/fast-xml-parser/lib/fxvalidator.min.js +2 -0
  1981. package/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -0
  1982. package/node_modules/fast-xml-parser/package.json +38 -20
  1983. package/node_modules/fast-xml-parser/src/cli/cli.js +16 -12
  1984. package/node_modules/fast-xml-parser/src/cli/man.js +6 -1
  1985. package/node_modules/fast-xml-parser/src/cli/read.js +30 -79
  1986. package/node_modules/fast-xml-parser/src/fxp.d.ts +54 -11
  1987. package/node_modules/fast-xml-parser/src/fxp.js +11 -8
  1988. package/node_modules/fast-xml-parser/src/ignoreAttributes.js +18 -0
  1989. package/node_modules/fast-xml-parser/src/util.js +14 -18
  1990. package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
  1991. package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +104 -0
  1992. package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +61 -0
  1993. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +69 -0
  1994. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +103 -0
  1995. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +100 -0
  1996. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +154 -0
  1997. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +94 -0
  1998. package/node_modules/fast-xml-parser/src/v6/TagPath.js +81 -0
  1999. package/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +13 -0
  2000. package/node_modules/fast-xml-parser/src/v6/XMLParser.js +83 -0
  2001. package/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +235 -0
  2002. package/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +210 -0
  2003. package/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +111 -0
  2004. package/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +116 -0
  2005. package/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +121 -0
  2006. package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +105 -0
  2007. package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +22 -0
  2008. package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +19 -0
  2009. package/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +38 -0
  2010. package/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +13 -0
  2011. package/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +14 -0
  2012. package/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +6 -0
  2013. package/node_modules/fast-xml-parser/src/validator.js +5 -5
  2014. package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +17 -13
  2015. package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +1 -2
  2016. package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +355 -128
  2017. package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +3 -5
  2018. package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +78 -40
  2019. package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +25 -12
  2020. package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +8 -2
  2021. package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +22 -7
  2022. package/node_modules/strnum/.github/SECURITY.md +5 -0
  2023. package/node_modules/strnum/CHANGELOG.md +11 -0
  2024. package/node_modules/strnum/README.md +6 -0
  2025. package/node_modules/strnum/algo.stflow +84 -0
  2026. package/node_modules/strnum/package.json +2 -1
  2027. package/node_modules/strnum/strnum.js +53 -35
  2028. package/node_modules/strnum/strnum.test.js +9 -1
  2029. package/node_modules/strnum/test.js +9 -0
  2030. package/package.json +34 -39
  2031. package/node_modules/@aws-lambda-powertools/commons/LICENSE +0 -14
  2032. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts +0 -78
  2033. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts.map +0 -1
  2034. package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.js +0 -96
  2035. package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts +0 -78
  2036. package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts.map +0 -1
  2037. package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.js +0 -93
  2038. package/node_modules/@aws-lambda-powertools/logger/LICENSE +0 -14
  2039. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.d.ts +0 -78
  2040. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.d.ts.map +0 -1
  2041. package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.js +0 -107
  2042. package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.d.ts +0 -78
  2043. package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.d.ts.map +0 -1
  2044. package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.js +0 -104
  2045. package/node_modules/@aws-sdk/client-kms/dist-es/models/index.js +0 -1
  2046. package/node_modules/@aws-sdk/client-kms/dist-es/protocols/Aws_json1_1.js +0 -2008
  2047. package/node_modules/@aws-sdk/client-kms/dist-types/models/index.d.ts +0 -1
  2048. package/node_modules/@aws-sdk/client-kms/dist-types/protocols/Aws_json1_1.d.ts +0 -479
  2049. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/index.d.ts +0 -1
  2050. package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -638
  2051. package/node_modules/@aws-sdk/client-s3/dist-es/models/index.js +0 -2
  2052. package/node_modules/@aws-sdk/client-s3/dist-es/protocols/Aws_restXml.js +0 -7771
  2053. package/node_modules/@aws-sdk/client-s3/dist-types/models/index.d.ts +0 -2
  2054. package/node_modules/@aws-sdk/client-s3/dist-types/protocols/Aws_restXml.d.ts +0 -893
  2055. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +0 -2
  2056. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +0 -1197
  2057. package/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +0 -1
  2058. package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +0 -210
  2059. package/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +0 -1
  2060. package/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +0 -38
  2061. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +0 -1
  2062. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -53
  2063. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/index.js +0 -1
  2064. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/protocols/Aws_restJson1.js +0 -255
  2065. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/index.js +0 -1
  2066. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/protocols/Aws_query.js +0 -528
  2067. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/index.d.ts +0 -1
  2068. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +0 -11
  2069. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/index.d.ts +0 -1
  2070. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/protocols/Aws_query.d.ts +0 -20
  2071. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/index.d.ts +0 -1
  2072. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +0 -17
  2073. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/index.d.ts +0 -1
  2074. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/protocols/Aws_query.d.ts +0 -29
  2075. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +0 -12
  2076. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +0 -6
  2077. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +0 -2
  2078. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +0 -1
  2079. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +0 -24
  2080. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +0 -17
  2081. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +0 -4
  2082. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +0 -8
  2083. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +0 -4
  2084. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +0 -37
  2085. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -8
  2086. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -1
  2087. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -2
  2088. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -1
  2089. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -14
  2090. package/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
  2091. package/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
  2092. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -1
  2093. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -1
  2094. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +0 -1
  2095. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +0 -1
  2096. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +0 -1
  2097. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +0 -1
  2098. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +0 -1
  2099. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +0 -1
  2100. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +0 -1
  2101. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +0 -1
  2102. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +0 -1
  2103. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +0 -1
  2104. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +0 -1
  2105. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +0 -1
  2106. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +0 -1
  2107. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +0 -1
  2108. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +0 -1
  2109. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +0 -1
  2110. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +0 -1
  2111. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +0 -1
  2112. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +0 -1
  2113. package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +0 -1
  2114. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -1
  2115. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +0 -1
  2116. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -1
  2117. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +0 -1
  2118. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +0 -1
  2119. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +0 -1
  2120. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +0 -1
  2121. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +0 -1
  2122. package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +0 -1
  2123. package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +0 -1
  2124. package/node_modules/@smithy/core/dist-cjs/protocols/requestBuilder.js +0 -1
  2125. package/node_modules/@smithy/core/dist-cjs/setFeature.js +0 -1
  2126. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -1
  2127. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -1
  2128. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -1
  2129. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +0 -1
  2130. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +0 -1
  2131. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +0 -1
  2132. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +0 -1
  2133. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/Endpoint.js +0 -1
  2134. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +0 -1
  2135. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +0 -1
  2136. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +0 -1
  2137. package/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +0 -1
  2138. package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +0 -1
  2139. package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +0 -1
  2140. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +0 -1
  2141. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +0 -1
  2142. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +0 -1
  2143. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +0 -1
  2144. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +0 -1
  2145. package/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +0 -1
  2146. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +0 -1
  2147. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +0 -1
  2148. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +0 -1
  2149. package/node_modules/@smithy/eventstream-codec/dist-cjs/EventStreamCodec.js +0 -1
  2150. package/node_modules/@smithy/eventstream-codec/dist-cjs/HeaderMarshaller.js +0 -1
  2151. package/node_modules/@smithy/eventstream-codec/dist-cjs/Int64.js +0 -1
  2152. package/node_modules/@smithy/eventstream-codec/dist-cjs/Message.js +0 -1
  2153. package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageDecoderStream.js +0 -1
  2154. package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageEncoderStream.js +0 -1
  2155. package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageDecoderStream.js +0 -1
  2156. package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageEncoderStream.js +0 -1
  2157. package/node_modules/@smithy/eventstream-codec/dist-cjs/TestVectors.fixture.js +0 -1
  2158. package/node_modules/@smithy/eventstream-codec/dist-cjs/splitMessage.js +0 -1
  2159. package/node_modules/@smithy/eventstream-codec/dist-cjs/vectorTypes.fixture.js +0 -1
  2160. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/EventStreamMarshaller.js +0 -1
  2161. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/provider.js +0 -1
  2162. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/utils.js +0 -1
  2163. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/EventStreamSerdeConfig.js +0 -1
  2164. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/EventStreamMarshaller.js +0 -1
  2165. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/provider.js +0 -1
  2166. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/utils.js +0 -1
  2167. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/EventStreamMarshaller.js +0 -1
  2168. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getChunkedStream.js +0 -1
  2169. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getUnmarshalledStream.js +0 -1
  2170. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/provider.js +0 -1
  2171. package/node_modules/@smithy/fetch-http-handler/dist-cjs/create-request.js +0 -1
  2172. package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +0 -1
  2173. package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +0 -1
  2174. package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +0 -1
  2175. package/node_modules/@smithy/hash-stream-node/dist-cjs/HashCalculator.js +0 -1
  2176. package/node_modules/@smithy/hash-stream-node/dist-cjs/fileStreamHasher.js +0 -1
  2177. package/node_modules/@smithy/hash-stream-node/dist-cjs/readableStreamHasher.js +0 -1
  2178. package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +0 -1
  2179. package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +0 -1
  2180. package/node_modules/@smithy/md5-js/dist-cjs/constants.js +0 -1
  2181. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +0 -1
  2182. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +0 -1
  2183. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +0 -1
  2184. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +0 -1
  2185. package/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +0 -1
  2186. package/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +0 -1
  2187. package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +0 -1
  2188. package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointRequiredConfig.js +0 -1
  2189. package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +0 -1
  2190. package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +0 -1
  2191. package/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +0 -1
  2192. package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
  2193. package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +0 -1
  2194. package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +0 -1
  2195. package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +0 -1
  2196. package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +0 -1
  2197. package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +0 -1
  2198. package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +0 -1
  2199. package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +0 -1
  2200. package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +0 -1
  2201. package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +0 -1
  2202. package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +0 -1
  2203. package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +0 -1
  2204. package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +0 -1
  2205. package/node_modules/@smithy/middleware-stack/dist-cjs/MiddlewareStack.js +0 -1
  2206. package/node_modules/@smithy/middleware-stack/dist-cjs/types.js +0 -1
  2207. package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +0 -1
  2208. package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +0 -1
  2209. package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +0 -1
  2210. package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +0 -1
  2211. package/node_modules/@smithy/node-config-provider/dist-cjs/getSelectorName.js +0 -1
  2212. package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
  2213. package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
  2214. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
  2215. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
  2216. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
  2217. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
  2218. package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
  2219. package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
  2220. package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
  2221. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
  2222. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
  2223. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
  2224. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
  2225. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
  2226. package/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
  2227. package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
  2228. package/node_modules/@smithy/property-provider/dist-cjs/CredentialsProviderError.js +0 -1
  2229. package/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +0 -1
  2230. package/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +0 -1
  2231. package/node_modules/@smithy/property-provider/dist-cjs/chain.js +0 -1
  2232. package/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +0 -1
  2233. package/node_modules/@smithy/property-provider/dist-cjs/memoize.js +0 -1
  2234. package/node_modules/@smithy/protocol-http/dist-cjs/Field.js +0 -1
  2235. package/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +0 -1
  2236. package/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +0 -1
  2237. package/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +0 -1
  2238. package/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +0 -1
  2239. package/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +0 -1
  2240. package/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +0 -1
  2241. package/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +0 -1
  2242. package/node_modules/@smithy/protocol-http/dist-cjs/types.js +0 -1
  2243. package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +0 -1
  2244. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigData.js +0 -1
  2245. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +0 -1
  2246. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +0 -1
  2247. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getProfileName.js +0 -1
  2248. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +0 -1
  2249. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +0 -1
  2250. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +0 -1
  2251. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +0 -1
  2252. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +0 -1
  2253. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +0 -1
  2254. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +0 -13
  2255. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +0 -1
  2256. package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +0 -9
  2257. package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +0 -5
  2258. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +0 -5
  2259. package/node_modules/@smithy/signature-v4/dist-cjs/HeaderFormatter.js +0 -1
  2260. package/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4.js +0 -1
  2261. package/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4Base.js +0 -1
  2262. package/node_modules/@smithy/signature-v4/dist-cjs/constants.js +0 -1
  2263. package/node_modules/@smithy/signature-v4/dist-cjs/credentialDerivation.js +0 -1
  2264. package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalHeaders.js +0 -1
  2265. package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalQuery.js +0 -1
  2266. package/node_modules/@smithy/signature-v4/dist-cjs/getPayloadHash.js +0 -1
  2267. package/node_modules/@smithy/signature-v4/dist-cjs/headerUtil.js +0 -1
  2268. package/node_modules/@smithy/signature-v4/dist-cjs/moveHeadersToQuery.js +0 -1
  2269. package/node_modules/@smithy/signature-v4/dist-cjs/prepareRequest.js +0 -1
  2270. package/node_modules/@smithy/signature-v4/dist-cjs/signature-v4a-container.js +0 -1
  2271. package/node_modules/@smithy/signature-v4/dist-cjs/suite.fixture.js +0 -1
  2272. package/node_modules/@smithy/signature-v4/dist-cjs/utilDate.js +0 -1
  2273. package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +0 -1
  2274. package/node_modules/@smithy/smithy-client/dist-cjs/client.js +0 -1
  2275. package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +0 -1
  2276. package/node_modules/@smithy/smithy-client/dist-cjs/command.js +0 -1
  2277. package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +0 -1
  2278. package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +0 -1
  2279. package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +0 -1
  2280. package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +0 -1
  2281. package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +0 -1
  2282. package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +0 -1
  2283. package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +0 -1
  2284. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +0 -1
  2285. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  2286. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +0 -1
  2287. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +0 -1
  2288. package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +0 -1
  2289. package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +0 -1
  2290. package/node_modules/@smithy/smithy-client/dist-cjs/is-serializable-header-value.js +0 -1
  2291. package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +0 -1
  2292. package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +0 -1
  2293. package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +0 -1
  2294. package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +0 -1
  2295. package/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
  2296. package/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
  2297. package/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
  2298. package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
  2299. package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
  2300. package/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
  2301. package/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
  2302. package/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
  2303. package/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
  2304. package/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
  2305. package/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
  2306. package/node_modules/@smithy/types/dist-cjs/client.js +0 -1
  2307. package/node_modules/@smithy/types/dist-cjs/command.js +0 -1
  2308. package/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
  2309. package/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
  2310. package/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
  2311. package/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
  2312. package/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
  2313. package/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
  2314. package/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
  2315. package/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
  2316. package/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
  2317. package/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
  2318. package/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
  2319. package/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
  2320. package/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
  2321. package/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
  2322. package/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
  2323. package/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
  2324. package/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
  2325. package/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  2326. package/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
  2327. package/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
  2328. package/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
  2329. package/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
  2330. package/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
  2331. package/node_modules/@smithy/types/dist-cjs/http.js +0 -1
  2332. package/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
  2333. package/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
  2334. package/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
  2335. package/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
  2336. package/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
  2337. package/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
  2338. package/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
  2339. package/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
  2340. package/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
  2341. package/node_modules/@smithy/types/dist-cjs/response.js +0 -1
  2342. package/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
  2343. package/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
  2344. package/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
  2345. package/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
  2346. package/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
  2347. package/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
  2348. package/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
  2349. package/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
  2350. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
  2351. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  2352. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  2353. package/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
  2354. package/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
  2355. package/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
  2356. package/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
  2357. package/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
  2358. package/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
  2359. package/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
  2360. package/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
  2361. package/node_modules/@smithy/types/dist-cjs/util.js +0 -1
  2362. package/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
  2363. package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +0 -1
  2364. package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +0 -1
  2365. package/node_modules/@smithy/util-config-provider/dist-cjs/booleanSelector.js +0 -1
  2366. package/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +0 -1
  2367. package/node_modules/@smithy/util-config-provider/dist-cjs/types.js +0 -1
  2368. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +0 -1
  2369. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +0 -1
  2370. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +0 -1
  2371. package/node_modules/@smithy/util-endpoints/dist-cjs/cache/EndpointCache.js +0 -1
  2372. package/node_modules/@smithy/util-endpoints/dist-cjs/debug/debugId.js +0 -1
  2373. package/node_modules/@smithy/util-endpoints/dist-cjs/debug/index.js +0 -1
  2374. package/node_modules/@smithy/util-endpoints/dist-cjs/debug/toDebugString.js +0 -1
  2375. package/node_modules/@smithy/util-endpoints/dist-cjs/getEndpointUrlConfig.js +0 -1
  2376. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/booleanEquals.js +0 -1
  2377. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttr.js +0 -1
  2378. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttrPathList.js +0 -1
  2379. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/index.js +0 -1
  2380. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isIpAddress.js +0 -1
  2381. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isSet.js +0 -1
  2382. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isValidHostLabel.js +0 -1
  2383. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/not.js +0 -1
  2384. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/parseURL.js +0 -1
  2385. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/stringEquals.js +0 -1
  2386. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/substring.js +0 -1
  2387. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/uriEncode.js +0 -1
  2388. package/node_modules/@smithy/util-endpoints/dist-cjs/resolveEndpoint.js +0 -1
  2389. package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointError.js +0 -1
  2390. package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointFunctions.js +0 -1
  2391. package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointRuleObject.js +0 -1
  2392. package/node_modules/@smithy/util-endpoints/dist-cjs/types/ErrorRuleObject.js +0 -1
  2393. package/node_modules/@smithy/util-endpoints/dist-cjs/types/RuleSetObject.js +0 -1
  2394. package/node_modules/@smithy/util-endpoints/dist-cjs/types/TreeRuleObject.js +0 -1
  2395. package/node_modules/@smithy/util-endpoints/dist-cjs/types/index.js +0 -1
  2396. package/node_modules/@smithy/util-endpoints/dist-cjs/types/shared.js +0 -1
  2397. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/callFunction.js +0 -1
  2398. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/customEndpointFunctions.js +0 -1
  2399. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/endpointFunctions.js +0 -1
  2400. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateCondition.js +0 -1
  2401. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateConditions.js +0 -1
  2402. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +0 -1
  2403. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +0 -1
  2404. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateExpression.js +0 -1
  2405. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateRules.js +0 -1
  2406. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTemplate.js +0 -1
  2407. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +0 -1
  2408. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +0 -1
  2409. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperties.js +0 -1
  2410. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperty.js +0 -1
  2411. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointUrl.js +0 -1
  2412. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getReferenceValue.js +0 -1
  2413. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/index.js +0 -1
  2414. package/node_modules/@smithy/util-middleware/dist-cjs/getSmithyContext.js +0 -1
  2415. package/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +0 -1
  2416. package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
  2417. package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +0 -1
  2418. package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +0 -1
  2419. package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +0 -1
  2420. package/node_modules/@smithy/util-retry/dist-cjs/config.js +0 -1
  2421. package/node_modules/@smithy/util-retry/dist-cjs/constants.js +0 -1
  2422. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +0 -1
  2423. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +0 -1
  2424. package/node_modules/@smithy/util-retry/dist-cjs/types.js +0 -1
  2425. package/node_modules/@smithy/util-stream/dist-cjs/blob/Uint8ArrayBlobAdapter.js +0 -1
  2426. package/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +0 -1
  2427. package/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +0 -15
  2428. package/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +0 -9
  2429. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +0 -9
  2430. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +0 -1
  2431. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +0 -1
  2432. package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
  2433. package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
  2434. package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
  2435. package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
  2436. package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
  2437. package/node_modules/@smithy/util-waiter/dist-cjs/createWaiter.js +0 -1
  2438. package/node_modules/@smithy/util-waiter/dist-cjs/poller.js +0 -1
  2439. package/node_modules/@smithy/util-waiter/dist-cjs/utils/index.js +0 -1
  2440. package/node_modules/@smithy/util-waiter/dist-cjs/utils/sleep.js +0 -1
  2441. package/node_modules/@smithy/util-waiter/dist-cjs/utils/validate.js +0 -1
  2442. package/node_modules/@smithy/util-waiter/dist-cjs/waiter.js +0 -1
  2443. package/node_modules/@types/uuid/LICENSE +0 -21
  2444. package/node_modules/@types/uuid/README.md +0 -15
  2445. package/node_modules/@types/uuid/index.d.mts +0 -12
  2446. package/node_modules/@types/uuid/index.d.ts +0 -86
  2447. package/node_modules/@types/uuid/package.json +0 -54
  2448. package/node_modules/fast-xml-parser/src/v5/CharsSymbol.js +0 -16
  2449. package/node_modules/fast-xml-parser/src/v5/EntitiesParser.js +0 -107
  2450. package/node_modules/fast-xml-parser/src/v5/OptionsBuilder.js +0 -64
  2451. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/BaseOutputBuilder.js +0 -71
  2452. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsArrBuilder.js +0 -103
  2453. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsMinArrBuilder.js +0 -102
  2454. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsObjBuilder.js +0 -156
  2455. package/node_modules/fast-xml-parser/src/v5/OutputBuilders/ParserOptionsBuilder.js +0 -99
  2456. package/node_modules/fast-xml-parser/src/v5/TagPath.js +0 -81
  2457. package/node_modules/fast-xml-parser/src/v5/TagPathMatcher.js +0 -15
  2458. package/node_modules/fast-xml-parser/src/v5/XMLParser.js +0 -85
  2459. package/node_modules/fast-xml-parser/src/v5/Xml2JsParser.js +0 -237
  2460. package/node_modules/fast-xml-parser/src/v5/XmlPartReader.js +0 -212
  2461. package/node_modules/fast-xml-parser/src/v5/XmlSpecialTagsReader.js +0 -118
  2462. package/node_modules/fast-xml-parser/src/v5/inputSource/BufferSource.js +0 -118
  2463. package/node_modules/fast-xml-parser/src/v5/inputSource/StringSource.js +0 -123
  2464. package/node_modules/fast-xml-parser/src/v5/valueParsers/EntitiesParser.js +0 -107
  2465. package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParser.js +0 -23
  2466. package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParserExt.js +0 -20
  2467. package/node_modules/fast-xml-parser/src/v5/valueParsers/currency.js +0 -40
  2468. package/node_modules/fast-xml-parser/src/v5/valueParsers/join.js +0 -14
  2469. package/node_modules/fast-xml-parser/src/v5/valueParsers/number.js +0 -16
  2470. package/node_modules/fast-xml-parser/src/v5/valueParsers/trim.js +0 -8
  2471. package/node_modules/lodash.merge/LICENSE +0 -47
  2472. package/node_modules/lodash.merge/README.md +0 -18
  2473. package/node_modules/lodash.merge/index.js +0 -1977
  2474. package/node_modules/lodash.merge/package.json +0 -16
  2475. package/node_modules/uuid/CHANGELOG.md +0 -274
  2476. package/node_modules/uuid/CONTRIBUTING.md +0 -18
  2477. package/node_modules/uuid/LICENSE.md +0 -9
  2478. package/node_modules/uuid/README.md +0 -466
  2479. package/node_modules/uuid/dist/bin/uuid +0 -2
  2480. package/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
  2481. package/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
  2482. package/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
  2483. package/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
  2484. package/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
  2485. package/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
  2486. package/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
  2487. package/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
  2488. package/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
  2489. package/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
  2490. package/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
  2491. package/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
  2492. package/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
  2493. package/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
  2494. package/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
  2495. package/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
  2496. package/node_modules/uuid/dist/esm-browser/index.js +0 -9
  2497. package/node_modules/uuid/dist/esm-browser/md5.js +0 -215
  2498. package/node_modules/uuid/dist/esm-browser/native.js +0 -4
  2499. package/node_modules/uuid/dist/esm-browser/nil.js +0 -1
  2500. package/node_modules/uuid/dist/esm-browser/parse.js +0 -35
  2501. package/node_modules/uuid/dist/esm-browser/regex.js +0 -1
  2502. package/node_modules/uuid/dist/esm-browser/rng.js +0 -18
  2503. package/node_modules/uuid/dist/esm-browser/sha1.js +0 -96
  2504. package/node_modules/uuid/dist/esm-browser/stringify.js +0 -33
  2505. package/node_modules/uuid/dist/esm-browser/v1.js +0 -95
  2506. package/node_modules/uuid/dist/esm-browser/v3.js +0 -4
  2507. package/node_modules/uuid/dist/esm-browser/v35.js +0 -66
  2508. package/node_modules/uuid/dist/esm-browser/v4.js +0 -29
  2509. package/node_modules/uuid/dist/esm-browser/v5.js +0 -4
  2510. package/node_modules/uuid/dist/esm-browser/validate.js +0 -7
  2511. package/node_modules/uuid/dist/esm-browser/version.js +0 -11
  2512. package/node_modules/uuid/dist/esm-node/index.js +0 -9
  2513. package/node_modules/uuid/dist/esm-node/md5.js +0 -13
  2514. package/node_modules/uuid/dist/esm-node/native.js +0 -4
  2515. package/node_modules/uuid/dist/esm-node/nil.js +0 -1
  2516. package/node_modules/uuid/dist/esm-node/parse.js +0 -35
  2517. package/node_modules/uuid/dist/esm-node/regex.js +0 -1
  2518. package/node_modules/uuid/dist/esm-node/rng.js +0 -12
  2519. package/node_modules/uuid/dist/esm-node/sha1.js +0 -13
  2520. package/node_modules/uuid/dist/esm-node/stringify.js +0 -33
  2521. package/node_modules/uuid/dist/esm-node/v1.js +0 -95
  2522. package/node_modules/uuid/dist/esm-node/v3.js +0 -4
  2523. package/node_modules/uuid/dist/esm-node/v35.js +0 -66
  2524. package/node_modules/uuid/dist/esm-node/v4.js +0 -29
  2525. package/node_modules/uuid/dist/esm-node/v5.js +0 -4
  2526. package/node_modules/uuid/dist/esm-node/validate.js +0 -7
  2527. package/node_modules/uuid/dist/esm-node/version.js +0 -11
  2528. package/node_modules/uuid/dist/index.js +0 -79
  2529. package/node_modules/uuid/dist/md5-browser.js +0 -223
  2530. package/node_modules/uuid/dist/md5.js +0 -23
  2531. package/node_modules/uuid/dist/native-browser.js +0 -11
  2532. package/node_modules/uuid/dist/native.js +0 -15
  2533. package/node_modules/uuid/dist/nil.js +0 -8
  2534. package/node_modules/uuid/dist/parse.js +0 -45
  2535. package/node_modules/uuid/dist/regex.js +0 -8
  2536. package/node_modules/uuid/dist/rng-browser.js +0 -25
  2537. package/node_modules/uuid/dist/rng.js +0 -24
  2538. package/node_modules/uuid/dist/sha1-browser.js +0 -104
  2539. package/node_modules/uuid/dist/sha1.js +0 -23
  2540. package/node_modules/uuid/dist/stringify.js +0 -44
  2541. package/node_modules/uuid/dist/uuid-bin.js +0 -85
  2542. package/node_modules/uuid/dist/v1.js +0 -107
  2543. package/node_modules/uuid/dist/v3.js +0 -16
  2544. package/node_modules/uuid/dist/v35.js +0 -80
  2545. package/node_modules/uuid/dist/v4.js +0 -43
  2546. package/node_modules/uuid/dist/v5.js +0 -16
  2547. package/node_modules/uuid/dist/validate.js +0 -17
  2548. package/node_modules/uuid/dist/version.js +0 -21
  2549. package/node_modules/uuid/package.json +0 -135
  2550. package/node_modules/uuid/wrapper.mjs +0 -10
  2551. /package/node_modules/@aws-sdk/{middleware-flexible-checksums → crc64-nvme}/dist-es/crc64-nvme-crt-container.js +0 -0
  2552. /package/node_modules/@aws-sdk/{middleware-flexible-checksums → crc64-nvme}/dist-types/crc64-nvme-crt-container.d.ts +0 -0
  2553. /package/node_modules/@aws-sdk/{middleware-flexible-checksums → crc64-nvme}/dist-types/ts3.4/crc64-nvme-crt-container.d.ts +0 -0
  2554. /package/node_modules/@smithy/core/dist-es/{protocols → request-builder}/requestBuilder.js +0 -0
  2555. /package/node_modules/@smithy/core/dist-types/{protocols → request-builder}/requestBuilder.d.ts +0 -0
  2556. /package/node_modules/@smithy/core/dist-types/ts3.4/{protocols → request-builder}/requestBuilder.d.ts +0 -0
  2557. /package/node_modules/fast-xml-parser/src/{v5 → v6}/Report.js +0 -0
@@ -0,0 +1,3238 @@
1
+ const _A = "Account";
2
+ const _AAO = "AnalyticsAndOperator";
3
+ const _AC = "AccelerateConfiguration";
4
+ const _ACL = "AccessControlList";
5
+ const _ACL_ = "ACL";
6
+ const _ACLn = "AnalyticsConfigurationList";
7
+ const _ACP = "AccessControlPolicy";
8
+ const _ACT = "AccessControlTranslation";
9
+ const _ACn = "AnalyticsConfiguration";
10
+ const _AD = "AccessDenied";
11
+ const _ADb = "AbortDate";
12
+ const _AED = "AnalyticsExportDestination";
13
+ const _AF = "AnalyticsFilter";
14
+ const _AH = "AllowedHeaders";
15
+ const _AHl = "AllowedHeader";
16
+ const _AI = "AccountId";
17
+ const _AIMU = "AbortIncompleteMultipartUpload";
18
+ const _AKI = "AccessKeyId";
19
+ const _AM = "AllowedMethods";
20
+ const _AMU = "AbortMultipartUpload";
21
+ const _AMUO = "AbortMultipartUploadOutput";
22
+ const _AMUR = "AbortMultipartUploadRequest";
23
+ const _AMl = "AllowedMethod";
24
+ const _AO = "AllowedOrigins";
25
+ const _AOl = "AllowedOrigin";
26
+ const _APA = "AccessPointAlias";
27
+ const _APAc = "AccessPointArn";
28
+ const _AQRD = "AllowQuotedRecordDelimiter";
29
+ const _AR = "AcceptRanges";
30
+ const _ARI = "AbortRuleId";
31
+ const _AS = "AbacStatus";
32
+ const _ASBD = "AnalyticsS3BucketDestination";
33
+ const _ASSEBD = "ApplyServerSideEncryptionByDefault";
34
+ const _ASr = "ArchiveStatus";
35
+ const _AT = "AccessTier";
36
+ const _An = "And";
37
+ const _B = "Bucket";
38
+ const _BA = "BucketArn";
39
+ const _BAE = "BucketAlreadyExists";
40
+ const _BAI = "BucketAccountId";
41
+ const _BAOBY = "BucketAlreadyOwnedByYou";
42
+ const _BET = "BlockedEncryptionTypes";
43
+ const _BGR = "BypassGovernanceRetention";
44
+ const _BI = "BucketInfo";
45
+ const _BKE = "BucketKeyEnabled";
46
+ const _BLC = "BucketLifecycleConfiguration";
47
+ const _BLN = "BucketLocationName";
48
+ const _BLS = "BucketLoggingStatus";
49
+ const _BLT = "BucketLocationType";
50
+ const _BN = "BucketName";
51
+ const _BP = "BytesProcessed";
52
+ const _BPA = "BlockPublicAcls";
53
+ const _BPP = "BlockPublicPolicy";
54
+ const _BR = "BucketRegion";
55
+ const _BRy = "BytesReturned";
56
+ const _BS = "BytesScanned";
57
+ const _Bo = "Body";
58
+ const _Bu = "Buckets";
59
+ const _C = "Checksum";
60
+ const _CA = "ChecksumAlgorithm";
61
+ const _CACL = "CannedACL";
62
+ const _CB = "CreateBucket";
63
+ const _CBC = "CreateBucketConfiguration";
64
+ const _CBMC = "CreateBucketMetadataConfiguration";
65
+ const _CBMCR = "CreateBucketMetadataConfigurationRequest";
66
+ const _CBMTC = "CreateBucketMetadataTableConfiguration";
67
+ const _CBMTCR = "CreateBucketMetadataTableConfigurationRequest";
68
+ const _CBO = "CreateBucketOutput";
69
+ const _CBR = "CreateBucketRequest";
70
+ const _CC = "CacheControl";
71
+ const _CCRC = "ChecksumCRC32";
72
+ const _CCRCC = "ChecksumCRC32C";
73
+ const _CCRCNVME = "ChecksumCRC64NVME";
74
+ const _CC_ = "Cache-Control";
75
+ const _CD = "CreationDate";
76
+ const _CD_ = "Content-Disposition";
77
+ const _CDo = "ContentDisposition";
78
+ const _CE = "ContinuationEvent";
79
+ const _CE_ = "Content-Encoding";
80
+ const _CEo = "ContentEncoding";
81
+ const _CF = "CloudFunction";
82
+ const _CFC = "CloudFunctionConfiguration";
83
+ const _CL = "ContentLanguage";
84
+ const _CL_ = "Content-Language";
85
+ const _CL__ = "Content-Length";
86
+ const _CLo = "ContentLength";
87
+ const _CM = "Content-MD5";
88
+ const _CMD = "ContentMD5";
89
+ const _CMU = "CompletedMultipartUpload";
90
+ const _CMUO = "CompleteMultipartUploadOutput";
91
+ const _CMUOr = "CreateMultipartUploadOutput";
92
+ const _CMUR = "CompleteMultipartUploadResult";
93
+ const _CMURo = "CompleteMultipartUploadRequest";
94
+ const _CMURr = "CreateMultipartUploadRequest";
95
+ const _CMUo = "CompleteMultipartUpload";
96
+ const _CMUr = "CreateMultipartUpload";
97
+ const _CMh = "ChecksumMode";
98
+ const _CO = "CopyObject";
99
+ const _COO = "CopyObjectOutput";
100
+ const _COR = "CopyObjectResult";
101
+ const _CORSC = "CORSConfiguration";
102
+ const _CORSR = "CORSRules";
103
+ const _CORSRu = "CORSRule";
104
+ const _CORo = "CopyObjectRequest";
105
+ const _CP = "CommonPrefix";
106
+ const _CPL = "CommonPrefixList";
107
+ const _CPLo = "CompletedPartList";
108
+ const _CPR = "CopyPartResult";
109
+ const _CPo = "CompletedPart";
110
+ const _CPom = "CommonPrefixes";
111
+ const _CR = "ContentRange";
112
+ const _CRSBA = "ConfirmRemoveSelfBucketAccess";
113
+ const _CR_ = "Content-Range";
114
+ const _CS = "CopySource";
115
+ const _CSHA = "ChecksumSHA1";
116
+ const _CSHAh = "ChecksumSHA256";
117
+ const _CSIM = "CopySourceIfMatch";
118
+ const _CSIMS = "CopySourceIfModifiedSince";
119
+ const _CSINM = "CopySourceIfNoneMatch";
120
+ const _CSIUS = "CopySourceIfUnmodifiedSince";
121
+ const _CSO = "CreateSessionOutput";
122
+ const _CSR = "CreateSessionResult";
123
+ const _CSRo = "CopySourceRange";
124
+ const _CSRr = "CreateSessionRequest";
125
+ const _CSSSECA = "CopySourceSSECustomerAlgorithm";
126
+ const _CSSSECK = "CopySourceSSECustomerKey";
127
+ const _CSSSECKMD = "CopySourceSSECustomerKeyMD5";
128
+ const _CSV = "CSV";
129
+ const _CSVI = "CopySourceVersionId";
130
+ const _CSVIn = "CSVInput";
131
+ const _CSVO = "CSVOutput";
132
+ const _CSo = "ConfigurationState";
133
+ const _CSr = "CreateSession";
134
+ const _CT = "ChecksumType";
135
+ const _CT_ = "Content-Type";
136
+ const _CTl = "ClientToken";
137
+ const _CTo = "ContentType";
138
+ const _CTom = "CompressionType";
139
+ const _CTon = "ContinuationToken";
140
+ const _Co = "Condition";
141
+ const _Cod = "Code";
142
+ const _Com = "Comments";
143
+ const _Con = "Contents";
144
+ const _Cont = "Cont";
145
+ const _Cr = "Credentials";
146
+ const _D = "Days";
147
+ const _DAI = "DaysAfterInitiation";
148
+ const _DB = "DeleteBucket";
149
+ const _DBAC = "DeleteBucketAnalyticsConfiguration";
150
+ const _DBACR = "DeleteBucketAnalyticsConfigurationRequest";
151
+ const _DBC = "DeleteBucketCors";
152
+ const _DBCR = "DeleteBucketCorsRequest";
153
+ const _DBE = "DeleteBucketEncryption";
154
+ const _DBER = "DeleteBucketEncryptionRequest";
155
+ const _DBIC = "DeleteBucketInventoryConfiguration";
156
+ const _DBICR = "DeleteBucketInventoryConfigurationRequest";
157
+ const _DBITC = "DeleteBucketIntelligentTieringConfiguration";
158
+ const _DBITCR = "DeleteBucketIntelligentTieringConfigurationRequest";
159
+ const _DBL = "DeleteBucketLifecycle";
160
+ const _DBLR = "DeleteBucketLifecycleRequest";
161
+ const _DBMC = "DeleteBucketMetadataConfiguration";
162
+ const _DBMCR = "DeleteBucketMetadataConfigurationRequest";
163
+ const _DBMCRe = "DeleteBucketMetricsConfigurationRequest";
164
+ const _DBMCe = "DeleteBucketMetricsConfiguration";
165
+ const _DBMTC = "DeleteBucketMetadataTableConfiguration";
166
+ const _DBMTCR = "DeleteBucketMetadataTableConfigurationRequest";
167
+ const _DBOC = "DeleteBucketOwnershipControls";
168
+ const _DBOCR = "DeleteBucketOwnershipControlsRequest";
169
+ const _DBP = "DeleteBucketPolicy";
170
+ const _DBPR = "DeleteBucketPolicyRequest";
171
+ const _DBR = "DeleteBucketRequest";
172
+ const _DBRR = "DeleteBucketReplicationRequest";
173
+ const _DBRe = "DeleteBucketReplication";
174
+ const _DBT = "DeleteBucketTagging";
175
+ const _DBTR = "DeleteBucketTaggingRequest";
176
+ const _DBW = "DeleteBucketWebsite";
177
+ const _DBWR = "DeleteBucketWebsiteRequest";
178
+ const _DE = "DataExport";
179
+ const _DIM = "DestinationIfMatch";
180
+ const _DIMS = "DestinationIfModifiedSince";
181
+ const _DINM = "DestinationIfNoneMatch";
182
+ const _DIUS = "DestinationIfUnmodifiedSince";
183
+ const _DM = "DeleteMarker";
184
+ const _DME = "DeleteMarkerEntry";
185
+ const _DMR = "DeleteMarkerReplication";
186
+ const _DMVI = "DeleteMarkerVersionId";
187
+ const _DMe = "DeleteMarkers";
188
+ const _DN = "DisplayName";
189
+ const _DO = "DeletedObject";
190
+ const _DOO = "DeleteObjectOutput";
191
+ const _DOOe = "DeleteObjectsOutput";
192
+ const _DOR = "DeleteObjectRequest";
193
+ const _DORe = "DeleteObjectsRequest";
194
+ const _DOT = "DeleteObjectTagging";
195
+ const _DOTO = "DeleteObjectTaggingOutput";
196
+ const _DOTR = "DeleteObjectTaggingRequest";
197
+ const _DOe = "DeletedObjects";
198
+ const _DOel = "DeleteObject";
199
+ const _DOele = "DeleteObjects";
200
+ const _DPAB = "DeletePublicAccessBlock";
201
+ const _DPABR = "DeletePublicAccessBlockRequest";
202
+ const _DR = "DataRedundancy";
203
+ const _DRe = "DefaultRetention";
204
+ const _DRel = "DeleteResult";
205
+ const _DRes = "DestinationResult";
206
+ const _Da = "Date";
207
+ const _De = "Delete";
208
+ const _Del = "Deleted";
209
+ const _Deli = "Delimiter";
210
+ const _Des = "Destination";
211
+ const _Desc = "Description";
212
+ const _Det = "Details";
213
+ const _E = "Expiration";
214
+ const _EA = "EmailAddress";
215
+ const _EBC = "EventBridgeConfiguration";
216
+ const _EBO = "ExpectedBucketOwner";
217
+ const _EC = "EncryptionConfiguration";
218
+ const _ECr = "ErrorCode";
219
+ const _ED = "ErrorDetails";
220
+ const _EDr = "ErrorDocument";
221
+ const _EE = "EndEvent";
222
+ const _EH = "ExposeHeaders";
223
+ const _EHx = "ExposeHeader";
224
+ const _EM = "ErrorMessage";
225
+ const _EODM = "ExpiredObjectDeleteMarker";
226
+ const _EOR = "ExistingObjectReplication";
227
+ const _ES = "ExpiresString";
228
+ const _ESBO = "ExpectedSourceBucketOwner";
229
+ const _ET = "EncryptionType";
230
+ const _ETL = "EncryptionTypeList";
231
+ const _ETM = "EncryptionTypeMismatch";
232
+ const _ETa = "ETag";
233
+ const _ETn = "EncodingType";
234
+ const _ETv = "EventThreshold";
235
+ const _ETx = "ExpressionType";
236
+ const _En = "Encryption";
237
+ const _Ena = "Enabled";
238
+ const _End = "End";
239
+ const _Er = "Errors";
240
+ const _Err = "Error";
241
+ const _Ev = "Events";
242
+ const _Eve = "Event";
243
+ const _Ex = "Expires";
244
+ const _Exp = "Expression";
245
+ const _F = "Filter";
246
+ const _FD = "FieldDelimiter";
247
+ const _FHI = "FileHeaderInfo";
248
+ const _FO = "FetchOwner";
249
+ const _FR = "FilterRule";
250
+ const _FRL = "FilterRuleList";
251
+ const _FRi = "FilterRules";
252
+ const _Fi = "Field";
253
+ const _Fo = "Format";
254
+ const _Fr = "Frequency";
255
+ const _G = "Grants";
256
+ const _GBA = "GetBucketAbac";
257
+ const _GBAC = "GetBucketAccelerateConfiguration";
258
+ const _GBACO = "GetBucketAccelerateConfigurationOutput";
259
+ const _GBACOe = "GetBucketAnalyticsConfigurationOutput";
260
+ const _GBACR = "GetBucketAccelerateConfigurationRequest";
261
+ const _GBACRe = "GetBucketAnalyticsConfigurationRequest";
262
+ const _GBACe = "GetBucketAnalyticsConfiguration";
263
+ const _GBAO = "GetBucketAbacOutput";
264
+ const _GBAOe = "GetBucketAclOutput";
265
+ const _GBAR = "GetBucketAbacRequest";
266
+ const _GBARe = "GetBucketAclRequest";
267
+ const _GBAe = "GetBucketAcl";
268
+ const _GBC = "GetBucketCors";
269
+ const _GBCO = "GetBucketCorsOutput";
270
+ const _GBCR = "GetBucketCorsRequest";
271
+ const _GBE = "GetBucketEncryption";
272
+ const _GBEO = "GetBucketEncryptionOutput";
273
+ const _GBER = "GetBucketEncryptionRequest";
274
+ const _GBIC = "GetBucketInventoryConfiguration";
275
+ const _GBICO = "GetBucketInventoryConfigurationOutput";
276
+ const _GBICR = "GetBucketInventoryConfigurationRequest";
277
+ const _GBITC = "GetBucketIntelligentTieringConfiguration";
278
+ const _GBITCO = "GetBucketIntelligentTieringConfigurationOutput";
279
+ const _GBITCR = "GetBucketIntelligentTieringConfigurationRequest";
280
+ const _GBL = "GetBucketLocation";
281
+ const _GBLC = "GetBucketLifecycleConfiguration";
282
+ const _GBLCO = "GetBucketLifecycleConfigurationOutput";
283
+ const _GBLCR = "GetBucketLifecycleConfigurationRequest";
284
+ const _GBLO = "GetBucketLocationOutput";
285
+ const _GBLOe = "GetBucketLoggingOutput";
286
+ const _GBLR = "GetBucketLocationRequest";
287
+ const _GBLRe = "GetBucketLoggingRequest";
288
+ const _GBLe = "GetBucketLogging";
289
+ const _GBMC = "GetBucketMetadataConfiguration";
290
+ const _GBMCO = "GetBucketMetadataConfigurationOutput";
291
+ const _GBMCOe = "GetBucketMetricsConfigurationOutput";
292
+ const _GBMCR = "GetBucketMetadataConfigurationResult";
293
+ const _GBMCRe = "GetBucketMetadataConfigurationRequest";
294
+ const _GBMCRet = "GetBucketMetricsConfigurationRequest";
295
+ const _GBMCe = "GetBucketMetricsConfiguration";
296
+ const _GBMTC = "GetBucketMetadataTableConfiguration";
297
+ const _GBMTCO = "GetBucketMetadataTableConfigurationOutput";
298
+ const _GBMTCR = "GetBucketMetadataTableConfigurationResult";
299
+ const _GBMTCRe = "GetBucketMetadataTableConfigurationRequest";
300
+ const _GBNC = "GetBucketNotificationConfiguration";
301
+ const _GBNCR = "GetBucketNotificationConfigurationRequest";
302
+ const _GBOC = "GetBucketOwnershipControls";
303
+ const _GBOCO = "GetBucketOwnershipControlsOutput";
304
+ const _GBOCR = "GetBucketOwnershipControlsRequest";
305
+ const _GBP = "GetBucketPolicy";
306
+ const _GBPO = "GetBucketPolicyOutput";
307
+ const _GBPR = "GetBucketPolicyRequest";
308
+ const _GBPS = "GetBucketPolicyStatus";
309
+ const _GBPSO = "GetBucketPolicyStatusOutput";
310
+ const _GBPSR = "GetBucketPolicyStatusRequest";
311
+ const _GBR = "GetBucketReplication";
312
+ const _GBRO = "GetBucketReplicationOutput";
313
+ const _GBRP = "GetBucketRequestPayment";
314
+ const _GBRPO = "GetBucketRequestPaymentOutput";
315
+ const _GBRPR = "GetBucketRequestPaymentRequest";
316
+ const _GBRR = "GetBucketReplicationRequest";
317
+ const _GBT = "GetBucketTagging";
318
+ const _GBTO = "GetBucketTaggingOutput";
319
+ const _GBTR = "GetBucketTaggingRequest";
320
+ const _GBV = "GetBucketVersioning";
321
+ const _GBVO = "GetBucketVersioningOutput";
322
+ const _GBVR = "GetBucketVersioningRequest";
323
+ const _GBW = "GetBucketWebsite";
324
+ const _GBWO = "GetBucketWebsiteOutput";
325
+ const _GBWR = "GetBucketWebsiteRequest";
326
+ const _GFC = "GrantFullControl";
327
+ const _GJP = "GlacierJobParameters";
328
+ const _GO = "GetObject";
329
+ const _GOA = "GetObjectAcl";
330
+ const _GOAO = "GetObjectAclOutput";
331
+ const _GOAOe = "GetObjectAttributesOutput";
332
+ const _GOAP = "GetObjectAttributesParts";
333
+ const _GOAR = "GetObjectAclRequest";
334
+ const _GOARe = "GetObjectAttributesResponse";
335
+ const _GOARet = "GetObjectAttributesRequest";
336
+ const _GOAe = "GetObjectAttributes";
337
+ const _GOLC = "GetObjectLockConfiguration";
338
+ const _GOLCO = "GetObjectLockConfigurationOutput";
339
+ const _GOLCR = "GetObjectLockConfigurationRequest";
340
+ const _GOLH = "GetObjectLegalHold";
341
+ const _GOLHO = "GetObjectLegalHoldOutput";
342
+ const _GOLHR = "GetObjectLegalHoldRequest";
343
+ const _GOO = "GetObjectOutput";
344
+ const _GOR = "GetObjectRequest";
345
+ const _GORO = "GetObjectRetentionOutput";
346
+ const _GORR = "GetObjectRetentionRequest";
347
+ const _GORe = "GetObjectRetention";
348
+ const _GOT = "GetObjectTagging";
349
+ const _GOTO = "GetObjectTaggingOutput";
350
+ const _GOTOe = "GetObjectTorrentOutput";
351
+ const _GOTR = "GetObjectTaggingRequest";
352
+ const _GOTRe = "GetObjectTorrentRequest";
353
+ const _GOTe = "GetObjectTorrent";
354
+ const _GPAB = "GetPublicAccessBlock";
355
+ const _GPABO = "GetPublicAccessBlockOutput";
356
+ const _GPABR = "GetPublicAccessBlockRequest";
357
+ const _GR = "GrantRead";
358
+ const _GRACP = "GrantReadACP";
359
+ const _GW = "GrantWrite";
360
+ const _GWACP = "GrantWriteACP";
361
+ const _Gr = "Grant";
362
+ const _Gra = "Grantee";
363
+ const _HB = "HeadBucket";
364
+ const _HBO = "HeadBucketOutput";
365
+ const _HBR = "HeadBucketRequest";
366
+ const _HECRE = "HttpErrorCodeReturnedEquals";
367
+ const _HN = "HostName";
368
+ const _HO = "HeadObject";
369
+ const _HOO = "HeadObjectOutput";
370
+ const _HOR = "HeadObjectRequest";
371
+ const _HRC = "HttpRedirectCode";
372
+ const _I = "Id";
373
+ const _IC = "InventoryConfiguration";
374
+ const _ICL = "InventoryConfigurationList";
375
+ const _ID = "ID";
376
+ const _IDn = "IndexDocument";
377
+ const _IDnv = "InventoryDestination";
378
+ const _IE = "IsEnabled";
379
+ const _IEn = "InventoryEncryption";
380
+ const _IF = "InventoryFilter";
381
+ const _IL = "IsLatest";
382
+ const _IM = "IfMatch";
383
+ const _IMIT = "IfMatchInitiatedTime";
384
+ const _IMLMT = "IfMatchLastModifiedTime";
385
+ const _IMS = "IfMatchSize";
386
+ const _IMS_ = "If-Modified-Since";
387
+ const _IMSf = "IfModifiedSince";
388
+ const _IMUR = "InitiateMultipartUploadResult";
389
+ const _IM_ = "If-Match";
390
+ const _INM = "IfNoneMatch";
391
+ const _INM_ = "If-None-Match";
392
+ const _IOF = "InventoryOptionalFields";
393
+ const _IOS = "InvalidObjectState";
394
+ const _IOV = "IncludedObjectVersions";
395
+ const _IP = "IsPublic";
396
+ const _IPA = "IgnorePublicAcls";
397
+ const _IPM = "IdempotencyParameterMismatch";
398
+ const _IR = "InvalidRequest";
399
+ const _IRIP = "IsRestoreInProgress";
400
+ const _IS = "InputSerialization";
401
+ const _ISBD = "InventoryS3BucketDestination";
402
+ const _ISn = "InventorySchedule";
403
+ const _IT = "IsTruncated";
404
+ const _ITAO = "IntelligentTieringAndOperator";
405
+ const _ITC = "IntelligentTieringConfiguration";
406
+ const _ITCL = "IntelligentTieringConfigurationList";
407
+ const _ITCR = "InventoryTableConfigurationResult";
408
+ const _ITCU = "InventoryTableConfigurationUpdates";
409
+ const _ITCn = "InventoryTableConfiguration";
410
+ const _ITF = "IntelligentTieringFilter";
411
+ const _IUS = "IfUnmodifiedSince";
412
+ const _IUS_ = "If-Unmodified-Since";
413
+ const _IWO = "InvalidWriteOffset";
414
+ const _In = "Initiator";
415
+ const _Ini = "Initiated";
416
+ const _JSON = "JSON";
417
+ const _JSONI = "JSONInput";
418
+ const _JSONO = "JSONOutput";
419
+ const _JTC = "JournalTableConfiguration";
420
+ const _JTCR = "JournalTableConfigurationResult";
421
+ const _JTCU = "JournalTableConfigurationUpdates";
422
+ const _K = "Key";
423
+ const _KC = "KeyCount";
424
+ const _KI = "KeyId";
425
+ const _KKA = "KmsKeyArn";
426
+ const _KM = "KeyMarker";
427
+ const _KMSC = "KMSContext";
428
+ const _KMSKA = "KMSKeyArn";
429
+ const _KMSKI = "KMSKeyId";
430
+ const _KMSMKID = "KMSMasterKeyID";
431
+ const _KPE = "KeyPrefixEquals";
432
+ const _L = "Location";
433
+ const _LAMBR = "ListAllMyBucketsResult";
434
+ const _LAMDBR = "ListAllMyDirectoryBucketsResult";
435
+ const _LB = "ListBuckets";
436
+ const _LBAC = "ListBucketAnalyticsConfigurations";
437
+ const _LBACO = "ListBucketAnalyticsConfigurationsOutput";
438
+ const _LBACR = "ListBucketAnalyticsConfigurationResult";
439
+ const _LBACRi = "ListBucketAnalyticsConfigurationsRequest";
440
+ const _LBIC = "ListBucketInventoryConfigurations";
441
+ const _LBICO = "ListBucketInventoryConfigurationsOutput";
442
+ const _LBICR = "ListBucketInventoryConfigurationsRequest";
443
+ const _LBITC = "ListBucketIntelligentTieringConfigurations";
444
+ const _LBITCO = "ListBucketIntelligentTieringConfigurationsOutput";
445
+ const _LBITCR = "ListBucketIntelligentTieringConfigurationsRequest";
446
+ const _LBMC = "ListBucketMetricsConfigurations";
447
+ const _LBMCO = "ListBucketMetricsConfigurationsOutput";
448
+ const _LBMCR = "ListBucketMetricsConfigurationsRequest";
449
+ const _LBO = "ListBucketsOutput";
450
+ const _LBR = "ListBucketsRequest";
451
+ const _LBRi = "ListBucketResult";
452
+ const _LC = "LocationConstraint";
453
+ const _LCi = "LifecycleConfiguration";
454
+ const _LDB = "ListDirectoryBuckets";
455
+ const _LDBO = "ListDirectoryBucketsOutput";
456
+ const _LDBR = "ListDirectoryBucketsRequest";
457
+ const _LE = "LoggingEnabled";
458
+ const _LEi = "LifecycleExpiration";
459
+ const _LFA = "LambdaFunctionArn";
460
+ const _LFC = "LambdaFunctionConfiguration";
461
+ const _LFCL = "LambdaFunctionConfigurationList";
462
+ const _LFCa = "LambdaFunctionConfigurations";
463
+ const _LH = "LegalHold";
464
+ const _LI = "LocationInfo";
465
+ const _LICR = "ListInventoryConfigurationsResult";
466
+ const _LM = "LastModified";
467
+ const _LMCR = "ListMetricsConfigurationsResult";
468
+ const _LMT = "LastModifiedTime";
469
+ const _LMU = "ListMultipartUploads";
470
+ const _LMUO = "ListMultipartUploadsOutput";
471
+ const _LMUR = "ListMultipartUploadsResult";
472
+ const _LMURi = "ListMultipartUploadsRequest";
473
+ const _LM_ = "Last-Modified";
474
+ const _LO = "ListObjects";
475
+ const _LOO = "ListObjectsOutput";
476
+ const _LOR = "ListObjectsRequest";
477
+ const _LOV = "ListObjectsV2";
478
+ const _LOVO = "ListObjectsV2Output";
479
+ const _LOVOi = "ListObjectVersionsOutput";
480
+ const _LOVR = "ListObjectsV2Request";
481
+ const _LOVRi = "ListObjectVersionsRequest";
482
+ const _LOVi = "ListObjectVersions";
483
+ const _LP = "ListParts";
484
+ const _LPO = "ListPartsOutput";
485
+ const _LPR = "ListPartsResult";
486
+ const _LPRi = "ListPartsRequest";
487
+ const _LR = "LifecycleRule";
488
+ const _LRAO = "LifecycleRuleAndOperator";
489
+ const _LRF = "LifecycleRuleFilter";
490
+ const _LRi = "LifecycleRules";
491
+ const _LVR = "ListVersionsResult";
492
+ const _M = "Metadata";
493
+ const _MAO = "MetricsAndOperator";
494
+ const _MAS = "MaxAgeSeconds";
495
+ const _MB = "MaxBuckets";
496
+ const _MC = "MetadataConfiguration";
497
+ const _MCL = "MetricsConfigurationList";
498
+ const _MCR = "MetadataConfigurationResult";
499
+ const _MCe = "MetricsConfiguration";
500
+ const _MD = "MetadataDirective";
501
+ const _MDB = "MaxDirectoryBuckets";
502
+ const _MDf = "MfaDelete";
503
+ const _ME = "MetadataEntry";
504
+ const _MF = "MetricsFilter";
505
+ const _MFA = "MFA";
506
+ const _MFAD = "MFADelete";
507
+ const _MK = "MaxKeys";
508
+ const _MM = "MissingMeta";
509
+ const _MOS = "MpuObjectSize";
510
+ const _MP = "MaxParts";
511
+ const _MTC = "MetadataTableConfiguration";
512
+ const _MTCR = "MetadataTableConfigurationResult";
513
+ const _MTEC = "MetadataTableEncryptionConfiguration";
514
+ const _MU = "MultipartUpload";
515
+ const _MUL = "MultipartUploadList";
516
+ const _MUa = "MaxUploads";
517
+ const _Ma = "Marker";
518
+ const _Me = "Metrics";
519
+ const _Mes = "Message";
520
+ const _Mi = "Minutes";
521
+ const _Mo = "Mode";
522
+ const _N = "Name";
523
+ const _NC = "NotificationConfiguration";
524
+ const _NCF = "NotificationConfigurationFilter";
525
+ const _NCT = "NextContinuationToken";
526
+ const _ND = "NoncurrentDays";
527
+ const _NEKKAS = "NonEmptyKmsKeyArnString";
528
+ const _NF = "NotFound";
529
+ const _NKM = "NextKeyMarker";
530
+ const _NM = "NextMarker";
531
+ const _NNV = "NewerNoncurrentVersions";
532
+ const _NPNM = "NextPartNumberMarker";
533
+ const _NSB = "NoSuchBucket";
534
+ const _NSK = "NoSuchKey";
535
+ const _NSU = "NoSuchUpload";
536
+ const _NUIM = "NextUploadIdMarker";
537
+ const _NVE = "NoncurrentVersionExpiration";
538
+ const _NVIM = "NextVersionIdMarker";
539
+ const _NVT = "NoncurrentVersionTransitions";
540
+ const _NVTL = "NoncurrentVersionTransitionList";
541
+ const _NVTo = "NoncurrentVersionTransition";
542
+ const _O = "Owner";
543
+ const _OA = "ObjectAttributes";
544
+ const _OAIATE = "ObjectAlreadyInActiveTierError";
545
+ const _OC = "OwnershipControls";
546
+ const _OCR = "OwnershipControlsRule";
547
+ const _OCRw = "OwnershipControlsRules";
548
+ const _OE = "ObjectEncryption";
549
+ const _OF = "OptionalFields";
550
+ const _OI = "ObjectIdentifier";
551
+ const _OIL = "ObjectIdentifierList";
552
+ const _OL = "OutputLocation";
553
+ const _OLC = "ObjectLockConfiguration";
554
+ const _OLE = "ObjectLockEnabled";
555
+ const _OLEFB = "ObjectLockEnabledForBucket";
556
+ const _OLLH = "ObjectLockLegalHold";
557
+ const _OLLHS = "ObjectLockLegalHoldStatus";
558
+ const _OLM = "ObjectLockMode";
559
+ const _OLR = "ObjectLockRetention";
560
+ const _OLRUD = "ObjectLockRetainUntilDate";
561
+ const _OLRb = "ObjectLockRule";
562
+ const _OLb = "ObjectList";
563
+ const _ONIATE = "ObjectNotInActiveTierError";
564
+ const _OO = "ObjectOwnership";
565
+ const _OOA = "OptionalObjectAttributes";
566
+ const _OP = "ObjectParts";
567
+ const _OPb = "ObjectPart";
568
+ const _OS = "ObjectSize";
569
+ const _OSGT = "ObjectSizeGreaterThan";
570
+ const _OSLT = "ObjectSizeLessThan";
571
+ const _OSV = "OutputSchemaVersion";
572
+ const _OSu = "OutputSerialization";
573
+ const _OV = "ObjectVersion";
574
+ const _OVL = "ObjectVersionList";
575
+ const _Ob = "Objects";
576
+ const _Obj = "Object";
577
+ const _P = "Prefix";
578
+ const _PABC = "PublicAccessBlockConfiguration";
579
+ const _PBA = "PutBucketAbac";
580
+ const _PBAC = "PutBucketAccelerateConfiguration";
581
+ const _PBACR = "PutBucketAccelerateConfigurationRequest";
582
+ const _PBACRu = "PutBucketAnalyticsConfigurationRequest";
583
+ const _PBACu = "PutBucketAnalyticsConfiguration";
584
+ const _PBAR = "PutBucketAbacRequest";
585
+ const _PBARu = "PutBucketAclRequest";
586
+ const _PBAu = "PutBucketAcl";
587
+ const _PBC = "PutBucketCors";
588
+ const _PBCR = "PutBucketCorsRequest";
589
+ const _PBE = "PutBucketEncryption";
590
+ const _PBER = "PutBucketEncryptionRequest";
591
+ const _PBIC = "PutBucketInventoryConfiguration";
592
+ const _PBICR = "PutBucketInventoryConfigurationRequest";
593
+ const _PBITC = "PutBucketIntelligentTieringConfiguration";
594
+ const _PBITCR = "PutBucketIntelligentTieringConfigurationRequest";
595
+ const _PBL = "PutBucketLogging";
596
+ const _PBLC = "PutBucketLifecycleConfiguration";
597
+ const _PBLCO = "PutBucketLifecycleConfigurationOutput";
598
+ const _PBLCR = "PutBucketLifecycleConfigurationRequest";
599
+ const _PBLR = "PutBucketLoggingRequest";
600
+ const _PBMC = "PutBucketMetricsConfiguration";
601
+ const _PBMCR = "PutBucketMetricsConfigurationRequest";
602
+ const _PBNC = "PutBucketNotificationConfiguration";
603
+ const _PBNCR = "PutBucketNotificationConfigurationRequest";
604
+ const _PBOC = "PutBucketOwnershipControls";
605
+ const _PBOCR = "PutBucketOwnershipControlsRequest";
606
+ const _PBP = "PutBucketPolicy";
607
+ const _PBPR = "PutBucketPolicyRequest";
608
+ const _PBR = "PutBucketReplication";
609
+ const _PBRP = "PutBucketRequestPayment";
610
+ const _PBRPR = "PutBucketRequestPaymentRequest";
611
+ const _PBRR = "PutBucketReplicationRequest";
612
+ const _PBT = "PutBucketTagging";
613
+ const _PBTR = "PutBucketTaggingRequest";
614
+ const _PBV = "PutBucketVersioning";
615
+ const _PBVR = "PutBucketVersioningRequest";
616
+ const _PBW = "PutBucketWebsite";
617
+ const _PBWR = "PutBucketWebsiteRequest";
618
+ const _PC = "PartsCount";
619
+ const _PDS = "PartitionDateSource";
620
+ const _PE = "ProgressEvent";
621
+ const _PI = "ParquetInput";
622
+ const _PL = "PartsList";
623
+ const _PN = "PartNumber";
624
+ const _PNM = "PartNumberMarker";
625
+ const _PO = "PutObject";
626
+ const _POA = "PutObjectAcl";
627
+ const _POAO = "PutObjectAclOutput";
628
+ const _POAR = "PutObjectAclRequest";
629
+ const _POLC = "PutObjectLockConfiguration";
630
+ const _POLCO = "PutObjectLockConfigurationOutput";
631
+ const _POLCR = "PutObjectLockConfigurationRequest";
632
+ const _POLH = "PutObjectLegalHold";
633
+ const _POLHO = "PutObjectLegalHoldOutput";
634
+ const _POLHR = "PutObjectLegalHoldRequest";
635
+ const _POO = "PutObjectOutput";
636
+ const _POR = "PutObjectRequest";
637
+ const _PORO = "PutObjectRetentionOutput";
638
+ const _PORR = "PutObjectRetentionRequest";
639
+ const _PORu = "PutObjectRetention";
640
+ const _POT = "PutObjectTagging";
641
+ const _POTO = "PutObjectTaggingOutput";
642
+ const _POTR = "PutObjectTaggingRequest";
643
+ const _PP = "PartitionedPrefix";
644
+ const _PPAB = "PutPublicAccessBlock";
645
+ const _PPABR = "PutPublicAccessBlockRequest";
646
+ const _PS = "PolicyStatus";
647
+ const _Pa = "Parts";
648
+ const _Par = "Part";
649
+ const _Parq = "Parquet";
650
+ const _Pay = "Payer";
651
+ const _Payl = "Payload";
652
+ const _Pe = "Permission";
653
+ const _Po = "Policy";
654
+ const _Pr = "Progress";
655
+ const _Pri = "Priority";
656
+ const _Pro = "Protocol";
657
+ const _Q = "Quiet";
658
+ const _QA = "QueueArn";
659
+ const _QC = "QuoteCharacter";
660
+ const _QCL = "QueueConfigurationList";
661
+ const _QCu = "QueueConfigurations";
662
+ const _QCue = "QueueConfiguration";
663
+ const _QEC = "QuoteEscapeCharacter";
664
+ const _QF = "QuoteFields";
665
+ const _Qu = "Queue";
666
+ const _R = "Rules";
667
+ const _RART = "RedirectAllRequestsTo";
668
+ const _RC = "RequestCharged";
669
+ const _RCC = "ResponseCacheControl";
670
+ const _RCD = "ResponseContentDisposition";
671
+ const _RCE = "ResponseContentEncoding";
672
+ const _RCL = "ResponseContentLanguage";
673
+ const _RCT = "ResponseContentType";
674
+ const _RCe = "ReplicationConfiguration";
675
+ const _RD = "RecordDelimiter";
676
+ const _RE = "ResponseExpires";
677
+ const _RED = "RestoreExpiryDate";
678
+ const _REe = "RecordExpiration";
679
+ const _REec = "RecordsEvent";
680
+ const _RKKID = "ReplicaKmsKeyID";
681
+ const _RKPW = "ReplaceKeyPrefixWith";
682
+ const _RKW = "ReplaceKeyWith";
683
+ const _RM = "ReplicaModifications";
684
+ const _RO = "RenameObject";
685
+ const _ROO = "RenameObjectOutput";
686
+ const _ROOe = "RestoreObjectOutput";
687
+ const _ROP = "RestoreOutputPath";
688
+ const _ROR = "RenameObjectRequest";
689
+ const _RORe = "RestoreObjectRequest";
690
+ const _ROe = "RestoreObject";
691
+ const _RP = "RequestPayer";
692
+ const _RPB = "RestrictPublicBuckets";
693
+ const _RPC = "RequestPaymentConfiguration";
694
+ const _RPe = "RequestProgress";
695
+ const _RR = "RoutingRules";
696
+ const _RRAO = "ReplicationRuleAndOperator";
697
+ const _RRF = "ReplicationRuleFilter";
698
+ const _RRe = "ReplicationRule";
699
+ const _RRep = "ReplicationRules";
700
+ const _RReq = "RequestRoute";
701
+ const _RRes = "RestoreRequest";
702
+ const _RRo = "RoutingRule";
703
+ const _RS = "ReplicationStatus";
704
+ const _RSe = "RestoreStatus";
705
+ const _RSen = "RenameSource";
706
+ const _RT = "ReplicationTime";
707
+ const _RTV = "ReplicationTimeValue";
708
+ const _RTe = "RequestToken";
709
+ const _RUD = "RetainUntilDate";
710
+ const _Ra = "Range";
711
+ const _Re = "Restore";
712
+ const _Rec = "Records";
713
+ const _Red = "Redirect";
714
+ const _Ret = "Retention";
715
+ const _Ro = "Role";
716
+ const _Ru = "Rule";
717
+ const _S = "Status";
718
+ const _SA = "StartAfter";
719
+ const _SAK = "SecretAccessKey";
720
+ const _SAs = "SseAlgorithm";
721
+ const _SB = "StreamingBlob";
722
+ const _SBD = "S3BucketDestination";
723
+ const _SC = "StorageClass";
724
+ const _SCA = "StorageClassAnalysis";
725
+ const _SCADE = "StorageClassAnalysisDataExport";
726
+ const _SCV = "SessionCredentialValue";
727
+ const _SCe = "SessionCredentials";
728
+ const _SCt = "StatusCode";
729
+ const _SDV = "SkipDestinationValidation";
730
+ const _SE = "StatsEvent";
731
+ const _SIM = "SourceIfMatch";
732
+ const _SIMS = "SourceIfModifiedSince";
733
+ const _SINM = "SourceIfNoneMatch";
734
+ const _SIUS = "SourceIfUnmodifiedSince";
735
+ const _SK = "SSE-KMS";
736
+ const _SKEO = "SseKmsEncryptedObjects";
737
+ const _SKF = "S3KeyFilter";
738
+ const _SKe = "S3Key";
739
+ const _SL = "S3Location";
740
+ const _SM = "SessionMode";
741
+ const _SOC = "SelectObjectContent";
742
+ const _SOCES = "SelectObjectContentEventStream";
743
+ const _SOCO = "SelectObjectContentOutput";
744
+ const _SOCR = "SelectObjectContentRequest";
745
+ const _SP = "SelectParameters";
746
+ const _SPi = "SimplePrefix";
747
+ const _SR = "ScanRange";
748
+ const _SS = "SSE-S3";
749
+ const _SSC = "SourceSelectionCriteria";
750
+ const _SSE = "ServerSideEncryption";
751
+ const _SSEA = "SSEAlgorithm";
752
+ const _SSEBD = "ServerSideEncryptionByDefault";
753
+ const _SSEC = "ServerSideEncryptionConfiguration";
754
+ const _SSECA = "SSECustomerAlgorithm";
755
+ const _SSECK = "SSECustomerKey";
756
+ const _SSECKMD = "SSECustomerKeyMD5";
757
+ const _SSEKMS = "SSEKMS";
758
+ const _SSEKMSE = "SSEKMSEncryption";
759
+ const _SSEKMSEC = "SSEKMSEncryptionContext";
760
+ const _SSEKMSKI = "SSEKMSKeyId";
761
+ const _SSER = "ServerSideEncryptionRule";
762
+ const _SSERe = "ServerSideEncryptionRules";
763
+ const _SSES = "SSES3";
764
+ const _ST = "SessionToken";
765
+ const _STD = "S3TablesDestination";
766
+ const _STDR = "S3TablesDestinationResult";
767
+ const _S_ = "S3";
768
+ const _Sc = "Schedule";
769
+ const _Si = "Size";
770
+ const _St = "Start";
771
+ const _Sta = "Stats";
772
+ const _Su = "Suffix";
773
+ const _T = "Tags";
774
+ const _TA = "TableArn";
775
+ const _TAo = "TopicArn";
776
+ const _TB = "TargetBucket";
777
+ const _TBA = "TableBucketArn";
778
+ const _TBT = "TableBucketType";
779
+ const _TC = "TagCount";
780
+ const _TCL = "TopicConfigurationList";
781
+ const _TCo = "TopicConfigurations";
782
+ const _TCop = "TopicConfiguration";
783
+ const _TD = "TaggingDirective";
784
+ const _TDMOS = "TransitionDefaultMinimumObjectSize";
785
+ const _TG = "TargetGrants";
786
+ const _TGa = "TargetGrant";
787
+ const _TL = "TieringList";
788
+ const _TLr = "TransitionList";
789
+ const _TMP = "TooManyParts";
790
+ const _TN = "TableNamespace";
791
+ const _TNa = "TableName";
792
+ const _TOKF = "TargetObjectKeyFormat";
793
+ const _TP = "TargetPrefix";
794
+ const _TPC = "TotalPartsCount";
795
+ const _TS = "TagSet";
796
+ const _TSa = "TableStatus";
797
+ const _Ta = "Tag";
798
+ const _Tag = "Tagging";
799
+ const _Ti = "Tier";
800
+ const _Tie = "Tierings";
801
+ const _Tier = "Tiering";
802
+ const _Tim = "Time";
803
+ const _To = "Token";
804
+ const _Top = "Topic";
805
+ const _Tr = "Transitions";
806
+ const _Tra = "Transition";
807
+ const _Ty = "Type";
808
+ const _U = "Uploads";
809
+ const _UBMITC = "UpdateBucketMetadataInventoryTableConfiguration";
810
+ const _UBMITCR = "UpdateBucketMetadataInventoryTableConfigurationRequest";
811
+ const _UBMJTC = "UpdateBucketMetadataJournalTableConfiguration";
812
+ const _UBMJTCR = "UpdateBucketMetadataJournalTableConfigurationRequest";
813
+ const _UI = "UploadId";
814
+ const _UIM = "UploadIdMarker";
815
+ const _UM = "UserMetadata";
816
+ const _UOE = "UpdateObjectEncryption";
817
+ const _UOER = "UpdateObjectEncryptionRequest";
818
+ const _UOERp = "UpdateObjectEncryptionResponse";
819
+ const _UP = "UploadPart";
820
+ const _UPC = "UploadPartCopy";
821
+ const _UPCO = "UploadPartCopyOutput";
822
+ const _UPCR = "UploadPartCopyRequest";
823
+ const _UPO = "UploadPartOutput";
824
+ const _UPR = "UploadPartRequest";
825
+ const _URI = "URI";
826
+ const _Up = "Upload";
827
+ const _V = "Value";
828
+ const _VC = "VersioningConfiguration";
829
+ const _VI = "VersionId";
830
+ const _VIM = "VersionIdMarker";
831
+ const _Ve = "Versions";
832
+ const _Ver = "Version";
833
+ const _WC = "WebsiteConfiguration";
834
+ const _WGOR = "WriteGetObjectResponse";
835
+ const _WGORR = "WriteGetObjectResponseRequest";
836
+ const _WOB = "WriteOffsetBytes";
837
+ const _WRL = "WebsiteRedirectLocation";
838
+ const _Y = "Years";
839
+ const _ar = "accept-ranges";
840
+ const _br = "bucket-region";
841
+ const _c = "client";
842
+ const _ct = "continuation-token";
843
+ const _d = "delimiter";
844
+ const _e = "error";
845
+ const _eP = "eventPayload";
846
+ const _en = "endpoint";
847
+ const _et = "encoding-type";
848
+ const _fo = "fetch-owner";
849
+ const _h = "http";
850
+ const _hC = "httpChecksum";
851
+ const _hE = "httpError";
852
+ const _hH = "httpHeader";
853
+ const _hL = "hostLabel";
854
+ const _hP = "httpPayload";
855
+ const _hPH = "httpPrefixHeaders";
856
+ const _hQ = "httpQuery";
857
+ const _hi = "http://www.w3.org/2001/XMLSchema-instance";
858
+ const _i = "id";
859
+ const _iT = "idempotencyToken";
860
+ const _km = "key-marker";
861
+ const _m = "marker";
862
+ const _mb = "max-buckets";
863
+ const _mdb = "max-directory-buckets";
864
+ const _mk = "max-keys";
865
+ const _mp = "max-parts";
866
+ const _mu = "max-uploads";
867
+ const _p = "prefix";
868
+ const _pN = "partNumber";
869
+ const _pnm = "part-number-marker";
870
+ const _rcc = "response-cache-control";
871
+ const _rcd = "response-content-disposition";
872
+ const _rce = "response-content-encoding";
873
+ const _rcl = "response-content-language";
874
+ const _rct = "response-content-type";
875
+ const _re = "response-expires";
876
+ const _s = "streaming";
877
+ const _sa = "start-after";
878
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.s3";
879
+ const _uI = "uploadId";
880
+ const _uim = "upload-id-marker";
881
+ const _vI = "versionId";
882
+ const _vim = "version-id-marker";
883
+ const _x = "xsi";
884
+ const _xA = "xmlAttribute";
885
+ const _xF = "xmlFlattened";
886
+ const _xN = "xmlName";
887
+ const _xNm = "xmlNamespace";
888
+ const _xaa = "x-amz-acl";
889
+ const _xaad = "x-amz-abort-date";
890
+ const _xaapa = "x-amz-access-point-alias";
891
+ const _xaari = "x-amz-abort-rule-id";
892
+ const _xaas = "x-amz-archive-status";
893
+ const _xaba = "x-amz-bucket-arn";
894
+ const _xabgr = "x-amz-bypass-governance-retention";
895
+ const _xabln = "x-amz-bucket-location-name";
896
+ const _xablt = "x-amz-bucket-location-type";
897
+ const _xabole = "x-amz-bucket-object-lock-enabled";
898
+ const _xabolt = "x-amz-bucket-object-lock-token";
899
+ const _xabr = "x-amz-bucket-region";
900
+ const _xaca = "x-amz-checksum-algorithm";
901
+ const _xacc = "x-amz-checksum-crc32";
902
+ const _xacc_ = "x-amz-checksum-crc32c";
903
+ const _xacc__ = "x-amz-checksum-crc64nvme";
904
+ const _xacm = "x-amz-checksum-mode";
905
+ const _xacrsba = "x-amz-confirm-remove-self-bucket-access";
906
+ const _xacs = "x-amz-checksum-sha1";
907
+ const _xacs_ = "x-amz-checksum-sha256";
908
+ const _xacs__ = "x-amz-copy-source";
909
+ const _xacsim = "x-amz-copy-source-if-match";
910
+ const _xacsims = "x-amz-copy-source-if-modified-since";
911
+ const _xacsinm = "x-amz-copy-source-if-none-match";
912
+ const _xacsius = "x-amz-copy-source-if-unmodified-since";
913
+ const _xacsm = "x-amz-create-session-mode";
914
+ const _xacsr = "x-amz-copy-source-range";
915
+ const _xacssseca = "x-amz-copy-source-server-side-encryption-customer-algorithm";
916
+ const _xacssseck = "x-amz-copy-source-server-side-encryption-customer-key";
917
+ const _xacssseckM = "x-amz-copy-source-server-side-encryption-customer-key-MD5";
918
+ const _xacsvi = "x-amz-copy-source-version-id";
919
+ const _xact = "x-amz-checksum-type";
920
+ const _xact_ = "x-amz-client-token";
921
+ const _xadm = "x-amz-delete-marker";
922
+ const _xae = "x-amz-expiration";
923
+ const _xaebo = "x-amz-expected-bucket-owner";
924
+ const _xafec = "x-amz-fwd-error-code";
925
+ const _xafem = "x-amz-fwd-error-message";
926
+ const _xafhCC = "x-amz-fwd-header-Cache-Control";
927
+ const _xafhCD = "x-amz-fwd-header-Content-Disposition";
928
+ const _xafhCE = "x-amz-fwd-header-Content-Encoding";
929
+ const _xafhCL = "x-amz-fwd-header-Content-Language";
930
+ const _xafhCR = "x-amz-fwd-header-Content-Range";
931
+ const _xafhCT = "x-amz-fwd-header-Content-Type";
932
+ const _xafhE = "x-amz-fwd-header-ETag";
933
+ const _xafhE_ = "x-amz-fwd-header-Expires";
934
+ const _xafhLM = "x-amz-fwd-header-Last-Modified";
935
+ const _xafhar = "x-amz-fwd-header-accept-ranges";
936
+ const _xafhxacc = "x-amz-fwd-header-x-amz-checksum-crc32";
937
+ const _xafhxacc_ = "x-amz-fwd-header-x-amz-checksum-crc32c";
938
+ const _xafhxacc__ = "x-amz-fwd-header-x-amz-checksum-crc64nvme";
939
+ const _xafhxacs = "x-amz-fwd-header-x-amz-checksum-sha1";
940
+ const _xafhxacs_ = "x-amz-fwd-header-x-amz-checksum-sha256";
941
+ const _xafhxadm = "x-amz-fwd-header-x-amz-delete-marker";
942
+ const _xafhxae = "x-amz-fwd-header-x-amz-expiration";
943
+ const _xafhxamm = "x-amz-fwd-header-x-amz-missing-meta";
944
+ const _xafhxampc = "x-amz-fwd-header-x-amz-mp-parts-count";
945
+ const _xafhxaollh = "x-amz-fwd-header-x-amz-object-lock-legal-hold";
946
+ const _xafhxaolm = "x-amz-fwd-header-x-amz-object-lock-mode";
947
+ const _xafhxaolrud = "x-amz-fwd-header-x-amz-object-lock-retain-until-date";
948
+ const _xafhxar = "x-amz-fwd-header-x-amz-restore";
949
+ const _xafhxarc = "x-amz-fwd-header-x-amz-request-charged";
950
+ const _xafhxars = "x-amz-fwd-header-x-amz-replication-status";
951
+ const _xafhxasc = "x-amz-fwd-header-x-amz-storage-class";
952
+ const _xafhxasse = "x-amz-fwd-header-x-amz-server-side-encryption";
953
+ const _xafhxasseakki = "x-amz-fwd-header-x-amz-server-side-encryption-aws-kms-key-id";
954
+ const _xafhxassebke = "x-amz-fwd-header-x-amz-server-side-encryption-bucket-key-enabled";
955
+ const _xafhxasseca = "x-amz-fwd-header-x-amz-server-side-encryption-customer-algorithm";
956
+ const _xafhxasseckM = "x-amz-fwd-header-x-amz-server-side-encryption-customer-key-MD5";
957
+ const _xafhxatc = "x-amz-fwd-header-x-amz-tagging-count";
958
+ const _xafhxavi = "x-amz-fwd-header-x-amz-version-id";
959
+ const _xafs = "x-amz-fwd-status";
960
+ const _xagfc = "x-amz-grant-full-control";
961
+ const _xagr = "x-amz-grant-read";
962
+ const _xagra = "x-amz-grant-read-acp";
963
+ const _xagw = "x-amz-grant-write";
964
+ const _xagwa = "x-amz-grant-write-acp";
965
+ const _xaimit = "x-amz-if-match-initiated-time";
966
+ const _xaimlmt = "x-amz-if-match-last-modified-time";
967
+ const _xaims = "x-amz-if-match-size";
968
+ const _xam = "x-amz-meta-";
969
+ const _xam_ = "x-amz-mfa";
970
+ const _xamd = "x-amz-metadata-directive";
971
+ const _xamm = "x-amz-missing-meta";
972
+ const _xamos = "x-amz-mp-object-size";
973
+ const _xamp = "x-amz-max-parts";
974
+ const _xampc = "x-amz-mp-parts-count";
975
+ const _xaoa = "x-amz-object-attributes";
976
+ const _xaollh = "x-amz-object-lock-legal-hold";
977
+ const _xaolm = "x-amz-object-lock-mode";
978
+ const _xaolrud = "x-amz-object-lock-retain-until-date";
979
+ const _xaoo = "x-amz-object-ownership";
980
+ const _xaooa = "x-amz-optional-object-attributes";
981
+ const _xaos = "x-amz-object-size";
982
+ const _xapnm = "x-amz-part-number-marker";
983
+ const _xar = "x-amz-restore";
984
+ const _xarc = "x-amz-request-charged";
985
+ const _xarop = "x-amz-restore-output-path";
986
+ const _xarp = "x-amz-request-payer";
987
+ const _xarr = "x-amz-request-route";
988
+ const _xars = "x-amz-replication-status";
989
+ const _xars_ = "x-amz-rename-source";
990
+ const _xarsim = "x-amz-rename-source-if-match";
991
+ const _xarsims = "x-amz-rename-source-if-modified-since";
992
+ const _xarsinm = "x-amz-rename-source-if-none-match";
993
+ const _xarsius = "x-amz-rename-source-if-unmodified-since";
994
+ const _xart = "x-amz-request-token";
995
+ const _xasc = "x-amz-storage-class";
996
+ const _xasca = "x-amz-sdk-checksum-algorithm";
997
+ const _xasdv = "x-amz-skip-destination-validation";
998
+ const _xasebo = "x-amz-source-expected-bucket-owner";
999
+ const _xasse = "x-amz-server-side-encryption";
1000
+ const _xasseakki = "x-amz-server-side-encryption-aws-kms-key-id";
1001
+ const _xassebke = "x-amz-server-side-encryption-bucket-key-enabled";
1002
+ const _xassec = "x-amz-server-side-encryption-context";
1003
+ const _xasseca = "x-amz-server-side-encryption-customer-algorithm";
1004
+ const _xasseck = "x-amz-server-side-encryption-customer-key";
1005
+ const _xasseckM = "x-amz-server-side-encryption-customer-key-MD5";
1006
+ const _xat = "x-amz-tagging";
1007
+ const _xatc = "x-amz-tagging-count";
1008
+ const _xatd = "x-amz-tagging-directive";
1009
+ const _xatdmos = "x-amz-transition-default-minimum-object-size";
1010
+ const _xavi = "x-amz-version-id";
1011
+ const _xawob = "x-amz-write-offset-bytes";
1012
+ const _xawrl = "x-amz-website-redirect-location";
1013
+ const _xs = "xsi:type";
1014
+ const n0 = "com.amazonaws.s3";
1015
+ import { TypeRegistry } from "@smithy/core/schema";
1016
+ import { AccessDenied, BucketAlreadyExists, BucketAlreadyOwnedByYou, EncryptionTypeMismatch, IdempotencyParameterMismatch, InvalidObjectState, InvalidRequest, InvalidWriteOffset, NoSuchBucket, NoSuchKey, NoSuchUpload, NotFound, ObjectAlreadyInActiveTierError, ObjectNotInActiveTierError, TooManyParts, } from "../models/errors";
1017
+ import { S3ServiceException } from "../models/S3ServiceException";
1018
+ var CopySourceSSECustomerKey = [0, n0, _CSSSECK, 8, 0];
1019
+ var NonEmptyKmsKeyArnString = [0, n0, _NEKKAS, 8, 0];
1020
+ var SessionCredentialValue = [0, n0, _SCV, 8, 0];
1021
+ var SSECustomerKey = [0, n0, _SSECK, 8, 0];
1022
+ var SSEKMSEncryptionContext = [0, n0, _SSEKMSEC, 8, 0];
1023
+ var SSEKMSKeyId = [0, n0, _SSEKMSKI, 8, 0];
1024
+ var StreamingBlob = [0, n0, _SB, { [_s]: 1 }, 42];
1025
+ export var AbacStatus$ = [3, n0, _AS,
1026
+ 0,
1027
+ [_S],
1028
+ [0]
1029
+ ];
1030
+ export var AbortIncompleteMultipartUpload$ = [3, n0, _AIMU,
1031
+ 0,
1032
+ [_DAI],
1033
+ [1]
1034
+ ];
1035
+ export var AbortMultipartUploadOutput$ = [3, n0, _AMUO,
1036
+ 0,
1037
+ [_RC],
1038
+ [[0, { [_hH]: _xarc }]]
1039
+ ];
1040
+ export var AbortMultipartUploadRequest$ = [3, n0, _AMUR,
1041
+ 0,
1042
+ [_B, _K, _UI, _RP, _EBO, _IMIT],
1043
+ [[0, 1], [0, 1], [0, { [_hQ]: _uI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [6, { [_hH]: _xaimit }]], 3
1044
+ ];
1045
+ export var AccelerateConfiguration$ = [3, n0, _AC,
1046
+ 0,
1047
+ [_S],
1048
+ [0]
1049
+ ];
1050
+ export var AccessControlPolicy$ = [3, n0, _ACP,
1051
+ 0,
1052
+ [_G, _O],
1053
+ [[() => Grants, { [_xN]: _ACL }], () => Owner$]
1054
+ ];
1055
+ export var AccessControlTranslation$ = [3, n0, _ACT,
1056
+ 0,
1057
+ [_O],
1058
+ [0], 1
1059
+ ];
1060
+ export var AccessDenied$ = [-3, n0, _AD,
1061
+ { [_e]: _c, [_hE]: 403 },
1062
+ [],
1063
+ []
1064
+ ];
1065
+ TypeRegistry.for(n0).registerError(AccessDenied$, AccessDenied);
1066
+ export var AnalyticsAndOperator$ = [3, n0, _AAO,
1067
+ 0,
1068
+ [_P, _T],
1069
+ [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]]
1070
+ ];
1071
+ export var AnalyticsConfiguration$ = [3, n0, _ACn,
1072
+ 0,
1073
+ [_I, _SCA, _F],
1074
+ [0, () => StorageClassAnalysis$, [() => AnalyticsFilter$, 0]], 2
1075
+ ];
1076
+ export var AnalyticsExportDestination$ = [3, n0, _AED,
1077
+ 0,
1078
+ [_SBD],
1079
+ [() => AnalyticsS3BucketDestination$], 1
1080
+ ];
1081
+ export var AnalyticsS3BucketDestination$ = [3, n0, _ASBD,
1082
+ 0,
1083
+ [_Fo, _B, _BAI, _P],
1084
+ [0, 0, 0, 0], 2
1085
+ ];
1086
+ export var BlockedEncryptionTypes$ = [3, n0, _BET,
1087
+ 0,
1088
+ [_ET],
1089
+ [[() => EncryptionTypeList, { [_xF]: 1 }]]
1090
+ ];
1091
+ export var Bucket$ = [3, n0, _B,
1092
+ 0,
1093
+ [_N, _CD, _BR, _BA],
1094
+ [0, 4, 0, 0]
1095
+ ];
1096
+ export var BucketAlreadyExists$ = [-3, n0, _BAE,
1097
+ { [_e]: _c, [_hE]: 409 },
1098
+ [],
1099
+ []
1100
+ ];
1101
+ TypeRegistry.for(n0).registerError(BucketAlreadyExists$, BucketAlreadyExists);
1102
+ export var BucketAlreadyOwnedByYou$ = [-3, n0, _BAOBY,
1103
+ { [_e]: _c, [_hE]: 409 },
1104
+ [],
1105
+ []
1106
+ ];
1107
+ TypeRegistry.for(n0).registerError(BucketAlreadyOwnedByYou$, BucketAlreadyOwnedByYou);
1108
+ export var BucketInfo$ = [3, n0, _BI,
1109
+ 0,
1110
+ [_DR, _Ty],
1111
+ [0, 0]
1112
+ ];
1113
+ export var BucketLifecycleConfiguration$ = [3, n0, _BLC,
1114
+ 0,
1115
+ [_R],
1116
+ [[() => LifecycleRules, { [_xF]: 1, [_xN]: _Ru }]], 1
1117
+ ];
1118
+ export var BucketLoggingStatus$ = [3, n0, _BLS,
1119
+ 0,
1120
+ [_LE],
1121
+ [[() => LoggingEnabled$, 0]]
1122
+ ];
1123
+ export var Checksum$ = [3, n0, _C,
1124
+ 0,
1125
+ [_CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT],
1126
+ [0, 0, 0, 0, 0, 0]
1127
+ ];
1128
+ export var CommonPrefix$ = [3, n0, _CP,
1129
+ 0,
1130
+ [_P],
1131
+ [0]
1132
+ ];
1133
+ export var CompletedMultipartUpload$ = [3, n0, _CMU,
1134
+ 0,
1135
+ [_Pa],
1136
+ [[() => CompletedPartList, { [_xF]: 1, [_xN]: _Par }]]
1137
+ ];
1138
+ export var CompletedPart$ = [3, n0, _CPo,
1139
+ 0,
1140
+ [_ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _PN],
1141
+ [0, 0, 0, 0, 0, 0, 1]
1142
+ ];
1143
+ export var CompleteMultipartUploadOutput$ = [3, n0, _CMUO,
1144
+ { [_xN]: _CMUR },
1145
+ [_L, _B, _K, _E, _ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _SSE, _VI, _SSEKMSKI, _BKE, _RC],
1146
+ [0, 0, 0, [0, { [_hH]: _xae }], 0, 0, 0, 0, 0, 0, 0, [0, { [_hH]: _xasse }], [0, { [_hH]: _xavi }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]]
1147
+ ];
1148
+ export var CompleteMultipartUploadRequest$ = [3, n0, _CMURo,
1149
+ 0,
1150
+ [_B, _K, _UI, _MU, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _MOS, _RP, _EBO, _IM, _INM, _SSECA, _SSECK, _SSECKMD],
1151
+ [[0, 1], [0, 1], [0, { [_hQ]: _uI }], [() => CompletedMultipartUpload$, { [_hP]: 1, [_xN]: _CMUo }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xact }], [1, { [_hH]: _xamos }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }]], 3
1152
+ ];
1153
+ export var Condition$ = [3, n0, _Co,
1154
+ 0,
1155
+ [_HECRE, _KPE],
1156
+ [0, 0]
1157
+ ];
1158
+ export var ContinuationEvent$ = [3, n0, _CE,
1159
+ 0,
1160
+ [],
1161
+ []
1162
+ ];
1163
+ export var CopyObjectOutput$ = [3, n0, _COO,
1164
+ 0,
1165
+ [_COR, _E, _CSVI, _VI, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RC],
1166
+ [[() => CopyObjectResult$, 16], [0, { [_hH]: _xae }], [0, { [_hH]: _xacsvi }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]]
1167
+ ];
1168
+ export var CopyObjectRequest$ = [3, n0, _CORo,
1169
+ 0,
1170
+ [_B, _CS, _K, _ACL_, _CC, _CA, _CDo, _CEo, _CL, _CTo, _CSIM, _CSIMS, _CSINM, _CSIUS, _Ex, _GFC, _GR, _GRACP, _GWACP, _IM, _INM, _M, _MD, _TD, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _CSSSECA, _CSSSECK, _CSSSECKMD, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO, _ESBO],
1171
+ [[0, 1], [0, { [_hH]: _xacs__ }], [0, 1], [0, { [_hH]: _xaa }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _xaca }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _xacsim }], [4, { [_hH]: _xacsims }], [0, { [_hH]: _xacsinm }], [4, { [_hH]: _xacsius }], [4, { [_hH]: _Ex }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xamd }], [0, { [_hH]: _xatd }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xacssseca }], [() => CopySourceSSECustomerKey, { [_hH]: _xacssseck }], [0, { [_hH]: _xacssseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasebo }]], 3
1172
+ ];
1173
+ export var CopyObjectResult$ = [3, n0, _COR,
1174
+ 0,
1175
+ [_ETa, _LM, _CT, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh],
1176
+ [0, 4, 0, 0, 0, 0, 0, 0]
1177
+ ];
1178
+ export var CopyPartResult$ = [3, n0, _CPR,
1179
+ 0,
1180
+ [_ETa, _LM, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh],
1181
+ [0, 4, 0, 0, 0, 0, 0]
1182
+ ];
1183
+ export var CORSConfiguration$ = [3, n0, _CORSC,
1184
+ 0,
1185
+ [_CORSR],
1186
+ [[() => CORSRules, { [_xF]: 1, [_xN]: _CORSRu }]], 1
1187
+ ];
1188
+ export var CORSRule$ = [3, n0, _CORSRu,
1189
+ 0,
1190
+ [_AM, _AO, _ID, _AH, _EH, _MAS],
1191
+ [[64 | 0, { [_xF]: 1, [_xN]: _AMl }], [64 | 0, { [_xF]: 1, [_xN]: _AOl }], 0, [64 | 0, { [_xF]: 1, [_xN]: _AHl }], [64 | 0, { [_xF]: 1, [_xN]: _EHx }], 1], 2
1192
+ ];
1193
+ export var CreateBucketConfiguration$ = [3, n0, _CBC,
1194
+ 0,
1195
+ [_LC, _L, _B, _T],
1196
+ [0, () => LocationInfo$, () => BucketInfo$, [() => TagSet, 0]]
1197
+ ];
1198
+ export var CreateBucketMetadataConfigurationRequest$ = [3, n0, _CBMCR,
1199
+ 0,
1200
+ [_B, _MC, _CMD, _CA, _EBO],
1201
+ [[0, 1], [() => MetadataConfiguration$, { [_hP]: 1, [_xN]: _MC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
1202
+ ];
1203
+ export var CreateBucketMetadataTableConfigurationRequest$ = [3, n0, _CBMTCR,
1204
+ 0,
1205
+ [_B, _MTC, _CMD, _CA, _EBO],
1206
+ [[0, 1], [() => MetadataTableConfiguration$, { [_hP]: 1, [_xN]: _MTC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
1207
+ ];
1208
+ export var CreateBucketOutput$ = [3, n0, _CBO,
1209
+ 0,
1210
+ [_L, _BA],
1211
+ [[0, { [_hH]: _L }], [0, { [_hH]: _xaba }]]
1212
+ ];
1213
+ export var CreateBucketRequest$ = [3, n0, _CBR,
1214
+ 0,
1215
+ [_B, _ACL_, _CBC, _GFC, _GR, _GRACP, _GW, _GWACP, _OLEFB, _OO],
1216
+ [[0, 1], [0, { [_hH]: _xaa }], [() => CreateBucketConfiguration$, { [_hP]: 1, [_xN]: _CBC }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [2, { [_hH]: _xabole }], [0, { [_hH]: _xaoo }]], 1
1217
+ ];
1218
+ export var CreateMultipartUploadOutput$ = [3, n0, _CMUOr,
1219
+ { [_xN]: _IMUR },
1220
+ [_ADb, _ARI, _B, _K, _UI, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RC, _CA, _CT],
1221
+ [[4, { [_hH]: _xaad }], [0, { [_hH]: _xaari }], [0, { [_xN]: _B }], 0, 0, [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xaca }], [0, { [_hH]: _xact }]]
1222
+ ];
1223
+ export var CreateMultipartUploadRequest$ = [3, n0, _CMURr,
1224
+ 0,
1225
+ [_B, _K, _ACL_, _CC, _CDo, _CEo, _CL, _CTo, _Ex, _GFC, _GR, _GRACP, _GWACP, _M, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO, _CA, _CT],
1226
+ [[0, 1], [0, 1], [0, { [_hH]: _xaa }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [4, { [_hH]: _Ex }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xaca }], [0, { [_hH]: _xact }]], 2
1227
+ ];
1228
+ export var CreateSessionOutput$ = [3, n0, _CSO,
1229
+ { [_xN]: _CSR },
1230
+ [_Cr, _SSE, _SSEKMSKI, _SSEKMSEC, _BKE],
1231
+ [[() => SessionCredentials$, { [_xN]: _Cr }], [0, { [_hH]: _xasse }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }]], 1
1232
+ ];
1233
+ export var CreateSessionRequest$ = [3, n0, _CSRr,
1234
+ 0,
1235
+ [_B, _SM, _SSE, _SSEKMSKI, _SSEKMSEC, _BKE],
1236
+ [[0, 1], [0, { [_hH]: _xacsm }], [0, { [_hH]: _xasse }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }]], 1
1237
+ ];
1238
+ export var CSVInput$ = [3, n0, _CSVIn,
1239
+ 0,
1240
+ [_FHI, _Com, _QEC, _RD, _FD, _QC, _AQRD],
1241
+ [0, 0, 0, 0, 0, 0, 2]
1242
+ ];
1243
+ export var CSVOutput$ = [3, n0, _CSVO,
1244
+ 0,
1245
+ [_QF, _QEC, _RD, _FD, _QC],
1246
+ [0, 0, 0, 0, 0]
1247
+ ];
1248
+ export var DefaultRetention$ = [3, n0, _DRe,
1249
+ 0,
1250
+ [_Mo, _D, _Y],
1251
+ [0, 1, 1]
1252
+ ];
1253
+ export var Delete$ = [3, n0, _De,
1254
+ 0,
1255
+ [_Ob, _Q],
1256
+ [[() => ObjectIdentifierList, { [_xF]: 1, [_xN]: _Obj }], 2], 1
1257
+ ];
1258
+ export var DeleteBucketAnalyticsConfigurationRequest$ = [3, n0, _DBACR,
1259
+ 0,
1260
+ [_B, _I, _EBO],
1261
+ [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
1262
+ ];
1263
+ export var DeleteBucketCorsRequest$ = [3, n0, _DBCR,
1264
+ 0,
1265
+ [_B, _EBO],
1266
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1267
+ ];
1268
+ export var DeleteBucketEncryptionRequest$ = [3, n0, _DBER,
1269
+ 0,
1270
+ [_B, _EBO],
1271
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1272
+ ];
1273
+ export var DeleteBucketIntelligentTieringConfigurationRequest$ = [3, n0, _DBITCR,
1274
+ 0,
1275
+ [_B, _I, _EBO],
1276
+ [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
1277
+ ];
1278
+ export var DeleteBucketInventoryConfigurationRequest$ = [3, n0, _DBICR,
1279
+ 0,
1280
+ [_B, _I, _EBO],
1281
+ [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
1282
+ ];
1283
+ export var DeleteBucketLifecycleRequest$ = [3, n0, _DBLR,
1284
+ 0,
1285
+ [_B, _EBO],
1286
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1287
+ ];
1288
+ export var DeleteBucketMetadataConfigurationRequest$ = [3, n0, _DBMCR,
1289
+ 0,
1290
+ [_B, _EBO],
1291
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1292
+ ];
1293
+ export var DeleteBucketMetadataTableConfigurationRequest$ = [3, n0, _DBMTCR,
1294
+ 0,
1295
+ [_B, _EBO],
1296
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1297
+ ];
1298
+ export var DeleteBucketMetricsConfigurationRequest$ = [3, n0, _DBMCRe,
1299
+ 0,
1300
+ [_B, _I, _EBO],
1301
+ [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
1302
+ ];
1303
+ export var DeleteBucketOwnershipControlsRequest$ = [3, n0, _DBOCR,
1304
+ 0,
1305
+ [_B, _EBO],
1306
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1307
+ ];
1308
+ export var DeleteBucketPolicyRequest$ = [3, n0, _DBPR,
1309
+ 0,
1310
+ [_B, _EBO],
1311
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1312
+ ];
1313
+ export var DeleteBucketReplicationRequest$ = [3, n0, _DBRR,
1314
+ 0,
1315
+ [_B, _EBO],
1316
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1317
+ ];
1318
+ export var DeleteBucketRequest$ = [3, n0, _DBR,
1319
+ 0,
1320
+ [_B, _EBO],
1321
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1322
+ ];
1323
+ export var DeleteBucketTaggingRequest$ = [3, n0, _DBTR,
1324
+ 0,
1325
+ [_B, _EBO],
1326
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1327
+ ];
1328
+ export var DeleteBucketWebsiteRequest$ = [3, n0, _DBWR,
1329
+ 0,
1330
+ [_B, _EBO],
1331
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1332
+ ];
1333
+ export var DeletedObject$ = [3, n0, _DO,
1334
+ 0,
1335
+ [_K, _VI, _DM, _DMVI],
1336
+ [0, 0, 2, 0]
1337
+ ];
1338
+ export var DeleteMarkerEntry$ = [3, n0, _DME,
1339
+ 0,
1340
+ [_O, _K, _VI, _IL, _LM],
1341
+ [() => Owner$, 0, 0, 2, 4]
1342
+ ];
1343
+ export var DeleteMarkerReplication$ = [3, n0, _DMR,
1344
+ 0,
1345
+ [_S],
1346
+ [0]
1347
+ ];
1348
+ export var DeleteObjectOutput$ = [3, n0, _DOO,
1349
+ 0,
1350
+ [_DM, _VI, _RC],
1351
+ [[2, { [_hH]: _xadm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xarc }]]
1352
+ ];
1353
+ export var DeleteObjectRequest$ = [3, n0, _DOR,
1354
+ 0,
1355
+ [_B, _K, _MFA, _VI, _RP, _BGR, _EBO, _IM, _IMLMT, _IMS],
1356
+ [[0, 1], [0, 1], [0, { [_hH]: _xam_ }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _IM_ }], [6, { [_hH]: _xaimlmt }], [1, { [_hH]: _xaims }]], 2
1357
+ ];
1358
+ export var DeleteObjectsOutput$ = [3, n0, _DOOe,
1359
+ { [_xN]: _DRel },
1360
+ [_Del, _RC, _Er],
1361
+ [[() => DeletedObjects, { [_xF]: 1 }], [0, { [_hH]: _xarc }], [() => Errors, { [_xF]: 1, [_xN]: _Err }]]
1362
+ ];
1363
+ export var DeleteObjectsRequest$ = [3, n0, _DORe,
1364
+ 0,
1365
+ [_B, _De, _MFA, _RP, _BGR, _EBO, _CA],
1366
+ [[0, 1], [() => Delete$, { [_hP]: 1, [_xN]: _De }], [0, { [_hH]: _xam_ }], [0, { [_hH]: _xarp }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2
1367
+ ];
1368
+ export var DeleteObjectTaggingOutput$ = [3, n0, _DOTO,
1369
+ 0,
1370
+ [_VI],
1371
+ [[0, { [_hH]: _xavi }]]
1372
+ ];
1373
+ export var DeleteObjectTaggingRequest$ = [3, n0, _DOTR,
1374
+ 0,
1375
+ [_B, _K, _VI, _EBO],
1376
+ [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }]], 2
1377
+ ];
1378
+ export var DeletePublicAccessBlockRequest$ = [3, n0, _DPABR,
1379
+ 0,
1380
+ [_B, _EBO],
1381
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1382
+ ];
1383
+ export var Destination$ = [3, n0, _Des,
1384
+ 0,
1385
+ [_B, _A, _SC, _ACT, _EC, _RT, _Me],
1386
+ [0, 0, 0, () => AccessControlTranslation$, () => EncryptionConfiguration$, () => ReplicationTime$, () => Metrics$], 1
1387
+ ];
1388
+ export var DestinationResult$ = [3, n0, _DRes,
1389
+ 0,
1390
+ [_TBT, _TBA, _TN],
1391
+ [0, 0, 0]
1392
+ ];
1393
+ export var Encryption$ = [3, n0, _En,
1394
+ 0,
1395
+ [_ET, _KMSKI, _KMSC],
1396
+ [0, [() => SSEKMSKeyId, 0], 0], 1
1397
+ ];
1398
+ export var EncryptionConfiguration$ = [3, n0, _EC,
1399
+ 0,
1400
+ [_RKKID],
1401
+ [0]
1402
+ ];
1403
+ export var EncryptionTypeMismatch$ = [-3, n0, _ETM,
1404
+ { [_e]: _c, [_hE]: 400 },
1405
+ [],
1406
+ []
1407
+ ];
1408
+ TypeRegistry.for(n0).registerError(EncryptionTypeMismatch$, EncryptionTypeMismatch);
1409
+ export var EndEvent$ = [3, n0, _EE,
1410
+ 0,
1411
+ [],
1412
+ []
1413
+ ];
1414
+ export var _Error$ = [3, n0, _Err,
1415
+ 0,
1416
+ [_K, _VI, _Cod, _Mes],
1417
+ [0, 0, 0, 0]
1418
+ ];
1419
+ export var ErrorDetails$ = [3, n0, _ED,
1420
+ 0,
1421
+ [_ECr, _EM],
1422
+ [0, 0]
1423
+ ];
1424
+ export var ErrorDocument$ = [3, n0, _EDr,
1425
+ 0,
1426
+ [_K],
1427
+ [0], 1
1428
+ ];
1429
+ export var EventBridgeConfiguration$ = [3, n0, _EBC,
1430
+ 0,
1431
+ [],
1432
+ []
1433
+ ];
1434
+ export var ExistingObjectReplication$ = [3, n0, _EOR,
1435
+ 0,
1436
+ [_S],
1437
+ [0], 1
1438
+ ];
1439
+ export var FilterRule$ = [3, n0, _FR,
1440
+ 0,
1441
+ [_N, _V],
1442
+ [0, 0]
1443
+ ];
1444
+ export var GetBucketAbacOutput$ = [3, n0, _GBAO,
1445
+ 0,
1446
+ [_AS],
1447
+ [[() => AbacStatus$, 16]]
1448
+ ];
1449
+ export var GetBucketAbacRequest$ = [3, n0, _GBAR,
1450
+ 0,
1451
+ [_B, _EBO],
1452
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1453
+ ];
1454
+ export var GetBucketAccelerateConfigurationOutput$ = [3, n0, _GBACO,
1455
+ { [_xN]: _AC },
1456
+ [_S, _RC],
1457
+ [0, [0, { [_hH]: _xarc }]]
1458
+ ];
1459
+ export var GetBucketAccelerateConfigurationRequest$ = [3, n0, _GBACR,
1460
+ 0,
1461
+ [_B, _EBO, _RP],
1462
+ [[0, 1], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 1
1463
+ ];
1464
+ export var GetBucketAclOutput$ = [3, n0, _GBAOe,
1465
+ { [_xN]: _ACP },
1466
+ [_O, _G],
1467
+ [() => Owner$, [() => Grants, { [_xN]: _ACL }]]
1468
+ ];
1469
+ export var GetBucketAclRequest$ = [3, n0, _GBARe,
1470
+ 0,
1471
+ [_B, _EBO],
1472
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1473
+ ];
1474
+ export var GetBucketAnalyticsConfigurationOutput$ = [3, n0, _GBACOe,
1475
+ 0,
1476
+ [_ACn],
1477
+ [[() => AnalyticsConfiguration$, 16]]
1478
+ ];
1479
+ export var GetBucketAnalyticsConfigurationRequest$ = [3, n0, _GBACRe,
1480
+ 0,
1481
+ [_B, _I, _EBO],
1482
+ [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
1483
+ ];
1484
+ export var GetBucketCorsOutput$ = [3, n0, _GBCO,
1485
+ { [_xN]: _CORSC },
1486
+ [_CORSR],
1487
+ [[() => CORSRules, { [_xF]: 1, [_xN]: _CORSRu }]]
1488
+ ];
1489
+ export var GetBucketCorsRequest$ = [3, n0, _GBCR,
1490
+ 0,
1491
+ [_B, _EBO],
1492
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1493
+ ];
1494
+ export var GetBucketEncryptionOutput$ = [3, n0, _GBEO,
1495
+ 0,
1496
+ [_SSEC],
1497
+ [[() => ServerSideEncryptionConfiguration$, 16]]
1498
+ ];
1499
+ export var GetBucketEncryptionRequest$ = [3, n0, _GBER,
1500
+ 0,
1501
+ [_B, _EBO],
1502
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1503
+ ];
1504
+ export var GetBucketIntelligentTieringConfigurationOutput$ = [3, n0, _GBITCO,
1505
+ 0,
1506
+ [_ITC],
1507
+ [[() => IntelligentTieringConfiguration$, 16]]
1508
+ ];
1509
+ export var GetBucketIntelligentTieringConfigurationRequest$ = [3, n0, _GBITCR,
1510
+ 0,
1511
+ [_B, _I, _EBO],
1512
+ [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
1513
+ ];
1514
+ export var GetBucketInventoryConfigurationOutput$ = [3, n0, _GBICO,
1515
+ 0,
1516
+ [_IC],
1517
+ [[() => InventoryConfiguration$, 16]]
1518
+ ];
1519
+ export var GetBucketInventoryConfigurationRequest$ = [3, n0, _GBICR,
1520
+ 0,
1521
+ [_B, _I, _EBO],
1522
+ [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
1523
+ ];
1524
+ export var GetBucketLifecycleConfigurationOutput$ = [3, n0, _GBLCO,
1525
+ { [_xN]: _LCi },
1526
+ [_R, _TDMOS],
1527
+ [[() => LifecycleRules, { [_xF]: 1, [_xN]: _Ru }], [0, { [_hH]: _xatdmos }]]
1528
+ ];
1529
+ export var GetBucketLifecycleConfigurationRequest$ = [3, n0, _GBLCR,
1530
+ 0,
1531
+ [_B, _EBO],
1532
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1533
+ ];
1534
+ export var GetBucketLocationOutput$ = [3, n0, _GBLO,
1535
+ { [_xN]: _LC },
1536
+ [_LC],
1537
+ [0]
1538
+ ];
1539
+ export var GetBucketLocationRequest$ = [3, n0, _GBLR,
1540
+ 0,
1541
+ [_B, _EBO],
1542
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1543
+ ];
1544
+ export var GetBucketLoggingOutput$ = [3, n0, _GBLOe,
1545
+ { [_xN]: _BLS },
1546
+ [_LE],
1547
+ [[() => LoggingEnabled$, 0]]
1548
+ ];
1549
+ export var GetBucketLoggingRequest$ = [3, n0, _GBLRe,
1550
+ 0,
1551
+ [_B, _EBO],
1552
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1553
+ ];
1554
+ export var GetBucketMetadataConfigurationOutput$ = [3, n0, _GBMCO,
1555
+ 0,
1556
+ [_GBMCR],
1557
+ [[() => GetBucketMetadataConfigurationResult$, 16]]
1558
+ ];
1559
+ export var GetBucketMetadataConfigurationRequest$ = [3, n0, _GBMCRe,
1560
+ 0,
1561
+ [_B, _EBO],
1562
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1563
+ ];
1564
+ export var GetBucketMetadataConfigurationResult$ = [3, n0, _GBMCR,
1565
+ 0,
1566
+ [_MCR],
1567
+ [() => MetadataConfigurationResult$], 1
1568
+ ];
1569
+ export var GetBucketMetadataTableConfigurationOutput$ = [3, n0, _GBMTCO,
1570
+ 0,
1571
+ [_GBMTCR],
1572
+ [[() => GetBucketMetadataTableConfigurationResult$, 16]]
1573
+ ];
1574
+ export var GetBucketMetadataTableConfigurationRequest$ = [3, n0, _GBMTCRe,
1575
+ 0,
1576
+ [_B, _EBO],
1577
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1578
+ ];
1579
+ export var GetBucketMetadataTableConfigurationResult$ = [3, n0, _GBMTCR,
1580
+ 0,
1581
+ [_MTCR, _S, _Err],
1582
+ [() => MetadataTableConfigurationResult$, 0, () => ErrorDetails$], 2
1583
+ ];
1584
+ export var GetBucketMetricsConfigurationOutput$ = [3, n0, _GBMCOe,
1585
+ 0,
1586
+ [_MCe],
1587
+ [[() => MetricsConfiguration$, 16]]
1588
+ ];
1589
+ export var GetBucketMetricsConfigurationRequest$ = [3, n0, _GBMCRet,
1590
+ 0,
1591
+ [_B, _I, _EBO],
1592
+ [[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
1593
+ ];
1594
+ export var GetBucketNotificationConfigurationRequest$ = [3, n0, _GBNCR,
1595
+ 0,
1596
+ [_B, _EBO],
1597
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1598
+ ];
1599
+ export var GetBucketOwnershipControlsOutput$ = [3, n0, _GBOCO,
1600
+ 0,
1601
+ [_OC],
1602
+ [[() => OwnershipControls$, 16]]
1603
+ ];
1604
+ export var GetBucketOwnershipControlsRequest$ = [3, n0, _GBOCR,
1605
+ 0,
1606
+ [_B, _EBO],
1607
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1608
+ ];
1609
+ export var GetBucketPolicyOutput$ = [3, n0, _GBPO,
1610
+ 0,
1611
+ [_Po],
1612
+ [[0, 16]]
1613
+ ];
1614
+ export var GetBucketPolicyRequest$ = [3, n0, _GBPR,
1615
+ 0,
1616
+ [_B, _EBO],
1617
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1618
+ ];
1619
+ export var GetBucketPolicyStatusOutput$ = [3, n0, _GBPSO,
1620
+ 0,
1621
+ [_PS],
1622
+ [[() => PolicyStatus$, 16]]
1623
+ ];
1624
+ export var GetBucketPolicyStatusRequest$ = [3, n0, _GBPSR,
1625
+ 0,
1626
+ [_B, _EBO],
1627
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1628
+ ];
1629
+ export var GetBucketReplicationOutput$ = [3, n0, _GBRO,
1630
+ 0,
1631
+ [_RCe],
1632
+ [[() => ReplicationConfiguration$, 16]]
1633
+ ];
1634
+ export var GetBucketReplicationRequest$ = [3, n0, _GBRR,
1635
+ 0,
1636
+ [_B, _EBO],
1637
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1638
+ ];
1639
+ export var GetBucketRequestPaymentOutput$ = [3, n0, _GBRPO,
1640
+ { [_xN]: _RPC },
1641
+ [_Pay],
1642
+ [0]
1643
+ ];
1644
+ export var GetBucketRequestPaymentRequest$ = [3, n0, _GBRPR,
1645
+ 0,
1646
+ [_B, _EBO],
1647
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1648
+ ];
1649
+ export var GetBucketTaggingOutput$ = [3, n0, _GBTO,
1650
+ { [_xN]: _Tag },
1651
+ [_TS],
1652
+ [[() => TagSet, 0]], 1
1653
+ ];
1654
+ export var GetBucketTaggingRequest$ = [3, n0, _GBTR,
1655
+ 0,
1656
+ [_B, _EBO],
1657
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1658
+ ];
1659
+ export var GetBucketVersioningOutput$ = [3, n0, _GBVO,
1660
+ { [_xN]: _VC },
1661
+ [_S, _MFAD],
1662
+ [0, [0, { [_xN]: _MDf }]]
1663
+ ];
1664
+ export var GetBucketVersioningRequest$ = [3, n0, _GBVR,
1665
+ 0,
1666
+ [_B, _EBO],
1667
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1668
+ ];
1669
+ export var GetBucketWebsiteOutput$ = [3, n0, _GBWO,
1670
+ { [_xN]: _WC },
1671
+ [_RART, _IDn, _EDr, _RR],
1672
+ [() => RedirectAllRequestsTo$, () => IndexDocument$, () => ErrorDocument$, [() => RoutingRules, 0]]
1673
+ ];
1674
+ export var GetBucketWebsiteRequest$ = [3, n0, _GBWR,
1675
+ 0,
1676
+ [_B, _EBO],
1677
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1678
+ ];
1679
+ export var GetObjectAclOutput$ = [3, n0, _GOAO,
1680
+ { [_xN]: _ACP },
1681
+ [_O, _G, _RC],
1682
+ [() => Owner$, [() => Grants, { [_xN]: _ACL }], [0, { [_hH]: _xarc }]]
1683
+ ];
1684
+ export var GetObjectAclRequest$ = [3, n0, _GOAR,
1685
+ 0,
1686
+ [_B, _K, _VI, _RP, _EBO],
1687
+ [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
1688
+ ];
1689
+ export var GetObjectAttributesOutput$ = [3, n0, _GOAOe,
1690
+ { [_xN]: _GOARe },
1691
+ [_DM, _LM, _VI, _RC, _ETa, _C, _OP, _SC, _OS],
1692
+ [[2, { [_hH]: _xadm }], [4, { [_hH]: _LM_ }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xarc }], 0, () => Checksum$, [() => GetObjectAttributesParts$, 0], 0, 1]
1693
+ ];
1694
+ export var GetObjectAttributesParts$ = [3, n0, _GOAP,
1695
+ 0,
1696
+ [_TPC, _PNM, _NPNM, _MP, _IT, _Pa],
1697
+ [[1, { [_xN]: _PC }], 0, 0, 1, 2, [() => PartsList, { [_xF]: 1, [_xN]: _Par }]]
1698
+ ];
1699
+ export var GetObjectAttributesRequest$ = [3, n0, _GOARet,
1700
+ 0,
1701
+ [_B, _K, _OA, _VI, _MP, _PNM, _SSECA, _SSECK, _SSECKMD, _RP, _EBO],
1702
+ [[0, 1], [0, 1], [64 | 0, { [_hH]: _xaoa }], [0, { [_hQ]: _vI }], [1, { [_hH]: _xamp }], [0, { [_hH]: _xapnm }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 3
1703
+ ];
1704
+ export var GetObjectLegalHoldOutput$ = [3, n0, _GOLHO,
1705
+ 0,
1706
+ [_LH],
1707
+ [[() => ObjectLockLegalHold$, { [_hP]: 1, [_xN]: _LH }]]
1708
+ ];
1709
+ export var GetObjectLegalHoldRequest$ = [3, n0, _GOLHR,
1710
+ 0,
1711
+ [_B, _K, _VI, _RP, _EBO],
1712
+ [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
1713
+ ];
1714
+ export var GetObjectLockConfigurationOutput$ = [3, n0, _GOLCO,
1715
+ 0,
1716
+ [_OLC],
1717
+ [[() => ObjectLockConfiguration$, 16]]
1718
+ ];
1719
+ export var GetObjectLockConfigurationRequest$ = [3, n0, _GOLCR,
1720
+ 0,
1721
+ [_B, _EBO],
1722
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1723
+ ];
1724
+ export var GetObjectOutput$ = [3, n0, _GOO,
1725
+ 0,
1726
+ [_Bo, _DM, _AR, _E, _Re, _LM, _CLo, _ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _MM, _VI, _CC, _CDo, _CEo, _CL, _CR, _CTo, _Ex, _ES, _WRL, _SSE, _M, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _SC, _RC, _RS, _PC, _TC, _OLM, _OLRUD, _OLLHS],
1727
+ [[() => StreamingBlob, 16], [2, { [_hH]: _xadm }], [0, { [_hH]: _ar }], [0, { [_hH]: _xae }], [0, { [_hH]: _xar }], [4, { [_hH]: _LM_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _ETa }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xact }], [1, { [_hH]: _xamm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CR_ }], [0, { [_hH]: _CT_ }], [4, { [_hH]: _Ex }], [0, { [_hH]: _ES }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasse }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xars }], [1, { [_hH]: _xampc }], [1, { [_hH]: _xatc }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }]]
1728
+ ];
1729
+ export var GetObjectRequest$ = [3, n0, _GOR,
1730
+ 0,
1731
+ [_B, _K, _IM, _IMSf, _INM, _IUS, _Ra, _RCC, _RCD, _RCE, _RCL, _RCT, _RE, _VI, _SSECA, _SSECK, _SSECKMD, _RP, _PN, _EBO, _CMh],
1732
+ [[0, 1], [0, 1], [0, { [_hH]: _IM_ }], [4, { [_hH]: _IMS_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _Ra }], [0, { [_hQ]: _rcc }], [0, { [_hQ]: _rcd }], [0, { [_hQ]: _rce }], [0, { [_hQ]: _rcl }], [0, { [_hQ]: _rct }], [6, { [_hQ]: _re }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [1, { [_hQ]: _pN }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xacm }]], 2
1733
+ ];
1734
+ export var GetObjectRetentionOutput$ = [3, n0, _GORO,
1735
+ 0,
1736
+ [_Ret],
1737
+ [[() => ObjectLockRetention$, { [_hP]: 1, [_xN]: _Ret }]]
1738
+ ];
1739
+ export var GetObjectRetentionRequest$ = [3, n0, _GORR,
1740
+ 0,
1741
+ [_B, _K, _VI, _RP, _EBO],
1742
+ [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
1743
+ ];
1744
+ export var GetObjectTaggingOutput$ = [3, n0, _GOTO,
1745
+ { [_xN]: _Tag },
1746
+ [_TS, _VI],
1747
+ [[() => TagSet, 0], [0, { [_hH]: _xavi }]], 1
1748
+ ];
1749
+ export var GetObjectTaggingRequest$ = [3, n0, _GOTR,
1750
+ 0,
1751
+ [_B, _K, _VI, _EBO, _RP],
1752
+ [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 2
1753
+ ];
1754
+ export var GetObjectTorrentOutput$ = [3, n0, _GOTOe,
1755
+ 0,
1756
+ [_Bo, _RC],
1757
+ [[() => StreamingBlob, 16], [0, { [_hH]: _xarc }]]
1758
+ ];
1759
+ export var GetObjectTorrentRequest$ = [3, n0, _GOTRe,
1760
+ 0,
1761
+ [_B, _K, _RP, _EBO],
1762
+ [[0, 1], [0, 1], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
1763
+ ];
1764
+ export var GetPublicAccessBlockOutput$ = [3, n0, _GPABO,
1765
+ 0,
1766
+ [_PABC],
1767
+ [[() => PublicAccessBlockConfiguration$, 16]]
1768
+ ];
1769
+ export var GetPublicAccessBlockRequest$ = [3, n0, _GPABR,
1770
+ 0,
1771
+ [_B, _EBO],
1772
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1773
+ ];
1774
+ export var GlacierJobParameters$ = [3, n0, _GJP,
1775
+ 0,
1776
+ [_Ti],
1777
+ [0], 1
1778
+ ];
1779
+ export var Grant$ = [3, n0, _Gr,
1780
+ 0,
1781
+ [_Gra, _Pe],
1782
+ [[() => Grantee$, { [_xNm]: [_x, _hi] }], 0]
1783
+ ];
1784
+ export var Grantee$ = [3, n0, _Gra,
1785
+ 0,
1786
+ [_Ty, _DN, _EA, _ID, _URI],
1787
+ [[0, { [_xA]: 1, [_xN]: _xs }], 0, 0, 0, 0], 1
1788
+ ];
1789
+ export var HeadBucketOutput$ = [3, n0, _HBO,
1790
+ 0,
1791
+ [_BA, _BLT, _BLN, _BR, _APA],
1792
+ [[0, { [_hH]: _xaba }], [0, { [_hH]: _xablt }], [0, { [_hH]: _xabln }], [0, { [_hH]: _xabr }], [2, { [_hH]: _xaapa }]]
1793
+ ];
1794
+ export var HeadBucketRequest$ = [3, n0, _HBR,
1795
+ 0,
1796
+ [_B, _EBO],
1797
+ [[0, 1], [0, { [_hH]: _xaebo }]], 1
1798
+ ];
1799
+ export var HeadObjectOutput$ = [3, n0, _HOO,
1800
+ 0,
1801
+ [_DM, _AR, _E, _Re, _ASr, _LM, _CLo, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _ETa, _MM, _VI, _CC, _CDo, _CEo, _CL, _CTo, _CR, _Ex, _ES, _WRL, _SSE, _M, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _SC, _RC, _RS, _PC, _TC, _OLM, _OLRUD, _OLLHS],
1802
+ [[2, { [_hH]: _xadm }], [0, { [_hH]: _ar }], [0, { [_hH]: _xae }], [0, { [_hH]: _xar }], [0, { [_hH]: _xaas }], [4, { [_hH]: _LM_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xact }], [0, { [_hH]: _ETa }], [1, { [_hH]: _xamm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _CR_ }], [4, { [_hH]: _Ex }], [0, { [_hH]: _ES }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasse }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xars }], [1, { [_hH]: _xampc }], [1, { [_hH]: _xatc }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }]]
1803
+ ];
1804
+ export var HeadObjectRequest$ = [3, n0, _HOR,
1805
+ 0,
1806
+ [_B, _K, _IM, _IMSf, _INM, _IUS, _Ra, _RCC, _RCD, _RCE, _RCL, _RCT, _RE, _VI, _SSECA, _SSECK, _SSECKMD, _RP, _PN, _EBO, _CMh],
1807
+ [[0, 1], [0, 1], [0, { [_hH]: _IM_ }], [4, { [_hH]: _IMS_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _Ra }], [0, { [_hQ]: _rcc }], [0, { [_hQ]: _rcd }], [0, { [_hQ]: _rce }], [0, { [_hQ]: _rcl }], [0, { [_hQ]: _rct }], [6, { [_hQ]: _re }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [1, { [_hQ]: _pN }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xacm }]], 2
1808
+ ];
1809
+ export var IdempotencyParameterMismatch$ = [-3, n0, _IPM,
1810
+ { [_e]: _c, [_hE]: 400 },
1811
+ [],
1812
+ []
1813
+ ];
1814
+ TypeRegistry.for(n0).registerError(IdempotencyParameterMismatch$, IdempotencyParameterMismatch);
1815
+ export var IndexDocument$ = [3, n0, _IDn,
1816
+ 0,
1817
+ [_Su],
1818
+ [0], 1
1819
+ ];
1820
+ export var Initiator$ = [3, n0, _In,
1821
+ 0,
1822
+ [_ID, _DN],
1823
+ [0, 0]
1824
+ ];
1825
+ export var InputSerialization$ = [3, n0, _IS,
1826
+ 0,
1827
+ [_CSV, _CTom, _JSON, _Parq],
1828
+ [() => CSVInput$, 0, () => JSONInput$, () => ParquetInput$]
1829
+ ];
1830
+ export var IntelligentTieringAndOperator$ = [3, n0, _ITAO,
1831
+ 0,
1832
+ [_P, _T],
1833
+ [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]]
1834
+ ];
1835
+ export var IntelligentTieringConfiguration$ = [3, n0, _ITC,
1836
+ 0,
1837
+ [_I, _S, _Tie, _F],
1838
+ [0, 0, [() => TieringList, { [_xF]: 1, [_xN]: _Tier }], [() => IntelligentTieringFilter$, 0]], 3
1839
+ ];
1840
+ export var IntelligentTieringFilter$ = [3, n0, _ITF,
1841
+ 0,
1842
+ [_P, _Ta, _An],
1843
+ [0, () => Tag$, [() => IntelligentTieringAndOperator$, 0]]
1844
+ ];
1845
+ export var InvalidObjectState$ = [-3, n0, _IOS,
1846
+ { [_e]: _c, [_hE]: 403 },
1847
+ [_SC, _AT],
1848
+ [0, 0]
1849
+ ];
1850
+ TypeRegistry.for(n0).registerError(InvalidObjectState$, InvalidObjectState);
1851
+ export var InvalidRequest$ = [-3, n0, _IR,
1852
+ { [_e]: _c, [_hE]: 400 },
1853
+ [],
1854
+ []
1855
+ ];
1856
+ TypeRegistry.for(n0).registerError(InvalidRequest$, InvalidRequest);
1857
+ export var InvalidWriteOffset$ = [-3, n0, _IWO,
1858
+ { [_e]: _c, [_hE]: 400 },
1859
+ [],
1860
+ []
1861
+ ];
1862
+ TypeRegistry.for(n0).registerError(InvalidWriteOffset$, InvalidWriteOffset);
1863
+ export var InventoryConfiguration$ = [3, n0, _IC,
1864
+ 0,
1865
+ [_Des, _IE, _I, _IOV, _Sc, _F, _OF],
1866
+ [[() => InventoryDestination$, 0], 2, 0, 0, () => InventorySchedule$, () => InventoryFilter$, [() => InventoryOptionalFields, 0]], 5
1867
+ ];
1868
+ export var InventoryDestination$ = [3, n0, _IDnv,
1869
+ 0,
1870
+ [_SBD],
1871
+ [[() => InventoryS3BucketDestination$, 0]], 1
1872
+ ];
1873
+ export var InventoryEncryption$ = [3, n0, _IEn,
1874
+ 0,
1875
+ [_SSES, _SSEKMS],
1876
+ [[() => SSES3$, { [_xN]: _SS }], [() => SSEKMS$, { [_xN]: _SK }]]
1877
+ ];
1878
+ export var InventoryFilter$ = [3, n0, _IF,
1879
+ 0,
1880
+ [_P],
1881
+ [0], 1
1882
+ ];
1883
+ export var InventoryS3BucketDestination$ = [3, n0, _ISBD,
1884
+ 0,
1885
+ [_B, _Fo, _AI, _P, _En],
1886
+ [0, 0, 0, 0, [() => InventoryEncryption$, 0]], 2
1887
+ ];
1888
+ export var InventorySchedule$ = [3, n0, _ISn,
1889
+ 0,
1890
+ [_Fr],
1891
+ [0], 1
1892
+ ];
1893
+ export var InventoryTableConfiguration$ = [3, n0, _ITCn,
1894
+ 0,
1895
+ [_CSo, _EC],
1896
+ [0, () => MetadataTableEncryptionConfiguration$], 1
1897
+ ];
1898
+ export var InventoryTableConfigurationResult$ = [3, n0, _ITCR,
1899
+ 0,
1900
+ [_CSo, _TSa, _Err, _TNa, _TA],
1901
+ [0, 0, () => ErrorDetails$, 0, 0], 1
1902
+ ];
1903
+ export var InventoryTableConfigurationUpdates$ = [3, n0, _ITCU,
1904
+ 0,
1905
+ [_CSo, _EC],
1906
+ [0, () => MetadataTableEncryptionConfiguration$], 1
1907
+ ];
1908
+ export var JournalTableConfiguration$ = [3, n0, _JTC,
1909
+ 0,
1910
+ [_REe, _EC],
1911
+ [() => RecordExpiration$, () => MetadataTableEncryptionConfiguration$], 1
1912
+ ];
1913
+ export var JournalTableConfigurationResult$ = [3, n0, _JTCR,
1914
+ 0,
1915
+ [_TSa, _TNa, _REe, _Err, _TA],
1916
+ [0, 0, () => RecordExpiration$, () => ErrorDetails$, 0], 3
1917
+ ];
1918
+ export var JournalTableConfigurationUpdates$ = [3, n0, _JTCU,
1919
+ 0,
1920
+ [_REe],
1921
+ [() => RecordExpiration$], 1
1922
+ ];
1923
+ export var JSONInput$ = [3, n0, _JSONI,
1924
+ 0,
1925
+ [_Ty],
1926
+ [0]
1927
+ ];
1928
+ export var JSONOutput$ = [3, n0, _JSONO,
1929
+ 0,
1930
+ [_RD],
1931
+ [0]
1932
+ ];
1933
+ export var LambdaFunctionConfiguration$ = [3, n0, _LFC,
1934
+ 0,
1935
+ [_LFA, _Ev, _I, _F],
1936
+ [[0, { [_xN]: _CF }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2
1937
+ ];
1938
+ export var LifecycleExpiration$ = [3, n0, _LEi,
1939
+ 0,
1940
+ [_Da, _D, _EODM],
1941
+ [5, 1, 2]
1942
+ ];
1943
+ export var LifecycleRule$ = [3, n0, _LR,
1944
+ 0,
1945
+ [_S, _E, _ID, _P, _F, _Tr, _NVT, _NVE, _AIMU],
1946
+ [0, () => LifecycleExpiration$, 0, 0, [() => LifecycleRuleFilter$, 0], [() => TransitionList, { [_xF]: 1, [_xN]: _Tra }], [() => NoncurrentVersionTransitionList, { [_xF]: 1, [_xN]: _NVTo }], () => NoncurrentVersionExpiration$, () => AbortIncompleteMultipartUpload$], 1
1947
+ ];
1948
+ export var LifecycleRuleAndOperator$ = [3, n0, _LRAO,
1949
+ 0,
1950
+ [_P, _T, _OSGT, _OSLT],
1951
+ [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }], 1, 1]
1952
+ ];
1953
+ export var LifecycleRuleFilter$ = [3, n0, _LRF,
1954
+ 0,
1955
+ [_P, _Ta, _OSGT, _OSLT, _An],
1956
+ [0, () => Tag$, 1, 1, [() => LifecycleRuleAndOperator$, 0]]
1957
+ ];
1958
+ export var ListBucketAnalyticsConfigurationsOutput$ = [3, n0, _LBACO,
1959
+ { [_xN]: _LBACR },
1960
+ [_IT, _CTon, _NCT, _ACLn],
1961
+ [2, 0, 0, [() => AnalyticsConfigurationList, { [_xF]: 1, [_xN]: _ACn }]]
1962
+ ];
1963
+ export var ListBucketAnalyticsConfigurationsRequest$ = [3, n0, _LBACRi,
1964
+ 0,
1965
+ [_B, _CTon, _EBO],
1966
+ [[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1
1967
+ ];
1968
+ export var ListBucketIntelligentTieringConfigurationsOutput$ = [3, n0, _LBITCO,
1969
+ 0,
1970
+ [_IT, _CTon, _NCT, _ITCL],
1971
+ [2, 0, 0, [() => IntelligentTieringConfigurationList, { [_xF]: 1, [_xN]: _ITC }]]
1972
+ ];
1973
+ export var ListBucketIntelligentTieringConfigurationsRequest$ = [3, n0, _LBITCR,
1974
+ 0,
1975
+ [_B, _CTon, _EBO],
1976
+ [[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1
1977
+ ];
1978
+ export var ListBucketInventoryConfigurationsOutput$ = [3, n0, _LBICO,
1979
+ { [_xN]: _LICR },
1980
+ [_CTon, _ICL, _IT, _NCT],
1981
+ [0, [() => InventoryConfigurationList, { [_xF]: 1, [_xN]: _IC }], 2, 0]
1982
+ ];
1983
+ export var ListBucketInventoryConfigurationsRequest$ = [3, n0, _LBICR,
1984
+ 0,
1985
+ [_B, _CTon, _EBO],
1986
+ [[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1
1987
+ ];
1988
+ export var ListBucketMetricsConfigurationsOutput$ = [3, n0, _LBMCO,
1989
+ { [_xN]: _LMCR },
1990
+ [_IT, _CTon, _NCT, _MCL],
1991
+ [2, 0, 0, [() => MetricsConfigurationList, { [_xF]: 1, [_xN]: _MCe }]]
1992
+ ];
1993
+ export var ListBucketMetricsConfigurationsRequest$ = [3, n0, _LBMCR,
1994
+ 0,
1995
+ [_B, _CTon, _EBO],
1996
+ [[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1
1997
+ ];
1998
+ export var ListBucketsOutput$ = [3, n0, _LBO,
1999
+ { [_xN]: _LAMBR },
2000
+ [_Bu, _O, _CTon, _P],
2001
+ [[() => Buckets, 0], () => Owner$, 0, 0]
2002
+ ];
2003
+ export var ListBucketsRequest$ = [3, n0, _LBR,
2004
+ 0,
2005
+ [_MB, _CTon, _P, _BR],
2006
+ [[1, { [_hQ]: _mb }], [0, { [_hQ]: _ct }], [0, { [_hQ]: _p }], [0, { [_hQ]: _br }]]
2007
+ ];
2008
+ export var ListDirectoryBucketsOutput$ = [3, n0, _LDBO,
2009
+ { [_xN]: _LAMDBR },
2010
+ [_Bu, _CTon],
2011
+ [[() => Buckets, 0], 0]
2012
+ ];
2013
+ export var ListDirectoryBucketsRequest$ = [3, n0, _LDBR,
2014
+ 0,
2015
+ [_CTon, _MDB],
2016
+ [[0, { [_hQ]: _ct }], [1, { [_hQ]: _mdb }]]
2017
+ ];
2018
+ export var ListMultipartUploadsOutput$ = [3, n0, _LMUO,
2019
+ { [_xN]: _LMUR },
2020
+ [_B, _KM, _UIM, _NKM, _P, _Deli, _NUIM, _MUa, _IT, _U, _CPom, _ETn, _RC],
2021
+ [0, 0, 0, 0, 0, 0, 0, 1, 2, [() => MultipartUploadList, { [_xF]: 1, [_xN]: _Up }], [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]]
2022
+ ];
2023
+ export var ListMultipartUploadsRequest$ = [3, n0, _LMURi,
2024
+ 0,
2025
+ [_B, _Deli, _ETn, _KM, _MUa, _P, _UIM, _EBO, _RP],
2026
+ [[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _km }], [1, { [_hQ]: _mu }], [0, { [_hQ]: _p }], [0, { [_hQ]: _uim }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 1
2027
+ ];
2028
+ export var ListObjectsOutput$ = [3, n0, _LOO,
2029
+ { [_xN]: _LBRi },
2030
+ [_IT, _Ma, _NM, _Con, _N, _P, _Deli, _MK, _CPom, _ETn, _RC],
2031
+ [2, 0, 0, [() => ObjectList, { [_xF]: 1 }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]]
2032
+ ];
2033
+ export var ListObjectsRequest$ = [3, n0, _LOR,
2034
+ 0,
2035
+ [_B, _Deli, _ETn, _Ma, _MK, _P, _RP, _EBO, _OOA],
2036
+ [[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _m }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [64 | 0, { [_hH]: _xaooa }]], 1
2037
+ ];
2038
+ export var ListObjectsV2Output$ = [3, n0, _LOVO,
2039
+ { [_xN]: _LBRi },
2040
+ [_IT, _Con, _N, _P, _Deli, _MK, _CPom, _ETn, _KC, _CTon, _NCT, _SA, _RC],
2041
+ [2, [() => ObjectList, { [_xF]: 1 }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, 1, 0, 0, 0, [0, { [_hH]: _xarc }]]
2042
+ ];
2043
+ export var ListObjectsV2Request$ = [3, n0, _LOVR,
2044
+ 0,
2045
+ [_B, _Deli, _ETn, _MK, _P, _CTon, _FO, _SA, _RP, _EBO, _OOA],
2046
+ [[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hQ]: _ct }], [2, { [_hQ]: _fo }], [0, { [_hQ]: _sa }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [64 | 0, { [_hH]: _xaooa }]], 1
2047
+ ];
2048
+ export var ListObjectVersionsOutput$ = [3, n0, _LOVOi,
2049
+ { [_xN]: _LVR },
2050
+ [_IT, _KM, _VIM, _NKM, _NVIM, _Ve, _DMe, _N, _P, _Deli, _MK, _CPom, _ETn, _RC],
2051
+ [2, 0, 0, 0, 0, [() => ObjectVersionList, { [_xF]: 1, [_xN]: _Ver }], [() => DeleteMarkers, { [_xF]: 1, [_xN]: _DM }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]]
2052
+ ];
2053
+ export var ListObjectVersionsRequest$ = [3, n0, _LOVRi,
2054
+ 0,
2055
+ [_B, _Deli, _ETn, _KM, _MK, _P, _VIM, _EBO, _RP, _OOA],
2056
+ [[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _km }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hQ]: _vim }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }], [64 | 0, { [_hH]: _xaooa }]], 1
2057
+ ];
2058
+ export var ListPartsOutput$ = [3, n0, _LPO,
2059
+ { [_xN]: _LPR },
2060
+ [_ADb, _ARI, _B, _K, _UI, _PNM, _NPNM, _MP, _IT, _Pa, _In, _O, _SC, _RC, _CA, _CT],
2061
+ [[4, { [_hH]: _xaad }], [0, { [_hH]: _xaari }], 0, 0, 0, 0, 0, 1, 2, [() => Parts, { [_xF]: 1, [_xN]: _Par }], () => Initiator$, () => Owner$, 0, [0, { [_hH]: _xarc }], 0, 0]
2062
+ ];
2063
+ export var ListPartsRequest$ = [3, n0, _LPRi,
2064
+ 0,
2065
+ [_B, _K, _UI, _MP, _PNM, _RP, _EBO, _SSECA, _SSECK, _SSECKMD],
2066
+ [[0, 1], [0, 1], [0, { [_hQ]: _uI }], [1, { [_hQ]: _mp }], [0, { [_hQ]: _pnm }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }]], 3
2067
+ ];
2068
+ export var LocationInfo$ = [3, n0, _LI,
2069
+ 0,
2070
+ [_Ty, _N],
2071
+ [0, 0]
2072
+ ];
2073
+ export var LoggingEnabled$ = [3, n0, _LE,
2074
+ 0,
2075
+ [_TB, _TP, _TG, _TOKF],
2076
+ [0, 0, [() => TargetGrants, 0], [() => TargetObjectKeyFormat$, 0]], 2
2077
+ ];
2078
+ export var MetadataConfiguration$ = [3, n0, _MC,
2079
+ 0,
2080
+ [_JTC, _ITCn],
2081
+ [() => JournalTableConfiguration$, () => InventoryTableConfiguration$], 1
2082
+ ];
2083
+ export var MetadataConfigurationResult$ = [3, n0, _MCR,
2084
+ 0,
2085
+ [_DRes, _JTCR, _ITCR],
2086
+ [() => DestinationResult$, () => JournalTableConfigurationResult$, () => InventoryTableConfigurationResult$], 1
2087
+ ];
2088
+ export var MetadataEntry$ = [3, n0, _ME,
2089
+ 0,
2090
+ [_N, _V],
2091
+ [0, 0]
2092
+ ];
2093
+ export var MetadataTableConfiguration$ = [3, n0, _MTC,
2094
+ 0,
2095
+ [_STD],
2096
+ [() => S3TablesDestination$], 1
2097
+ ];
2098
+ export var MetadataTableConfigurationResult$ = [3, n0, _MTCR,
2099
+ 0,
2100
+ [_STDR],
2101
+ [() => S3TablesDestinationResult$], 1
2102
+ ];
2103
+ export var MetadataTableEncryptionConfiguration$ = [3, n0, _MTEC,
2104
+ 0,
2105
+ [_SAs, _KKA],
2106
+ [0, 0], 1
2107
+ ];
2108
+ export var Metrics$ = [3, n0, _Me,
2109
+ 0,
2110
+ [_S, _ETv],
2111
+ [0, () => ReplicationTimeValue$], 1
2112
+ ];
2113
+ export var MetricsAndOperator$ = [3, n0, _MAO,
2114
+ 0,
2115
+ [_P, _T, _APAc],
2116
+ [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }], 0]
2117
+ ];
2118
+ export var MetricsConfiguration$ = [3, n0, _MCe,
2119
+ 0,
2120
+ [_I, _F],
2121
+ [0, [() => MetricsFilter$, 0]], 1
2122
+ ];
2123
+ export var MultipartUpload$ = [3, n0, _MU,
2124
+ 0,
2125
+ [_UI, _K, _Ini, _SC, _O, _In, _CA, _CT],
2126
+ [0, 0, 4, 0, () => Owner$, () => Initiator$, 0, 0]
2127
+ ];
2128
+ export var NoncurrentVersionExpiration$ = [3, n0, _NVE,
2129
+ 0,
2130
+ [_ND, _NNV],
2131
+ [1, 1]
2132
+ ];
2133
+ export var NoncurrentVersionTransition$ = [3, n0, _NVTo,
2134
+ 0,
2135
+ [_ND, _SC, _NNV],
2136
+ [1, 0, 1]
2137
+ ];
2138
+ export var NoSuchBucket$ = [-3, n0, _NSB,
2139
+ { [_e]: _c, [_hE]: 404 },
2140
+ [],
2141
+ []
2142
+ ];
2143
+ TypeRegistry.for(n0).registerError(NoSuchBucket$, NoSuchBucket);
2144
+ export var NoSuchKey$ = [-3, n0, _NSK,
2145
+ { [_e]: _c, [_hE]: 404 },
2146
+ [],
2147
+ []
2148
+ ];
2149
+ TypeRegistry.for(n0).registerError(NoSuchKey$, NoSuchKey);
2150
+ export var NoSuchUpload$ = [-3, n0, _NSU,
2151
+ { [_e]: _c, [_hE]: 404 },
2152
+ [],
2153
+ []
2154
+ ];
2155
+ TypeRegistry.for(n0).registerError(NoSuchUpload$, NoSuchUpload);
2156
+ export var NotFound$ = [-3, n0, _NF,
2157
+ { [_e]: _c },
2158
+ [],
2159
+ []
2160
+ ];
2161
+ TypeRegistry.for(n0).registerError(NotFound$, NotFound);
2162
+ export var NotificationConfiguration$ = [3, n0, _NC,
2163
+ 0,
2164
+ [_TCo, _QCu, _LFCa, _EBC],
2165
+ [[() => TopicConfigurationList, { [_xF]: 1, [_xN]: _TCop }], [() => QueueConfigurationList, { [_xF]: 1, [_xN]: _QCue }], [() => LambdaFunctionConfigurationList, { [_xF]: 1, [_xN]: _CFC }], () => EventBridgeConfiguration$]
2166
+ ];
2167
+ export var NotificationConfigurationFilter$ = [3, n0, _NCF,
2168
+ 0,
2169
+ [_K],
2170
+ [[() => S3KeyFilter$, { [_xN]: _SKe }]]
2171
+ ];
2172
+ export var _Object$ = [3, n0, _Obj,
2173
+ 0,
2174
+ [_K, _LM, _ETa, _CA, _CT, _Si, _SC, _O, _RSe],
2175
+ [0, 4, 0, [64 | 0, { [_xF]: 1 }], 0, 1, 0, () => Owner$, () => RestoreStatus$]
2176
+ ];
2177
+ export var ObjectAlreadyInActiveTierError$ = [-3, n0, _OAIATE,
2178
+ { [_e]: _c, [_hE]: 403 },
2179
+ [],
2180
+ []
2181
+ ];
2182
+ TypeRegistry.for(n0).registerError(ObjectAlreadyInActiveTierError$, ObjectAlreadyInActiveTierError);
2183
+ export var ObjectIdentifier$ = [3, n0, _OI,
2184
+ 0,
2185
+ [_K, _VI, _ETa, _LMT, _Si],
2186
+ [0, 0, 0, 6, 1], 1
2187
+ ];
2188
+ export var ObjectLockConfiguration$ = [3, n0, _OLC,
2189
+ 0,
2190
+ [_OLE, _Ru],
2191
+ [0, () => ObjectLockRule$]
2192
+ ];
2193
+ export var ObjectLockLegalHold$ = [3, n0, _OLLH,
2194
+ 0,
2195
+ [_S],
2196
+ [0]
2197
+ ];
2198
+ export var ObjectLockRetention$ = [3, n0, _OLR,
2199
+ 0,
2200
+ [_Mo, _RUD],
2201
+ [0, 5]
2202
+ ];
2203
+ export var ObjectLockRule$ = [3, n0, _OLRb,
2204
+ 0,
2205
+ [_DRe],
2206
+ [() => DefaultRetention$]
2207
+ ];
2208
+ export var ObjectNotInActiveTierError$ = [-3, n0, _ONIATE,
2209
+ { [_e]: _c, [_hE]: 403 },
2210
+ [],
2211
+ []
2212
+ ];
2213
+ TypeRegistry.for(n0).registerError(ObjectNotInActiveTierError$, ObjectNotInActiveTierError);
2214
+ export var ObjectPart$ = [3, n0, _OPb,
2215
+ 0,
2216
+ [_PN, _Si, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh],
2217
+ [1, 1, 0, 0, 0, 0, 0]
2218
+ ];
2219
+ export var ObjectVersion$ = [3, n0, _OV,
2220
+ 0,
2221
+ [_ETa, _CA, _CT, _Si, _SC, _K, _VI, _IL, _LM, _O, _RSe],
2222
+ [0, [64 | 0, { [_xF]: 1 }], 0, 1, 0, 0, 0, 2, 4, () => Owner$, () => RestoreStatus$]
2223
+ ];
2224
+ export var OutputLocation$ = [3, n0, _OL,
2225
+ 0,
2226
+ [_S_],
2227
+ [[() => S3Location$, 0]]
2228
+ ];
2229
+ export var OutputSerialization$ = [3, n0, _OSu,
2230
+ 0,
2231
+ [_CSV, _JSON],
2232
+ [() => CSVOutput$, () => JSONOutput$]
2233
+ ];
2234
+ export var Owner$ = [3, n0, _O,
2235
+ 0,
2236
+ [_DN, _ID],
2237
+ [0, 0]
2238
+ ];
2239
+ export var OwnershipControls$ = [3, n0, _OC,
2240
+ 0,
2241
+ [_R],
2242
+ [[() => OwnershipControlsRules, { [_xF]: 1, [_xN]: _Ru }]], 1
2243
+ ];
2244
+ export var OwnershipControlsRule$ = [3, n0, _OCR,
2245
+ 0,
2246
+ [_OO],
2247
+ [0], 1
2248
+ ];
2249
+ export var ParquetInput$ = [3, n0, _PI,
2250
+ 0,
2251
+ [],
2252
+ []
2253
+ ];
2254
+ export var Part$ = [3, n0, _Par,
2255
+ 0,
2256
+ [_PN, _LM, _ETa, _Si, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh],
2257
+ [1, 4, 0, 1, 0, 0, 0, 0, 0]
2258
+ ];
2259
+ export var PartitionedPrefix$ = [3, n0, _PP,
2260
+ { [_xN]: _PP },
2261
+ [_PDS],
2262
+ [0]
2263
+ ];
2264
+ export var PolicyStatus$ = [3, n0, _PS,
2265
+ 0,
2266
+ [_IP],
2267
+ [[2, { [_xN]: _IP }]]
2268
+ ];
2269
+ export var Progress$ = [3, n0, _Pr,
2270
+ 0,
2271
+ [_BS, _BP, _BRy],
2272
+ [1, 1, 1]
2273
+ ];
2274
+ export var ProgressEvent$ = [3, n0, _PE,
2275
+ 0,
2276
+ [_Det],
2277
+ [[() => Progress$, { [_eP]: 1 }]]
2278
+ ];
2279
+ export var PublicAccessBlockConfiguration$ = [3, n0, _PABC,
2280
+ 0,
2281
+ [_BPA, _IPA, _BPP, _RPB],
2282
+ [[2, { [_xN]: _BPA }], [2, { [_xN]: _IPA }], [2, { [_xN]: _BPP }], [2, { [_xN]: _RPB }]]
2283
+ ];
2284
+ export var PutBucketAbacRequest$ = [3, n0, _PBAR,
2285
+ 0,
2286
+ [_B, _AS, _CMD, _CA, _EBO],
2287
+ [[0, 1], [() => AbacStatus$, { [_hP]: 1, [_xN]: _AS }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2288
+ ];
2289
+ export var PutBucketAccelerateConfigurationRequest$ = [3, n0, _PBACR,
2290
+ 0,
2291
+ [_B, _AC, _EBO, _CA],
2292
+ [[0, 1], [() => AccelerateConfiguration$, { [_hP]: 1, [_xN]: _AC }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2
2293
+ ];
2294
+ export var PutBucketAclRequest$ = [3, n0, _PBARu,
2295
+ 0,
2296
+ [_B, _ACL_, _ACP, _CMD, _CA, _GFC, _GR, _GRACP, _GW, _GWACP, _EBO],
2297
+ [[0, 1], [0, { [_hH]: _xaa }], [() => AccessControlPolicy$, { [_hP]: 1, [_xN]: _ACP }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _xaebo }]], 1
2298
+ ];
2299
+ export var PutBucketAnalyticsConfigurationRequest$ = [3, n0, _PBACRu,
2300
+ 0,
2301
+ [_B, _I, _ACn, _EBO],
2302
+ [[0, 1], [0, { [_hQ]: _i }], [() => AnalyticsConfiguration$, { [_hP]: 1, [_xN]: _ACn }], [0, { [_hH]: _xaebo }]], 3
2303
+ ];
2304
+ export var PutBucketCorsRequest$ = [3, n0, _PBCR,
2305
+ 0,
2306
+ [_B, _CORSC, _CMD, _CA, _EBO],
2307
+ [[0, 1], [() => CORSConfiguration$, { [_hP]: 1, [_xN]: _CORSC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2308
+ ];
2309
+ export var PutBucketEncryptionRequest$ = [3, n0, _PBER,
2310
+ 0,
2311
+ [_B, _SSEC, _CMD, _CA, _EBO],
2312
+ [[0, 1], [() => ServerSideEncryptionConfiguration$, { [_hP]: 1, [_xN]: _SSEC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2313
+ ];
2314
+ export var PutBucketIntelligentTieringConfigurationRequest$ = [3, n0, _PBITCR,
2315
+ 0,
2316
+ [_B, _I, _ITC, _EBO],
2317
+ [[0, 1], [0, { [_hQ]: _i }], [() => IntelligentTieringConfiguration$, { [_hP]: 1, [_xN]: _ITC }], [0, { [_hH]: _xaebo }]], 3
2318
+ ];
2319
+ export var PutBucketInventoryConfigurationRequest$ = [3, n0, _PBICR,
2320
+ 0,
2321
+ [_B, _I, _IC, _EBO],
2322
+ [[0, 1], [0, { [_hQ]: _i }], [() => InventoryConfiguration$, { [_hP]: 1, [_xN]: _IC }], [0, { [_hH]: _xaebo }]], 3
2323
+ ];
2324
+ export var PutBucketLifecycleConfigurationOutput$ = [3, n0, _PBLCO,
2325
+ 0,
2326
+ [_TDMOS],
2327
+ [[0, { [_hH]: _xatdmos }]]
2328
+ ];
2329
+ export var PutBucketLifecycleConfigurationRequest$ = [3, n0, _PBLCR,
2330
+ 0,
2331
+ [_B, _CA, _LCi, _EBO, _TDMOS],
2332
+ [[0, 1], [0, { [_hH]: _xasca }], [() => BucketLifecycleConfiguration$, { [_hP]: 1, [_xN]: _LCi }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xatdmos }]], 1
2333
+ ];
2334
+ export var PutBucketLoggingRequest$ = [3, n0, _PBLR,
2335
+ 0,
2336
+ [_B, _BLS, _CMD, _CA, _EBO],
2337
+ [[0, 1], [() => BucketLoggingStatus$, { [_hP]: 1, [_xN]: _BLS }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2338
+ ];
2339
+ export var PutBucketMetricsConfigurationRequest$ = [3, n0, _PBMCR,
2340
+ 0,
2341
+ [_B, _I, _MCe, _EBO],
2342
+ [[0, 1], [0, { [_hQ]: _i }], [() => MetricsConfiguration$, { [_hP]: 1, [_xN]: _MCe }], [0, { [_hH]: _xaebo }]], 3
2343
+ ];
2344
+ export var PutBucketNotificationConfigurationRequest$ = [3, n0, _PBNCR,
2345
+ 0,
2346
+ [_B, _NC, _EBO, _SDV],
2347
+ [[0, 1], [() => NotificationConfiguration$, { [_hP]: 1, [_xN]: _NC }], [0, { [_hH]: _xaebo }], [2, { [_hH]: _xasdv }]], 2
2348
+ ];
2349
+ export var PutBucketOwnershipControlsRequest$ = [3, n0, _PBOCR,
2350
+ 0,
2351
+ [_B, _OC, _CMD, _EBO, _CA],
2352
+ [[0, 1], [() => OwnershipControls$, { [_hP]: 1, [_xN]: _OC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2
2353
+ ];
2354
+ export var PutBucketPolicyRequest$ = [3, n0, _PBPR,
2355
+ 0,
2356
+ [_B, _Po, _CMD, _CA, _CRSBA, _EBO],
2357
+ [[0, 1], [0, 16], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [2, { [_hH]: _xacrsba }], [0, { [_hH]: _xaebo }]], 2
2358
+ ];
2359
+ export var PutBucketReplicationRequest$ = [3, n0, _PBRR,
2360
+ 0,
2361
+ [_B, _RCe, _CMD, _CA, _To, _EBO],
2362
+ [[0, 1], [() => ReplicationConfiguration$, { [_hP]: 1, [_xN]: _RCe }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xabolt }], [0, { [_hH]: _xaebo }]], 2
2363
+ ];
2364
+ export var PutBucketRequestPaymentRequest$ = [3, n0, _PBRPR,
2365
+ 0,
2366
+ [_B, _RPC, _CMD, _CA, _EBO],
2367
+ [[0, 1], [() => RequestPaymentConfiguration$, { [_hP]: 1, [_xN]: _RPC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2368
+ ];
2369
+ export var PutBucketTaggingRequest$ = [3, n0, _PBTR,
2370
+ 0,
2371
+ [_B, _Tag, _CMD, _CA, _EBO],
2372
+ [[0, 1], [() => Tagging$, { [_hP]: 1, [_xN]: _Tag }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2373
+ ];
2374
+ export var PutBucketVersioningRequest$ = [3, n0, _PBVR,
2375
+ 0,
2376
+ [_B, _VC, _CMD, _CA, _MFA, _EBO],
2377
+ [[0, 1], [() => VersioningConfiguration$, { [_hP]: 1, [_xN]: _VC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xam_ }], [0, { [_hH]: _xaebo }]], 2
2378
+ ];
2379
+ export var PutBucketWebsiteRequest$ = [3, n0, _PBWR,
2380
+ 0,
2381
+ [_B, _WC, _CMD, _CA, _EBO],
2382
+ [[0, 1], [() => WebsiteConfiguration$, { [_hP]: 1, [_xN]: _WC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2383
+ ];
2384
+ export var PutObjectAclOutput$ = [3, n0, _POAO,
2385
+ 0,
2386
+ [_RC],
2387
+ [[0, { [_hH]: _xarc }]]
2388
+ ];
2389
+ export var PutObjectAclRequest$ = [3, n0, _POAR,
2390
+ 0,
2391
+ [_B, _K, _ACL_, _ACP, _CMD, _CA, _GFC, _GR, _GRACP, _GW, _GWACP, _RP, _VI, _EBO],
2392
+ [[0, 1], [0, 1], [0, { [_hH]: _xaa }], [() => AccessControlPolicy$, { [_hP]: 1, [_xN]: _ACP }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }]], 2
2393
+ ];
2394
+ export var PutObjectLegalHoldOutput$ = [3, n0, _POLHO,
2395
+ 0,
2396
+ [_RC],
2397
+ [[0, { [_hH]: _xarc }]]
2398
+ ];
2399
+ export var PutObjectLegalHoldRequest$ = [3, n0, _POLHR,
2400
+ 0,
2401
+ [_B, _K, _LH, _RP, _VI, _CMD, _CA, _EBO],
2402
+ [[0, 1], [0, 1], [() => ObjectLockLegalHold$, { [_hP]: 1, [_xN]: _LH }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2403
+ ];
2404
+ export var PutObjectLockConfigurationOutput$ = [3, n0, _POLCO,
2405
+ 0,
2406
+ [_RC],
2407
+ [[0, { [_hH]: _xarc }]]
2408
+ ];
2409
+ export var PutObjectLockConfigurationRequest$ = [3, n0, _POLCR,
2410
+ 0,
2411
+ [_B, _OLC, _RP, _To, _CMD, _CA, _EBO],
2412
+ [[0, 1], [() => ObjectLockConfiguration$, { [_hP]: 1, [_xN]: _OLC }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xabolt }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 1
2413
+ ];
2414
+ export var PutObjectOutput$ = [3, n0, _POO,
2415
+ 0,
2416
+ [_E, _ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CT, _SSE, _VI, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _Si, _RC],
2417
+ [[0, { [_hH]: _xae }], [0, { [_hH]: _ETa }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xact }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [1, { [_hH]: _xaos }], [0, { [_hH]: _xarc }]]
2418
+ ];
2419
+ export var PutObjectRequest$ = [3, n0, _POR,
2420
+ 0,
2421
+ [_B, _K, _ACL_, _Bo, _CC, _CDo, _CEo, _CL, _CLo, _CMD, _CTo, _CA, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _Ex, _IM, _INM, _GFC, _GR, _GRACP, _GWACP, _WOB, _M, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO],
2422
+ [[0, 1], [0, 1], [0, { [_hH]: _xaa }], [() => StreamingBlob, 16], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _CM }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [4, { [_hH]: _Ex }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [1, { [_hH]: _xawob }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }]], 2
2423
+ ];
2424
+ export var PutObjectRetentionOutput$ = [3, n0, _PORO,
2425
+ 0,
2426
+ [_RC],
2427
+ [[0, { [_hH]: _xarc }]]
2428
+ ];
2429
+ export var PutObjectRetentionRequest$ = [3, n0, _PORR,
2430
+ 0,
2431
+ [_B, _K, _Ret, _RP, _VI, _BGR, _CMD, _CA, _EBO],
2432
+ [[0, 1], [0, 1], [() => ObjectLockRetention$, { [_hP]: 1, [_xN]: _Ret }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2433
+ ];
2434
+ export var PutObjectTaggingOutput$ = [3, n0, _POTO,
2435
+ 0,
2436
+ [_VI],
2437
+ [[0, { [_hH]: _xavi }]]
2438
+ ];
2439
+ export var PutObjectTaggingRequest$ = [3, n0, _POTR,
2440
+ 0,
2441
+ [_B, _K, _Tag, _VI, _CMD, _CA, _EBO, _RP],
2442
+ [[0, 1], [0, 1], [() => Tagging$, { [_hP]: 1, [_xN]: _Tag }], [0, { [_hQ]: _vI }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 3
2443
+ ];
2444
+ export var PutPublicAccessBlockRequest$ = [3, n0, _PPABR,
2445
+ 0,
2446
+ [_B, _PABC, _CMD, _CA, _EBO],
2447
+ [[0, 1], [() => PublicAccessBlockConfiguration$, { [_hP]: 1, [_xN]: _PABC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2448
+ ];
2449
+ export var QueueConfiguration$ = [3, n0, _QCue,
2450
+ 0,
2451
+ [_QA, _Ev, _I, _F],
2452
+ [[0, { [_xN]: _Qu }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2
2453
+ ];
2454
+ export var RecordExpiration$ = [3, n0, _REe,
2455
+ 0,
2456
+ [_E, _D],
2457
+ [0, 1], 1
2458
+ ];
2459
+ export var RecordsEvent$ = [3, n0, _REec,
2460
+ 0,
2461
+ [_Payl],
2462
+ [[21, { [_eP]: 1 }]]
2463
+ ];
2464
+ export var Redirect$ = [3, n0, _Red,
2465
+ 0,
2466
+ [_HN, _HRC, _Pro, _RKPW, _RKW],
2467
+ [0, 0, 0, 0, 0]
2468
+ ];
2469
+ export var RedirectAllRequestsTo$ = [3, n0, _RART,
2470
+ 0,
2471
+ [_HN, _Pro],
2472
+ [0, 0], 1
2473
+ ];
2474
+ export var RenameObjectOutput$ = [3, n0, _ROO,
2475
+ 0,
2476
+ [],
2477
+ []
2478
+ ];
2479
+ export var RenameObjectRequest$ = [3, n0, _ROR,
2480
+ 0,
2481
+ [_B, _K, _RSen, _DIM, _DINM, _DIMS, _DIUS, _SIM, _SINM, _SIMS, _SIUS, _CTl],
2482
+ [[0, 1], [0, 1], [0, { [_hH]: _xars_ }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IMS_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _xarsim }], [0, { [_hH]: _xarsinm }], [6, { [_hH]: _xarsims }], [6, { [_hH]: _xarsius }], [0, { [_hH]: _xact_, [_iT]: 1 }]], 3
2483
+ ];
2484
+ export var ReplicaModifications$ = [3, n0, _RM,
2485
+ 0,
2486
+ [_S],
2487
+ [0], 1
2488
+ ];
2489
+ export var ReplicationConfiguration$ = [3, n0, _RCe,
2490
+ 0,
2491
+ [_Ro, _R],
2492
+ [0, [() => ReplicationRules, { [_xF]: 1, [_xN]: _Ru }]], 2
2493
+ ];
2494
+ export var ReplicationRule$ = [3, n0, _RRe,
2495
+ 0,
2496
+ [_S, _Des, _ID, _Pri, _P, _F, _SSC, _EOR, _DMR],
2497
+ [0, () => Destination$, 0, 1, 0, [() => ReplicationRuleFilter$, 0], () => SourceSelectionCriteria$, () => ExistingObjectReplication$, () => DeleteMarkerReplication$], 2
2498
+ ];
2499
+ export var ReplicationRuleAndOperator$ = [3, n0, _RRAO,
2500
+ 0,
2501
+ [_P, _T],
2502
+ [0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]]
2503
+ ];
2504
+ export var ReplicationRuleFilter$ = [3, n0, _RRF,
2505
+ 0,
2506
+ [_P, _Ta, _An],
2507
+ [0, () => Tag$, [() => ReplicationRuleAndOperator$, 0]]
2508
+ ];
2509
+ export var ReplicationTime$ = [3, n0, _RT,
2510
+ 0,
2511
+ [_S, _Tim],
2512
+ [0, () => ReplicationTimeValue$], 2
2513
+ ];
2514
+ export var ReplicationTimeValue$ = [3, n0, _RTV,
2515
+ 0,
2516
+ [_Mi],
2517
+ [1]
2518
+ ];
2519
+ export var RequestPaymentConfiguration$ = [3, n0, _RPC,
2520
+ 0,
2521
+ [_Pay],
2522
+ [0], 1
2523
+ ];
2524
+ export var RequestProgress$ = [3, n0, _RPe,
2525
+ 0,
2526
+ [_Ena],
2527
+ [2]
2528
+ ];
2529
+ export var RestoreObjectOutput$ = [3, n0, _ROOe,
2530
+ 0,
2531
+ [_RC, _ROP],
2532
+ [[0, { [_hH]: _xarc }], [0, { [_hH]: _xarop }]]
2533
+ ];
2534
+ export var RestoreObjectRequest$ = [3, n0, _RORe,
2535
+ 0,
2536
+ [_B, _K, _VI, _RRes, _RP, _CA, _EBO],
2537
+ [[0, 1], [0, 1], [0, { [_hQ]: _vI }], [() => RestoreRequest$, { [_hP]: 1, [_xN]: _RRes }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2538
+ ];
2539
+ export var RestoreRequest$ = [3, n0, _RRes,
2540
+ 0,
2541
+ [_D, _GJP, _Ty, _Ti, _Desc, _SP, _OL],
2542
+ [1, () => GlacierJobParameters$, 0, 0, 0, () => SelectParameters$, [() => OutputLocation$, 0]]
2543
+ ];
2544
+ export var RestoreStatus$ = [3, n0, _RSe,
2545
+ 0,
2546
+ [_IRIP, _RED],
2547
+ [2, 4]
2548
+ ];
2549
+ export var RoutingRule$ = [3, n0, _RRo,
2550
+ 0,
2551
+ [_Red, _Co],
2552
+ [() => Redirect$, () => Condition$], 1
2553
+ ];
2554
+ export var S3KeyFilter$ = [3, n0, _SKF,
2555
+ 0,
2556
+ [_FRi],
2557
+ [[() => FilterRuleList, { [_xF]: 1, [_xN]: _FR }]]
2558
+ ];
2559
+ export var S3Location$ = [3, n0, _SL,
2560
+ 0,
2561
+ [_BN, _P, _En, _CACL, _ACL, _Tag, _UM, _SC],
2562
+ [0, 0, [() => Encryption$, 0], 0, [() => Grants, 0], [() => Tagging$, 0], [() => UserMetadata, 0], 0], 2
2563
+ ];
2564
+ export var S3TablesDestination$ = [3, n0, _STD,
2565
+ 0,
2566
+ [_TBA, _TNa],
2567
+ [0, 0], 2
2568
+ ];
2569
+ export var S3TablesDestinationResult$ = [3, n0, _STDR,
2570
+ 0,
2571
+ [_TBA, _TNa, _TA, _TN],
2572
+ [0, 0, 0, 0], 4
2573
+ ];
2574
+ export var ScanRange$ = [3, n0, _SR,
2575
+ 0,
2576
+ [_St, _End],
2577
+ [1, 1]
2578
+ ];
2579
+ export var SelectObjectContentOutput$ = [3, n0, _SOCO,
2580
+ 0,
2581
+ [_Payl],
2582
+ [[() => SelectObjectContentEventStream$, 16]]
2583
+ ];
2584
+ export var SelectObjectContentRequest$ = [3, n0, _SOCR,
2585
+ 0,
2586
+ [_B, _K, _Exp, _ETx, _IS, _OSu, _SSECA, _SSECK, _SSECKMD, _RPe, _SR, _EBO],
2587
+ [[0, 1], [0, 1], 0, 0, () => InputSerialization$, () => OutputSerialization$, [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], () => RequestProgress$, () => ScanRange$, [0, { [_hH]: _xaebo }]], 6
2588
+ ];
2589
+ export var SelectParameters$ = [3, n0, _SP,
2590
+ 0,
2591
+ [_IS, _ETx, _Exp, _OSu],
2592
+ [() => InputSerialization$, 0, 0, () => OutputSerialization$], 4
2593
+ ];
2594
+ export var ServerSideEncryptionByDefault$ = [3, n0, _SSEBD,
2595
+ 0,
2596
+ [_SSEA, _KMSMKID],
2597
+ [0, [() => SSEKMSKeyId, 0]], 1
2598
+ ];
2599
+ export var ServerSideEncryptionConfiguration$ = [3, n0, _SSEC,
2600
+ 0,
2601
+ [_R],
2602
+ [[() => ServerSideEncryptionRules, { [_xF]: 1, [_xN]: _Ru }]], 1
2603
+ ];
2604
+ export var ServerSideEncryptionRule$ = [3, n0, _SSER,
2605
+ 0,
2606
+ [_ASSEBD, _BKE, _BET],
2607
+ [[() => ServerSideEncryptionByDefault$, 0], 2, [() => BlockedEncryptionTypes$, 0]]
2608
+ ];
2609
+ export var SessionCredentials$ = [3, n0, _SCe,
2610
+ 0,
2611
+ [_AKI, _SAK, _ST, _E],
2612
+ [[0, { [_xN]: _AKI }], [() => SessionCredentialValue, { [_xN]: _SAK }], [() => SessionCredentialValue, { [_xN]: _ST }], [4, { [_xN]: _E }]], 4
2613
+ ];
2614
+ export var SimplePrefix$ = [3, n0, _SPi,
2615
+ { [_xN]: _SPi },
2616
+ [],
2617
+ []
2618
+ ];
2619
+ export var SourceSelectionCriteria$ = [3, n0, _SSC,
2620
+ 0,
2621
+ [_SKEO, _RM],
2622
+ [() => SseKmsEncryptedObjects$, () => ReplicaModifications$]
2623
+ ];
2624
+ export var SSEKMS$ = [3, n0, _SSEKMS,
2625
+ { [_xN]: _SK },
2626
+ [_KI],
2627
+ [[() => SSEKMSKeyId, 0]], 1
2628
+ ];
2629
+ export var SseKmsEncryptedObjects$ = [3, n0, _SKEO,
2630
+ 0,
2631
+ [_S],
2632
+ [0], 1
2633
+ ];
2634
+ export var SSEKMSEncryption$ = [3, n0, _SSEKMSE,
2635
+ { [_xN]: _SK },
2636
+ [_KMSKA, _BKE],
2637
+ [[() => NonEmptyKmsKeyArnString, 0], 2], 1
2638
+ ];
2639
+ export var SSES3$ = [3, n0, _SSES,
2640
+ { [_xN]: _SS },
2641
+ [],
2642
+ []
2643
+ ];
2644
+ export var Stats$ = [3, n0, _Sta,
2645
+ 0,
2646
+ [_BS, _BP, _BRy],
2647
+ [1, 1, 1]
2648
+ ];
2649
+ export var StatsEvent$ = [3, n0, _SE,
2650
+ 0,
2651
+ [_Det],
2652
+ [[() => Stats$, { [_eP]: 1 }]]
2653
+ ];
2654
+ export var StorageClassAnalysis$ = [3, n0, _SCA,
2655
+ 0,
2656
+ [_DE],
2657
+ [() => StorageClassAnalysisDataExport$]
2658
+ ];
2659
+ export var StorageClassAnalysisDataExport$ = [3, n0, _SCADE,
2660
+ 0,
2661
+ [_OSV, _Des],
2662
+ [0, () => AnalyticsExportDestination$], 2
2663
+ ];
2664
+ export var Tag$ = [3, n0, _Ta,
2665
+ 0,
2666
+ [_K, _V],
2667
+ [0, 0], 2
2668
+ ];
2669
+ export var Tagging$ = [3, n0, _Tag,
2670
+ 0,
2671
+ [_TS],
2672
+ [[() => TagSet, 0]], 1
2673
+ ];
2674
+ export var TargetGrant$ = [3, n0, _TGa,
2675
+ 0,
2676
+ [_Gra, _Pe],
2677
+ [[() => Grantee$, { [_xNm]: [_x, _hi] }], 0]
2678
+ ];
2679
+ export var TargetObjectKeyFormat$ = [3, n0, _TOKF,
2680
+ 0,
2681
+ [_SPi, _PP],
2682
+ [[() => SimplePrefix$, { [_xN]: _SPi }], [() => PartitionedPrefix$, { [_xN]: _PP }]]
2683
+ ];
2684
+ export var Tiering$ = [3, n0, _Tier,
2685
+ 0,
2686
+ [_D, _AT],
2687
+ [1, 0], 2
2688
+ ];
2689
+ export var TooManyParts$ = [-3, n0, _TMP,
2690
+ { [_e]: _c, [_hE]: 400 },
2691
+ [],
2692
+ []
2693
+ ];
2694
+ TypeRegistry.for(n0).registerError(TooManyParts$, TooManyParts);
2695
+ export var TopicConfiguration$ = [3, n0, _TCop,
2696
+ 0,
2697
+ [_TAo, _Ev, _I, _F],
2698
+ [[0, { [_xN]: _Top }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2
2699
+ ];
2700
+ export var Transition$ = [3, n0, _Tra,
2701
+ 0,
2702
+ [_Da, _D, _SC],
2703
+ [5, 1, 0]
2704
+ ];
2705
+ export var UpdateBucketMetadataInventoryTableConfigurationRequest$ = [3, n0, _UBMITCR,
2706
+ 0,
2707
+ [_B, _ITCn, _CMD, _CA, _EBO],
2708
+ [[0, 1], [() => InventoryTableConfigurationUpdates$, { [_hP]: 1, [_xN]: _ITCn }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2709
+ ];
2710
+ export var UpdateBucketMetadataJournalTableConfigurationRequest$ = [3, n0, _UBMJTCR,
2711
+ 0,
2712
+ [_B, _JTC, _CMD, _CA, _EBO],
2713
+ [[0, 1], [() => JournalTableConfigurationUpdates$, { [_hP]: 1, [_xN]: _JTC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
2714
+ ];
2715
+ export var UpdateObjectEncryptionRequest$ = [3, n0, _UOER,
2716
+ 0,
2717
+ [_B, _K, _OE, _VI, _RP, _EBO, _CMD, _CA],
2718
+ [[0, 1], [0, 1], [() => ObjectEncryption$, 16], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }]], 3
2719
+ ];
2720
+ export var UpdateObjectEncryptionResponse$ = [3, n0, _UOERp,
2721
+ 0,
2722
+ [_RC],
2723
+ [[0, { [_hH]: _xarc }]]
2724
+ ];
2725
+ export var UploadPartCopyOutput$ = [3, n0, _UPCO,
2726
+ 0,
2727
+ [_CSVI, _CPR, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _RC],
2728
+ [[0, { [_hH]: _xacsvi }], [() => CopyPartResult$, 16], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]]
2729
+ ];
2730
+ export var UploadPartCopyRequest$ = [3, n0, _UPCR,
2731
+ 0,
2732
+ [_B, _CS, _K, _PN, _UI, _CSIM, _CSIMS, _CSINM, _CSIUS, _CSRo, _SSECA, _SSECK, _SSECKMD, _CSSSECA, _CSSSECK, _CSSSECKMD, _RP, _EBO, _ESBO],
2733
+ [[0, 1], [0, { [_hH]: _xacs__ }], [0, 1], [1, { [_hQ]: _pN }], [0, { [_hQ]: _uI }], [0, { [_hH]: _xacsim }], [4, { [_hH]: _xacsims }], [0, { [_hH]: _xacsinm }], [4, { [_hH]: _xacsius }], [0, { [_hH]: _xacsr }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xacssseca }], [() => CopySourceSSECustomerKey, { [_hH]: _xacssseck }], [0, { [_hH]: _xacssseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasebo }]], 5
2734
+ ];
2735
+ export var UploadPartOutput$ = [3, n0, _UPO,
2736
+ 0,
2737
+ [_SSE, _ETa, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _RC],
2738
+ [[0, { [_hH]: _xasse }], [0, { [_hH]: _ETa }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]]
2739
+ ];
2740
+ export var UploadPartRequest$ = [3, n0, _UPR,
2741
+ 0,
2742
+ [_B, _K, _PN, _UI, _Bo, _CLo, _CMD, _CA, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _SSECA, _SSECK, _SSECKMD, _RP, _EBO],
2743
+ [[0, 1], [0, 1], [1, { [_hQ]: _pN }], [0, { [_hQ]: _uI }], [() => StreamingBlob, 16], [1, { [_hH]: _CL__ }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 4
2744
+ ];
2745
+ export var VersioningConfiguration$ = [3, n0, _VC,
2746
+ 0,
2747
+ [_MFAD, _S],
2748
+ [[0, { [_xN]: _MDf }], 0]
2749
+ ];
2750
+ export var WebsiteConfiguration$ = [3, n0, _WC,
2751
+ 0,
2752
+ [_EDr, _IDn, _RART, _RR],
2753
+ [() => ErrorDocument$, () => IndexDocument$, () => RedirectAllRequestsTo$, [() => RoutingRules, 0]]
2754
+ ];
2755
+ export var WriteGetObjectResponseRequest$ = [3, n0, _WGORR,
2756
+ 0,
2757
+ [_RReq, _RTe, _Bo, _SCt, _ECr, _EM, _AR, _CC, _CDo, _CEo, _CL, _CLo, _CR, _CTo, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _DM, _ETa, _Ex, _E, _LM, _MM, _M, _OLM, _OLLHS, _OLRUD, _PC, _RS, _RC, _Re, _SSE, _SSECA, _SSEKMSKI, _SSECKMD, _SC, _TC, _VI, _BKE],
2758
+ [[0, { [_hL]: 1, [_hH]: _xarr }], [0, { [_hH]: _xart }], [() => StreamingBlob, 16], [1, { [_hH]: _xafs }], [0, { [_hH]: _xafec }], [0, { [_hH]: _xafem }], [0, { [_hH]: _xafhar }], [0, { [_hH]: _xafhCC }], [0, { [_hH]: _xafhCD }], [0, { [_hH]: _xafhCE }], [0, { [_hH]: _xafhCL }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _xafhCR }], [0, { [_hH]: _xafhCT }], [0, { [_hH]: _xafhxacc }], [0, { [_hH]: _xafhxacc_ }], [0, { [_hH]: _xafhxacc__ }], [0, { [_hH]: _xafhxacs }], [0, { [_hH]: _xafhxacs_ }], [2, { [_hH]: _xafhxadm }], [0, { [_hH]: _xafhE }], [4, { [_hH]: _xafhE_ }], [0, { [_hH]: _xafhxae }], [4, { [_hH]: _xafhLM }], [1, { [_hH]: _xafhxamm }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xafhxaolm }], [0, { [_hH]: _xafhxaollh }], [5, { [_hH]: _xafhxaolrud }], [1, { [_hH]: _xafhxampc }], [0, { [_hH]: _xafhxars }], [0, { [_hH]: _xafhxarc }], [0, { [_hH]: _xafhxar }], [0, { [_hH]: _xafhxasse }], [0, { [_hH]: _xafhxasseca }], [() => SSEKMSKeyId, { [_hH]: _xafhxasseakki }], [0, { [_hH]: _xafhxasseckM }], [0, { [_hH]: _xafhxasc }], [1, { [_hH]: _xafhxatc }], [0, { [_hH]: _xafhxavi }], [2, { [_hH]: _xafhxassebke }]], 2
2759
+ ];
2760
+ var __Unit = "unit";
2761
+ export var S3ServiceException$ = [-3, _sm, "S3ServiceException", 0, [], []];
2762
+ TypeRegistry.for(_sm).registerError(S3ServiceException$, S3ServiceException);
2763
+ var AllowedHeaders = 64 | 0;
2764
+ var AllowedMethods = 64 | 0;
2765
+ var AllowedOrigins = 64 | 0;
2766
+ var AnalyticsConfigurationList = [1, n0, _ACLn,
2767
+ 0, [() => AnalyticsConfiguration$,
2768
+ 0]
2769
+ ];
2770
+ var Buckets = [1, n0, _Bu,
2771
+ 0, [() => Bucket$,
2772
+ { [_xN]: _B }]
2773
+ ];
2774
+ var ChecksumAlgorithmList = 64 | 0;
2775
+ var CommonPrefixList = [1, n0, _CPL,
2776
+ 0, () => CommonPrefix$
2777
+ ];
2778
+ var CompletedPartList = [1, n0, _CPLo,
2779
+ 0, () => CompletedPart$
2780
+ ];
2781
+ var CORSRules = [1, n0, _CORSR,
2782
+ 0, [() => CORSRule$,
2783
+ 0]
2784
+ ];
2785
+ var DeletedObjects = [1, n0, _DOe,
2786
+ 0, () => DeletedObject$
2787
+ ];
2788
+ var DeleteMarkers = [1, n0, _DMe,
2789
+ 0, () => DeleteMarkerEntry$
2790
+ ];
2791
+ var EncryptionTypeList = [1, n0, _ETL,
2792
+ 0, [0,
2793
+ { [_xN]: _ET }]
2794
+ ];
2795
+ var Errors = [1, n0, _Er,
2796
+ 0, () => _Error$
2797
+ ];
2798
+ var EventList = 64 | 0;
2799
+ var ExposeHeaders = 64 | 0;
2800
+ var FilterRuleList = [1, n0, _FRL,
2801
+ 0, () => FilterRule$
2802
+ ];
2803
+ var Grants = [1, n0, _G,
2804
+ 0, [() => Grant$,
2805
+ { [_xN]: _Gr }]
2806
+ ];
2807
+ var IntelligentTieringConfigurationList = [1, n0, _ITCL,
2808
+ 0, [() => IntelligentTieringConfiguration$,
2809
+ 0]
2810
+ ];
2811
+ var InventoryConfigurationList = [1, n0, _ICL,
2812
+ 0, [() => InventoryConfiguration$,
2813
+ 0]
2814
+ ];
2815
+ var InventoryOptionalFields = [1, n0, _IOF,
2816
+ 0, [0,
2817
+ { [_xN]: _Fi }]
2818
+ ];
2819
+ var LambdaFunctionConfigurationList = [1, n0, _LFCL,
2820
+ 0, [() => LambdaFunctionConfiguration$,
2821
+ 0]
2822
+ ];
2823
+ var LifecycleRules = [1, n0, _LRi,
2824
+ 0, [() => LifecycleRule$,
2825
+ 0]
2826
+ ];
2827
+ var MetricsConfigurationList = [1, n0, _MCL,
2828
+ 0, [() => MetricsConfiguration$,
2829
+ 0]
2830
+ ];
2831
+ var MultipartUploadList = [1, n0, _MUL,
2832
+ 0, () => MultipartUpload$
2833
+ ];
2834
+ var NoncurrentVersionTransitionList = [1, n0, _NVTL,
2835
+ 0, () => NoncurrentVersionTransition$
2836
+ ];
2837
+ var ObjectAttributesList = 64 | 0;
2838
+ var ObjectIdentifierList = [1, n0, _OIL,
2839
+ 0, () => ObjectIdentifier$
2840
+ ];
2841
+ var ObjectList = [1, n0, _OLb,
2842
+ 0, [() => _Object$,
2843
+ 0]
2844
+ ];
2845
+ var ObjectVersionList = [1, n0, _OVL,
2846
+ 0, [() => ObjectVersion$,
2847
+ 0]
2848
+ ];
2849
+ var OptionalObjectAttributesList = 64 | 0;
2850
+ var OwnershipControlsRules = [1, n0, _OCRw,
2851
+ 0, () => OwnershipControlsRule$
2852
+ ];
2853
+ var Parts = [1, n0, _Pa,
2854
+ 0, () => Part$
2855
+ ];
2856
+ var PartsList = [1, n0, _PL,
2857
+ 0, () => ObjectPart$
2858
+ ];
2859
+ var QueueConfigurationList = [1, n0, _QCL,
2860
+ 0, [() => QueueConfiguration$,
2861
+ 0]
2862
+ ];
2863
+ var ReplicationRules = [1, n0, _RRep,
2864
+ 0, [() => ReplicationRule$,
2865
+ 0]
2866
+ ];
2867
+ var RoutingRules = [1, n0, _RR,
2868
+ 0, [() => RoutingRule$,
2869
+ { [_xN]: _RRo }]
2870
+ ];
2871
+ var ServerSideEncryptionRules = [1, n0, _SSERe,
2872
+ 0, [() => ServerSideEncryptionRule$,
2873
+ 0]
2874
+ ];
2875
+ var TagSet = [1, n0, _TS,
2876
+ 0, [() => Tag$,
2877
+ { [_xN]: _Ta }]
2878
+ ];
2879
+ var TargetGrants = [1, n0, _TG,
2880
+ 0, [() => TargetGrant$,
2881
+ { [_xN]: _Gr }]
2882
+ ];
2883
+ var TieringList = [1, n0, _TL,
2884
+ 0, () => Tiering$
2885
+ ];
2886
+ var TopicConfigurationList = [1, n0, _TCL,
2887
+ 0, [() => TopicConfiguration$,
2888
+ 0]
2889
+ ];
2890
+ var TransitionList = [1, n0, _TLr,
2891
+ 0, () => Transition$
2892
+ ];
2893
+ var UserMetadata = [1, n0, _UM,
2894
+ 0, [() => MetadataEntry$,
2895
+ { [_xN]: _ME }]
2896
+ ];
2897
+ var Metadata = 128 | 0;
2898
+ export var AnalyticsFilter$ = [4, n0, _AF,
2899
+ 0,
2900
+ [_P, _Ta, _An],
2901
+ [0, () => Tag$, [() => AnalyticsAndOperator$, 0]]
2902
+ ];
2903
+ export var MetricsFilter$ = [4, n0, _MF,
2904
+ 0,
2905
+ [_P, _Ta, _APAc, _An],
2906
+ [0, () => Tag$, 0, [() => MetricsAndOperator$, 0]]
2907
+ ];
2908
+ export var ObjectEncryption$ = [4, n0, _OE,
2909
+ 0,
2910
+ [_SSEKMS],
2911
+ [[() => SSEKMSEncryption$, { [_xN]: _SK }]]
2912
+ ];
2913
+ export var SelectObjectContentEventStream$ = [4, n0, _SOCES,
2914
+ { [_s]: 1 },
2915
+ [_Rec, _Sta, _Pr, _Cont, _End],
2916
+ [[() => RecordsEvent$, 0], [() => StatsEvent$, 0], [() => ProgressEvent$, 0], () => ContinuationEvent$, () => EndEvent$]
2917
+ ];
2918
+ export var AbortMultipartUpload$ = [9, n0, _AMU,
2919
+ { [_h]: ["DELETE", "/{Key+}?x-id=AbortMultipartUpload", 204] }, () => AbortMultipartUploadRequest$, () => AbortMultipartUploadOutput$
2920
+ ];
2921
+ export var CompleteMultipartUpload$ = [9, n0, _CMUo,
2922
+ { [_h]: ["POST", "/{Key+}", 200] }, () => CompleteMultipartUploadRequest$, () => CompleteMultipartUploadOutput$
2923
+ ];
2924
+ export var CopyObject$ = [9, n0, _CO,
2925
+ { [_h]: ["PUT", "/{Key+}?x-id=CopyObject", 200] }, () => CopyObjectRequest$, () => CopyObjectOutput$
2926
+ ];
2927
+ export var CreateBucket$ = [9, n0, _CB,
2928
+ { [_h]: ["PUT", "/", 200] }, () => CreateBucketRequest$, () => CreateBucketOutput$
2929
+ ];
2930
+ export var CreateBucketMetadataConfiguration$ = [9, n0, _CBMC,
2931
+ { [_hC]: "-", [_h]: ["POST", "/?metadataConfiguration", 200] }, () => CreateBucketMetadataConfigurationRequest$, () => __Unit
2932
+ ];
2933
+ export var CreateBucketMetadataTableConfiguration$ = [9, n0, _CBMTC,
2934
+ { [_hC]: "-", [_h]: ["POST", "/?metadataTable", 200] }, () => CreateBucketMetadataTableConfigurationRequest$, () => __Unit
2935
+ ];
2936
+ export var CreateMultipartUpload$ = [9, n0, _CMUr,
2937
+ { [_h]: ["POST", "/{Key+}?uploads", 200] }, () => CreateMultipartUploadRequest$, () => CreateMultipartUploadOutput$
2938
+ ];
2939
+ export var CreateSession$ = [9, n0, _CSr,
2940
+ { [_h]: ["GET", "/?session", 200] }, () => CreateSessionRequest$, () => CreateSessionOutput$
2941
+ ];
2942
+ export var DeleteBucket$ = [9, n0, _DB,
2943
+ { [_h]: ["DELETE", "/", 204] }, () => DeleteBucketRequest$, () => __Unit
2944
+ ];
2945
+ export var DeleteBucketAnalyticsConfiguration$ = [9, n0, _DBAC,
2946
+ { [_h]: ["DELETE", "/?analytics", 204] }, () => DeleteBucketAnalyticsConfigurationRequest$, () => __Unit
2947
+ ];
2948
+ export var DeleteBucketCors$ = [9, n0, _DBC,
2949
+ { [_h]: ["DELETE", "/?cors", 204] }, () => DeleteBucketCorsRequest$, () => __Unit
2950
+ ];
2951
+ export var DeleteBucketEncryption$ = [9, n0, _DBE,
2952
+ { [_h]: ["DELETE", "/?encryption", 204] }, () => DeleteBucketEncryptionRequest$, () => __Unit
2953
+ ];
2954
+ export var DeleteBucketIntelligentTieringConfiguration$ = [9, n0, _DBITC,
2955
+ { [_h]: ["DELETE", "/?intelligent-tiering", 204] }, () => DeleteBucketIntelligentTieringConfigurationRequest$, () => __Unit
2956
+ ];
2957
+ export var DeleteBucketInventoryConfiguration$ = [9, n0, _DBIC,
2958
+ { [_h]: ["DELETE", "/?inventory", 204] }, () => DeleteBucketInventoryConfigurationRequest$, () => __Unit
2959
+ ];
2960
+ export var DeleteBucketLifecycle$ = [9, n0, _DBL,
2961
+ { [_h]: ["DELETE", "/?lifecycle", 204] }, () => DeleteBucketLifecycleRequest$, () => __Unit
2962
+ ];
2963
+ export var DeleteBucketMetadataConfiguration$ = [9, n0, _DBMC,
2964
+ { [_h]: ["DELETE", "/?metadataConfiguration", 204] }, () => DeleteBucketMetadataConfigurationRequest$, () => __Unit
2965
+ ];
2966
+ export var DeleteBucketMetadataTableConfiguration$ = [9, n0, _DBMTC,
2967
+ { [_h]: ["DELETE", "/?metadataTable", 204] }, () => DeleteBucketMetadataTableConfigurationRequest$, () => __Unit
2968
+ ];
2969
+ export var DeleteBucketMetricsConfiguration$ = [9, n0, _DBMCe,
2970
+ { [_h]: ["DELETE", "/?metrics", 204] }, () => DeleteBucketMetricsConfigurationRequest$, () => __Unit
2971
+ ];
2972
+ export var DeleteBucketOwnershipControls$ = [9, n0, _DBOC,
2973
+ { [_h]: ["DELETE", "/?ownershipControls", 204] }, () => DeleteBucketOwnershipControlsRequest$, () => __Unit
2974
+ ];
2975
+ export var DeleteBucketPolicy$ = [9, n0, _DBP,
2976
+ { [_h]: ["DELETE", "/?policy", 204] }, () => DeleteBucketPolicyRequest$, () => __Unit
2977
+ ];
2978
+ export var DeleteBucketReplication$ = [9, n0, _DBRe,
2979
+ { [_h]: ["DELETE", "/?replication", 204] }, () => DeleteBucketReplicationRequest$, () => __Unit
2980
+ ];
2981
+ export var DeleteBucketTagging$ = [9, n0, _DBT,
2982
+ { [_h]: ["DELETE", "/?tagging", 204] }, () => DeleteBucketTaggingRequest$, () => __Unit
2983
+ ];
2984
+ export var DeleteBucketWebsite$ = [9, n0, _DBW,
2985
+ { [_h]: ["DELETE", "/?website", 204] }, () => DeleteBucketWebsiteRequest$, () => __Unit
2986
+ ];
2987
+ export var DeleteObject$ = [9, n0, _DOel,
2988
+ { [_h]: ["DELETE", "/{Key+}?x-id=DeleteObject", 204] }, () => DeleteObjectRequest$, () => DeleteObjectOutput$
2989
+ ];
2990
+ export var DeleteObjects$ = [9, n0, _DOele,
2991
+ { [_hC]: "-", [_h]: ["POST", "/?delete", 200] }, () => DeleteObjectsRequest$, () => DeleteObjectsOutput$
2992
+ ];
2993
+ export var DeleteObjectTagging$ = [9, n0, _DOT,
2994
+ { [_h]: ["DELETE", "/{Key+}?tagging", 204] }, () => DeleteObjectTaggingRequest$, () => DeleteObjectTaggingOutput$
2995
+ ];
2996
+ export var DeletePublicAccessBlock$ = [9, n0, _DPAB,
2997
+ { [_h]: ["DELETE", "/?publicAccessBlock", 204] }, () => DeletePublicAccessBlockRequest$, () => __Unit
2998
+ ];
2999
+ export var GetBucketAbac$ = [9, n0, _GBA,
3000
+ { [_h]: ["GET", "/?abac", 200] }, () => GetBucketAbacRequest$, () => GetBucketAbacOutput$
3001
+ ];
3002
+ export var GetBucketAccelerateConfiguration$ = [9, n0, _GBAC,
3003
+ { [_h]: ["GET", "/?accelerate", 200] }, () => GetBucketAccelerateConfigurationRequest$, () => GetBucketAccelerateConfigurationOutput$
3004
+ ];
3005
+ export var GetBucketAcl$ = [9, n0, _GBAe,
3006
+ { [_h]: ["GET", "/?acl", 200] }, () => GetBucketAclRequest$, () => GetBucketAclOutput$
3007
+ ];
3008
+ export var GetBucketAnalyticsConfiguration$ = [9, n0, _GBACe,
3009
+ { [_h]: ["GET", "/?analytics&x-id=GetBucketAnalyticsConfiguration", 200] }, () => GetBucketAnalyticsConfigurationRequest$, () => GetBucketAnalyticsConfigurationOutput$
3010
+ ];
3011
+ export var GetBucketCors$ = [9, n0, _GBC,
3012
+ { [_h]: ["GET", "/?cors", 200] }, () => GetBucketCorsRequest$, () => GetBucketCorsOutput$
3013
+ ];
3014
+ export var GetBucketEncryption$ = [9, n0, _GBE,
3015
+ { [_h]: ["GET", "/?encryption", 200] }, () => GetBucketEncryptionRequest$, () => GetBucketEncryptionOutput$
3016
+ ];
3017
+ export var GetBucketIntelligentTieringConfiguration$ = [9, n0, _GBITC,
3018
+ { [_h]: ["GET", "/?intelligent-tiering&x-id=GetBucketIntelligentTieringConfiguration", 200] }, () => GetBucketIntelligentTieringConfigurationRequest$, () => GetBucketIntelligentTieringConfigurationOutput$
3019
+ ];
3020
+ export var GetBucketInventoryConfiguration$ = [9, n0, _GBIC,
3021
+ { [_h]: ["GET", "/?inventory&x-id=GetBucketInventoryConfiguration", 200] }, () => GetBucketInventoryConfigurationRequest$, () => GetBucketInventoryConfigurationOutput$
3022
+ ];
3023
+ export var GetBucketLifecycleConfiguration$ = [9, n0, _GBLC,
3024
+ { [_h]: ["GET", "/?lifecycle", 200] }, () => GetBucketLifecycleConfigurationRequest$, () => GetBucketLifecycleConfigurationOutput$
3025
+ ];
3026
+ export var GetBucketLocation$ = [9, n0, _GBL,
3027
+ { [_h]: ["GET", "/?location", 200] }, () => GetBucketLocationRequest$, () => GetBucketLocationOutput$
3028
+ ];
3029
+ export var GetBucketLogging$ = [9, n0, _GBLe,
3030
+ { [_h]: ["GET", "/?logging", 200] }, () => GetBucketLoggingRequest$, () => GetBucketLoggingOutput$
3031
+ ];
3032
+ export var GetBucketMetadataConfiguration$ = [9, n0, _GBMC,
3033
+ { [_h]: ["GET", "/?metadataConfiguration", 200] }, () => GetBucketMetadataConfigurationRequest$, () => GetBucketMetadataConfigurationOutput$
3034
+ ];
3035
+ export var GetBucketMetadataTableConfiguration$ = [9, n0, _GBMTC,
3036
+ { [_h]: ["GET", "/?metadataTable", 200] }, () => GetBucketMetadataTableConfigurationRequest$, () => GetBucketMetadataTableConfigurationOutput$
3037
+ ];
3038
+ export var GetBucketMetricsConfiguration$ = [9, n0, _GBMCe,
3039
+ { [_h]: ["GET", "/?metrics&x-id=GetBucketMetricsConfiguration", 200] }, () => GetBucketMetricsConfigurationRequest$, () => GetBucketMetricsConfigurationOutput$
3040
+ ];
3041
+ export var GetBucketNotificationConfiguration$ = [9, n0, _GBNC,
3042
+ { [_h]: ["GET", "/?notification", 200] }, () => GetBucketNotificationConfigurationRequest$, () => NotificationConfiguration$
3043
+ ];
3044
+ export var GetBucketOwnershipControls$ = [9, n0, _GBOC,
3045
+ { [_h]: ["GET", "/?ownershipControls", 200] }, () => GetBucketOwnershipControlsRequest$, () => GetBucketOwnershipControlsOutput$
3046
+ ];
3047
+ export var GetBucketPolicy$ = [9, n0, _GBP,
3048
+ { [_h]: ["GET", "/?policy", 200] }, () => GetBucketPolicyRequest$, () => GetBucketPolicyOutput$
3049
+ ];
3050
+ export var GetBucketPolicyStatus$ = [9, n0, _GBPS,
3051
+ { [_h]: ["GET", "/?policyStatus", 200] }, () => GetBucketPolicyStatusRequest$, () => GetBucketPolicyStatusOutput$
3052
+ ];
3053
+ export var GetBucketReplication$ = [9, n0, _GBR,
3054
+ { [_h]: ["GET", "/?replication", 200] }, () => GetBucketReplicationRequest$, () => GetBucketReplicationOutput$
3055
+ ];
3056
+ export var GetBucketRequestPayment$ = [9, n0, _GBRP,
3057
+ { [_h]: ["GET", "/?requestPayment", 200] }, () => GetBucketRequestPaymentRequest$, () => GetBucketRequestPaymentOutput$
3058
+ ];
3059
+ export var GetBucketTagging$ = [9, n0, _GBT,
3060
+ { [_h]: ["GET", "/?tagging", 200] }, () => GetBucketTaggingRequest$, () => GetBucketTaggingOutput$
3061
+ ];
3062
+ export var GetBucketVersioning$ = [9, n0, _GBV,
3063
+ { [_h]: ["GET", "/?versioning", 200] }, () => GetBucketVersioningRequest$, () => GetBucketVersioningOutput$
3064
+ ];
3065
+ export var GetBucketWebsite$ = [9, n0, _GBW,
3066
+ { [_h]: ["GET", "/?website", 200] }, () => GetBucketWebsiteRequest$, () => GetBucketWebsiteOutput$
3067
+ ];
3068
+ export var GetObject$ = [9, n0, _GO,
3069
+ { [_hC]: "-", [_h]: ["GET", "/{Key+}?x-id=GetObject", 200] }, () => GetObjectRequest$, () => GetObjectOutput$
3070
+ ];
3071
+ export var GetObjectAcl$ = [9, n0, _GOA,
3072
+ { [_h]: ["GET", "/{Key+}?acl", 200] }, () => GetObjectAclRequest$, () => GetObjectAclOutput$
3073
+ ];
3074
+ export var GetObjectAttributes$ = [9, n0, _GOAe,
3075
+ { [_h]: ["GET", "/{Key+}?attributes", 200] }, () => GetObjectAttributesRequest$, () => GetObjectAttributesOutput$
3076
+ ];
3077
+ export var GetObjectLegalHold$ = [9, n0, _GOLH,
3078
+ { [_h]: ["GET", "/{Key+}?legal-hold", 200] }, () => GetObjectLegalHoldRequest$, () => GetObjectLegalHoldOutput$
3079
+ ];
3080
+ export var GetObjectLockConfiguration$ = [9, n0, _GOLC,
3081
+ { [_h]: ["GET", "/?object-lock", 200] }, () => GetObjectLockConfigurationRequest$, () => GetObjectLockConfigurationOutput$
3082
+ ];
3083
+ export var GetObjectRetention$ = [9, n0, _GORe,
3084
+ { [_h]: ["GET", "/{Key+}?retention", 200] }, () => GetObjectRetentionRequest$, () => GetObjectRetentionOutput$
3085
+ ];
3086
+ export var GetObjectTagging$ = [9, n0, _GOT,
3087
+ { [_h]: ["GET", "/{Key+}?tagging", 200] }, () => GetObjectTaggingRequest$, () => GetObjectTaggingOutput$
3088
+ ];
3089
+ export var GetObjectTorrent$ = [9, n0, _GOTe,
3090
+ { [_h]: ["GET", "/{Key+}?torrent", 200] }, () => GetObjectTorrentRequest$, () => GetObjectTorrentOutput$
3091
+ ];
3092
+ export var GetPublicAccessBlock$ = [9, n0, _GPAB,
3093
+ { [_h]: ["GET", "/?publicAccessBlock", 200] }, () => GetPublicAccessBlockRequest$, () => GetPublicAccessBlockOutput$
3094
+ ];
3095
+ export var HeadBucket$ = [9, n0, _HB,
3096
+ { [_h]: ["HEAD", "/", 200] }, () => HeadBucketRequest$, () => HeadBucketOutput$
3097
+ ];
3098
+ export var HeadObject$ = [9, n0, _HO,
3099
+ { [_h]: ["HEAD", "/{Key+}", 200] }, () => HeadObjectRequest$, () => HeadObjectOutput$
3100
+ ];
3101
+ export var ListBucketAnalyticsConfigurations$ = [9, n0, _LBAC,
3102
+ { [_h]: ["GET", "/?analytics&x-id=ListBucketAnalyticsConfigurations", 200] }, () => ListBucketAnalyticsConfigurationsRequest$, () => ListBucketAnalyticsConfigurationsOutput$
3103
+ ];
3104
+ export var ListBucketIntelligentTieringConfigurations$ = [9, n0, _LBITC,
3105
+ { [_h]: ["GET", "/?intelligent-tiering&x-id=ListBucketIntelligentTieringConfigurations", 200] }, () => ListBucketIntelligentTieringConfigurationsRequest$, () => ListBucketIntelligentTieringConfigurationsOutput$
3106
+ ];
3107
+ export var ListBucketInventoryConfigurations$ = [9, n0, _LBIC,
3108
+ { [_h]: ["GET", "/?inventory&x-id=ListBucketInventoryConfigurations", 200] }, () => ListBucketInventoryConfigurationsRequest$, () => ListBucketInventoryConfigurationsOutput$
3109
+ ];
3110
+ export var ListBucketMetricsConfigurations$ = [9, n0, _LBMC,
3111
+ { [_h]: ["GET", "/?metrics&x-id=ListBucketMetricsConfigurations", 200] }, () => ListBucketMetricsConfigurationsRequest$, () => ListBucketMetricsConfigurationsOutput$
3112
+ ];
3113
+ export var ListBuckets$ = [9, n0, _LB,
3114
+ { [_h]: ["GET", "/?x-id=ListBuckets", 200] }, () => ListBucketsRequest$, () => ListBucketsOutput$
3115
+ ];
3116
+ export var ListDirectoryBuckets$ = [9, n0, _LDB,
3117
+ { [_h]: ["GET", "/?x-id=ListDirectoryBuckets", 200] }, () => ListDirectoryBucketsRequest$, () => ListDirectoryBucketsOutput$
3118
+ ];
3119
+ export var ListMultipartUploads$ = [9, n0, _LMU,
3120
+ { [_h]: ["GET", "/?uploads", 200] }, () => ListMultipartUploadsRequest$, () => ListMultipartUploadsOutput$
3121
+ ];
3122
+ export var ListObjects$ = [9, n0, _LO,
3123
+ { [_h]: ["GET", "/", 200] }, () => ListObjectsRequest$, () => ListObjectsOutput$
3124
+ ];
3125
+ export var ListObjectsV2$ = [9, n0, _LOV,
3126
+ { [_h]: ["GET", "/?list-type=2", 200] }, () => ListObjectsV2Request$, () => ListObjectsV2Output$
3127
+ ];
3128
+ export var ListObjectVersions$ = [9, n0, _LOVi,
3129
+ { [_h]: ["GET", "/?versions", 200] }, () => ListObjectVersionsRequest$, () => ListObjectVersionsOutput$
3130
+ ];
3131
+ export var ListParts$ = [9, n0, _LP,
3132
+ { [_h]: ["GET", "/{Key+}?x-id=ListParts", 200] }, () => ListPartsRequest$, () => ListPartsOutput$
3133
+ ];
3134
+ export var PutBucketAbac$ = [9, n0, _PBA,
3135
+ { [_hC]: "-", [_h]: ["PUT", "/?abac", 200] }, () => PutBucketAbacRequest$, () => __Unit
3136
+ ];
3137
+ export var PutBucketAccelerateConfiguration$ = [9, n0, _PBAC,
3138
+ { [_hC]: "-", [_h]: ["PUT", "/?accelerate", 200] }, () => PutBucketAccelerateConfigurationRequest$, () => __Unit
3139
+ ];
3140
+ export var PutBucketAcl$ = [9, n0, _PBAu,
3141
+ { [_hC]: "-", [_h]: ["PUT", "/?acl", 200] }, () => PutBucketAclRequest$, () => __Unit
3142
+ ];
3143
+ export var PutBucketAnalyticsConfiguration$ = [9, n0, _PBACu,
3144
+ { [_h]: ["PUT", "/?analytics", 200] }, () => PutBucketAnalyticsConfigurationRequest$, () => __Unit
3145
+ ];
3146
+ export var PutBucketCors$ = [9, n0, _PBC,
3147
+ { [_hC]: "-", [_h]: ["PUT", "/?cors", 200] }, () => PutBucketCorsRequest$, () => __Unit
3148
+ ];
3149
+ export var PutBucketEncryption$ = [9, n0, _PBE,
3150
+ { [_hC]: "-", [_h]: ["PUT", "/?encryption", 200] }, () => PutBucketEncryptionRequest$, () => __Unit
3151
+ ];
3152
+ export var PutBucketIntelligentTieringConfiguration$ = [9, n0, _PBITC,
3153
+ { [_h]: ["PUT", "/?intelligent-tiering", 200] }, () => PutBucketIntelligentTieringConfigurationRequest$, () => __Unit
3154
+ ];
3155
+ export var PutBucketInventoryConfiguration$ = [9, n0, _PBIC,
3156
+ { [_h]: ["PUT", "/?inventory", 200] }, () => PutBucketInventoryConfigurationRequest$, () => __Unit
3157
+ ];
3158
+ export var PutBucketLifecycleConfiguration$ = [9, n0, _PBLC,
3159
+ { [_hC]: "-", [_h]: ["PUT", "/?lifecycle", 200] }, () => PutBucketLifecycleConfigurationRequest$, () => PutBucketLifecycleConfigurationOutput$
3160
+ ];
3161
+ export var PutBucketLogging$ = [9, n0, _PBL,
3162
+ { [_hC]: "-", [_h]: ["PUT", "/?logging", 200] }, () => PutBucketLoggingRequest$, () => __Unit
3163
+ ];
3164
+ export var PutBucketMetricsConfiguration$ = [9, n0, _PBMC,
3165
+ { [_h]: ["PUT", "/?metrics", 200] }, () => PutBucketMetricsConfigurationRequest$, () => __Unit
3166
+ ];
3167
+ export var PutBucketNotificationConfiguration$ = [9, n0, _PBNC,
3168
+ { [_h]: ["PUT", "/?notification", 200] }, () => PutBucketNotificationConfigurationRequest$, () => __Unit
3169
+ ];
3170
+ export var PutBucketOwnershipControls$ = [9, n0, _PBOC,
3171
+ { [_hC]: "-", [_h]: ["PUT", "/?ownershipControls", 200] }, () => PutBucketOwnershipControlsRequest$, () => __Unit
3172
+ ];
3173
+ export var PutBucketPolicy$ = [9, n0, _PBP,
3174
+ { [_hC]: "-", [_h]: ["PUT", "/?policy", 200] }, () => PutBucketPolicyRequest$, () => __Unit
3175
+ ];
3176
+ export var PutBucketReplication$ = [9, n0, _PBR,
3177
+ { [_hC]: "-", [_h]: ["PUT", "/?replication", 200] }, () => PutBucketReplicationRequest$, () => __Unit
3178
+ ];
3179
+ export var PutBucketRequestPayment$ = [9, n0, _PBRP,
3180
+ { [_hC]: "-", [_h]: ["PUT", "/?requestPayment", 200] }, () => PutBucketRequestPaymentRequest$, () => __Unit
3181
+ ];
3182
+ export var PutBucketTagging$ = [9, n0, _PBT,
3183
+ { [_hC]: "-", [_h]: ["PUT", "/?tagging", 200] }, () => PutBucketTaggingRequest$, () => __Unit
3184
+ ];
3185
+ export var PutBucketVersioning$ = [9, n0, _PBV,
3186
+ { [_hC]: "-", [_h]: ["PUT", "/?versioning", 200] }, () => PutBucketVersioningRequest$, () => __Unit
3187
+ ];
3188
+ export var PutBucketWebsite$ = [9, n0, _PBW,
3189
+ { [_hC]: "-", [_h]: ["PUT", "/?website", 200] }, () => PutBucketWebsiteRequest$, () => __Unit
3190
+ ];
3191
+ export var PutObject$ = [9, n0, _PO,
3192
+ { [_hC]: "-", [_h]: ["PUT", "/{Key+}?x-id=PutObject", 200] }, () => PutObjectRequest$, () => PutObjectOutput$
3193
+ ];
3194
+ export var PutObjectAcl$ = [9, n0, _POA,
3195
+ { [_hC]: "-", [_h]: ["PUT", "/{Key+}?acl", 200] }, () => PutObjectAclRequest$, () => PutObjectAclOutput$
3196
+ ];
3197
+ export var PutObjectLegalHold$ = [9, n0, _POLH,
3198
+ { [_hC]: "-", [_h]: ["PUT", "/{Key+}?legal-hold", 200] }, () => PutObjectLegalHoldRequest$, () => PutObjectLegalHoldOutput$
3199
+ ];
3200
+ export var PutObjectLockConfiguration$ = [9, n0, _POLC,
3201
+ { [_hC]: "-", [_h]: ["PUT", "/?object-lock", 200] }, () => PutObjectLockConfigurationRequest$, () => PutObjectLockConfigurationOutput$
3202
+ ];
3203
+ export var PutObjectRetention$ = [9, n0, _PORu,
3204
+ { [_hC]: "-", [_h]: ["PUT", "/{Key+}?retention", 200] }, () => PutObjectRetentionRequest$, () => PutObjectRetentionOutput$
3205
+ ];
3206
+ export var PutObjectTagging$ = [9, n0, _POT,
3207
+ { [_hC]: "-", [_h]: ["PUT", "/{Key+}?tagging", 200] }, () => PutObjectTaggingRequest$, () => PutObjectTaggingOutput$
3208
+ ];
3209
+ export var PutPublicAccessBlock$ = [9, n0, _PPAB,
3210
+ { [_hC]: "-", [_h]: ["PUT", "/?publicAccessBlock", 200] }, () => PutPublicAccessBlockRequest$, () => __Unit
3211
+ ];
3212
+ export var RenameObject$ = [9, n0, _RO,
3213
+ { [_h]: ["PUT", "/{Key+}?renameObject", 200] }, () => RenameObjectRequest$, () => RenameObjectOutput$
3214
+ ];
3215
+ export var RestoreObject$ = [9, n0, _ROe,
3216
+ { [_hC]: "-", [_h]: ["POST", "/{Key+}?restore", 200] }, () => RestoreObjectRequest$, () => RestoreObjectOutput$
3217
+ ];
3218
+ export var SelectObjectContent$ = [9, n0, _SOC,
3219
+ { [_h]: ["POST", "/{Key+}?select&select-type=2", 200] }, () => SelectObjectContentRequest$, () => SelectObjectContentOutput$
3220
+ ];
3221
+ export var UpdateBucketMetadataInventoryTableConfiguration$ = [9, n0, _UBMITC,
3222
+ { [_hC]: "-", [_h]: ["PUT", "/?metadataInventoryTable", 200] }, () => UpdateBucketMetadataInventoryTableConfigurationRequest$, () => __Unit
3223
+ ];
3224
+ export var UpdateBucketMetadataJournalTableConfiguration$ = [9, n0, _UBMJTC,
3225
+ { [_hC]: "-", [_h]: ["PUT", "/?metadataJournalTable", 200] }, () => UpdateBucketMetadataJournalTableConfigurationRequest$, () => __Unit
3226
+ ];
3227
+ export var UpdateObjectEncryption$ = [9, n0, _UOE,
3228
+ { [_hC]: "-", [_h]: ["PUT", "/{Key+}?encryption", 200] }, () => UpdateObjectEncryptionRequest$, () => UpdateObjectEncryptionResponse$
3229
+ ];
3230
+ export var UploadPart$ = [9, n0, _UP,
3231
+ { [_hC]: "-", [_h]: ["PUT", "/{Key+}?x-id=UploadPart", 200] }, () => UploadPartRequest$, () => UploadPartOutput$
3232
+ ];
3233
+ export var UploadPartCopy$ = [9, n0, _UPC,
3234
+ { [_h]: ["PUT", "/{Key+}?x-id=UploadPartCopy", 200] }, () => UploadPartCopyRequest$, () => UploadPartCopyOutput$
3235
+ ];
3236
+ export var WriteGetObjectResponse$ = [9, n0, _WGOR,
3237
+ { [_en]: ["{RequestRoute}."], [_h]: ["POST", "/WriteGetObjectResponse", 200] }, () => WriteGetObjectResponseRequest$, () => __Unit
3238
+ ];