@cdklabs/cdk-ssm-documents 0.0.64 → 0.0.66

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 (601) hide show
  1. package/.jsii +11 -11
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +2 -6
  117. package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +6 -11
  118. package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +56 -56
  119. package/node_modules/@aws-sdk/checksums/package.json +7 -7
  120. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  121. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +2 -5
  122. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +7 -11
  123. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +449 -469
  124. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +4 -8
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +59 -91
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +22 -26
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +30 -34
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +4 -7
  129. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +20 -24
  130. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +814 -533
  131. package/node_modules/@aws-sdk/client-cloudformation/package.json +9 -9
  132. package/node_modules/@aws-sdk/client-cloudwatch/README.md +21 -0
  133. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  134. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +2 -5
  135. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +7 -11
  136. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +255 -233
  137. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +4 -8
  138. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +93 -68
  139. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +25 -29
  140. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +33 -37
  141. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +4 -7
  142. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +20 -24
  143. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +476 -259
  144. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +6 -0
  145. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +16 -0
  146. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +16 -0
  147. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +16 -0
  148. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +3 -0
  149. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +68 -26
  150. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +73 -1
  151. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +21 -0
  152. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +5 -2
  153. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +161 -0
  154. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +105 -0
  155. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +91 -0
  156. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +3 -0
  157. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +74 -23
  158. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +90 -0
  159. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +12 -0
  160. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +51 -0
  161. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +18 -0
  162. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +53 -0
  163. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +53 -0
  164. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +49 -0
  165. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +3 -0
  166. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +40 -16
  167. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +17 -0
  168. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
  169. package/node_modules/@aws-sdk/client-cloudwatch/package.json +13 -13
  170. package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
  171. package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  172. package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +2 -5
  173. package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +7 -11
  174. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +2903 -2879
  175. package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +4 -8
  176. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +22 -26
  177. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +30 -34
  178. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +4 -7
  179. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +20 -24
  180. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +6980 -4554
  181. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +4 -0
  182. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
  183. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
  184. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
  185. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +5 -0
  186. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +108 -13
  187. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +14 -0
  188. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +4 -2
  189. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
  190. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -10
  191. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
  192. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
  193. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -2
  194. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +8 -0
  195. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +2 -1
  196. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +1 -2
  197. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
  198. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  199. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
  200. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +8 -0
  201. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
  202. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
  203. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -2
  204. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
  205. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
  206. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
  207. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -2
  208. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +0 -5
  209. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
  210. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
  211. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -2
  212. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
  213. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
  214. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
  215. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +1 -2
  216. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +0 -5
  217. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
  218. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +13 -0
  219. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +38 -23
  220. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +45 -128
  221. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +128 -48
  222. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +109 -161
  223. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +169 -219
  224. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +250 -353
  225. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +351 -182
  226. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +178 -2
  227. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +9 -0
  228. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +34 -0
  229. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
  230. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
  231. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
  232. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +4 -2
  233. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
  234. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +4 -2
  235. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
  236. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
  237. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
  238. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
  239. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +4 -2
  240. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
  241. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
  242. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -2
  243. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
  244. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
  245. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +4 -2
  246. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
  247. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
  248. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
  249. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +4 -2
  250. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
  251. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +7 -0
  252. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +9 -7
  253. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +13 -26
  254. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +29 -12
  255. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +25 -36
  256. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +40 -35
  257. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +49 -67
  258. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +66 -47
  259. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +40 -0
  260. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  261. package/node_modules/@aws-sdk/client-ec2/package.json +15 -15
  262. package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  263. package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +2 -5
  264. package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +7 -11
  265. package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +634 -654
  266. package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +4 -8
  267. package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +71 -109
  268. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +22 -26
  269. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +30 -34
  270. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +4 -7
  271. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +20 -24
  272. package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +1006 -665
  273. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +18 -3
  274. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +17 -2
  275. package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -2
  276. package/node_modules/@aws-sdk/client-iam/package.json +14 -14
  277. package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  278. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +2 -5
  279. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +7 -11
  280. package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +368 -386
  281. package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +4 -8
  282. package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +229 -145
  283. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +24 -28
  284. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +32 -36
  285. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +4 -7
  286. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +20 -24
  287. package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +959 -581
  288. package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +2 -0
  289. package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +134 -0
  290. package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +100 -31
  291. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +5 -2
  292. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -0
  293. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +28 -28
  294. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +14 -14
  295. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -0
  296. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +16 -16
  297. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -0
  298. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -0
  299. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +16 -16
  300. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -0
  301. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +8 -8
  302. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +8 -8
  303. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +4 -4
  304. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +4 -4
  305. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +1 -1
  306. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +72 -0
  307. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +21 -0
  308. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +6 -0
  309. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +16 -16
  310. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +8 -8
  311. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -6
  312. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +6 -6
  313. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +8 -8
  314. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +8 -8
  315. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +8 -8
  316. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
  317. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -0
  318. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +3 -0
  319. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -0
  320. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +3 -0
  321. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +32 -32
  322. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -12
  323. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +9 -9
  324. package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +2 -0
  325. package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +173 -0
  326. package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +158 -158
  327. package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +9 -0
  328. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +2 -0
  329. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +88 -0
  330. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +33 -33
  331. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  332. package/node_modules/@aws-sdk/client-lambda/package.json +13 -13
  333. package/node_modules/@aws-sdk/client-s3/README.md +35 -0
  334. package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
  335. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +2 -5
  336. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +7 -11
  337. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +646 -535
  338. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +4 -8
  339. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +106 -52
  340. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +29 -33
  341. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +43 -47
  342. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +4 -7
  343. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +25 -29
  344. package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +1256 -740
  345. package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +12 -0
  346. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +23 -0
  347. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +28 -0
  348. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +23 -0
  349. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +29 -0
  350. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +27 -0
  351. package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
  352. package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +12 -1
  353. package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
  354. package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
  355. package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
  356. package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +260 -100
  357. package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +42 -0
  358. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +7 -2
  359. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +1 -0
  360. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +27 -0
  361. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +119 -0
  362. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +11 -0
  363. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -3
  364. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +141 -0
  365. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +138 -0
  366. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -3
  367. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +166 -0
  368. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +1 -1
  369. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -2
  370. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +110 -0
  371. package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
  372. package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +29 -2
  373. package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +76 -4
  374. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +925 -549
  375. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +380 -2
  376. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
  377. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
  378. package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
  379. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +98 -0
  380. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +30 -0
  381. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +53 -0
  382. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +61 -0
  383. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +53 -0
  384. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +61 -0
  385. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
  386. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
  387. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +49 -0
  388. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -0
  389. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +18 -3
  390. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +41 -3
  391. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +138 -64
  392. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +75 -5
  393. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
  394. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
  395. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
  396. package/node_modules/@aws-sdk/client-s3/package.json +21 -21
  397. package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  398. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +2 -5
  399. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +7 -11
  400. package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +174 -194
  401. package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +4 -8
  402. package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +69 -106
  403. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +22 -26
  404. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +30 -34
  405. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +4 -7
  406. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +20 -24
  407. package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +331 -218
  408. package/node_modules/@aws-sdk/client-sns/package.json +10 -10
  409. package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  410. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +2 -5
  411. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +7 -11
  412. package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +118 -138
  413. package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +4 -8
  414. package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +57 -88
  415. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +24 -28
  416. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +31 -35
  417. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +4 -7
  418. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +20 -24
  419. package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +222 -150
  420. package/node_modules/@aws-sdk/client-sqs/package.json +16 -16
  421. package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  422. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +2 -5
  423. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +7 -11
  424. package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +543 -563
  425. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +4 -8
  426. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +279 -423
  427. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +22 -26
  428. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +30 -34
  429. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +4 -7
  430. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +20 -24
  431. package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +1693 -1109
  432. package/node_modules/@aws-sdk/client-ssm/package.json +10 -10
  433. package/node_modules/@aws-sdk/core/dist-cjs/index.js +19 -2274
  434. package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
  435. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +297 -23
  436. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +327 -52
  437. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +297 -23
  438. package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +19 -21
  439. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +107 -109
  440. package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +2 -4
  441. package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
  442. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
  443. package/node_modules/@aws-sdk/core/dist-types/index.d.ts +5 -5
  444. package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +5 -5
  445. package/node_modules/@aws-sdk/core/package.json +12 -12
  446. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
  447. package/node_modules/@aws-sdk/credential-provider-env/package.json +7 -7
  448. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +3 -7
  449. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +12 -16
  450. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +16 -21
  451. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +14 -18
  452. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +1 -5
  453. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +2 -5
  454. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +2 -7
  455. package/node_modules/@aws-sdk/credential-provider-http/package.json +9 -8
  456. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -41
  457. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
  458. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
  459. package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
  460. package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -33
  461. package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
  462. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +16 -18
  463. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  464. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -13
  465. package/node_modules/@aws-sdk/credential-provider-process/package.json +7 -7
  466. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +26 -25
  467. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
  468. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +4 -1
  469. package/node_modules/@aws-sdk/credential-provider-sso/package.json +12 -10
  470. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +10 -14
  471. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +2 -6
  472. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +3 -27
  473. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +8 -8
  474. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +18 -23
  475. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +6 -6
  476. package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +11 -13
  477. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +7 -7
  478. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -518
  479. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +31 -33
  480. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +37 -39
  481. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +14 -16
  482. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -1
  483. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -2
  484. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +2 -2
  485. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +17 -14
  486. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +7 -0
  487. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
  488. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +7 -0
  489. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
  490. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -11
  491. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +7 -7
  492. package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
  493. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +82 -84
  494. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +158 -119
  495. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +80 -82
  496. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +80 -82
  497. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +99 -101
  498. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +4 -1
  499. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +70 -35
  500. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
  501. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
  502. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
  503. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
  504. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
  505. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
  506. package/node_modules/@aws-sdk/nested-clients/package.json +11 -10
  507. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +4 -6
  508. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +9 -8
  509. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -28
  510. package/node_modules/@aws-sdk/token-providers/package.json +8 -8
  511. package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
  512. package/node_modules/@aws-sdk/types/package.json +5 -5
  513. package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -2
  514. package/node_modules/@aws-sdk/util-locate-window/package.json +5 -5
  515. package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +2 -4
  516. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +4 -7
  517. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +2 -5
  518. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +7 -10
  519. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +8 -0
  520. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +9 -0
  521. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +7 -3
  522. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +9 -1
  523. package/node_modules/@aws-sdk/xml-builder/package.json +5 -5
  524. package/node_modules/@nodable/entities/package.json +4 -1
  525. package/node_modules/@nodable/entities/src/EntityDecoder.js +104 -3
  526. package/node_modules/@nodable/entities/src/index.d.ts +77 -0
  527. package/node_modules/@nodable/entities/src/index.js +1 -1
  528. package/node_modules/@smithy/core/dist-cjs/index.js +13 -15
  529. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +543 -398
  530. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +2 -4
  531. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +7 -9
  532. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +3 -5
  533. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +23 -24
  534. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +10 -11
  535. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +38 -39
  536. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +10 -11
  537. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +14 -17
  538. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +20 -23
  539. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +9 -11
  540. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -13
  541. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +68 -61
  542. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +26 -27
  543. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +28 -29
  544. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +5 -7
  545. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +4 -6
  546. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +23 -25
  547. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +4 -6
  548. package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +2 -4
  549. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
  550. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +1 -1
  551. package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +1 -1
  552. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +326 -269
  553. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +192 -103
  554. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
  555. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +1 -1
  556. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +1 -1
  557. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -2
  558. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +2 -2
  559. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +1 -1
  560. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +4 -0
  561. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
  562. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
  563. package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
  564. package/node_modules/@smithy/core/package.json +18 -17
  565. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +23 -24
  566. package/node_modules/@smithy/credential-provider-imds/package.json +7 -7
  567. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -8
  568. package/node_modules/@smithy/fetch-http-handler/package.json +10 -10
  569. package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.browser.js +3 -7
  570. package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.js +2 -6
  571. package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.browser.js +4 -8
  572. package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.js +7 -11
  573. package/node_modules/@smithy/middleware-compression/dist-cjs/index.js +18 -20
  574. package/node_modules/@smithy/middleware-compression/package.json +6 -6
  575. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +11 -13
  576. package/node_modules/@smithy/node-http-handler/package.json +8 -8
  577. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +27 -29
  578. package/node_modules/@smithy/signature-v4/package.json +7 -7
  579. package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
  580. package/node_modules/@smithy/types/package.json +10 -10
  581. package/node_modules/anynum/LICENSE +21 -0
  582. package/node_modules/anynum/README.md +142 -0
  583. package/node_modules/anynum/anynum.js +135 -0
  584. package/node_modules/anynum/digitTable.js +116 -0
  585. package/node_modules/anynum/package.json +42 -0
  586. package/node_modules/path-expression-matcher/README.md +82 -7
  587. package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
  588. package/node_modules/path-expression-matcher/lib/pem.d.cts +83 -2
  589. package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
  590. package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
  591. package/node_modules/path-expression-matcher/package.json +3 -2
  592. package/node_modules/path-expression-matcher/src/ExpressionSet.js +18 -2
  593. package/node_modules/path-expression-matcher/src/Matcher.js +93 -3
  594. package/node_modules/path-expression-matcher/src/index.d.ts +67 -1
  595. package/package.json +10 -10
  596. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
  597. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +0 -34
  598. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +0 -1
  599. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +0 -2
  600. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +0 -39
  601. /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
@@ -1,9 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateTopicResponse$ = exports.CreateTopicInput$ = exports.CreateSMSSandboxPhoneNumberResult$ = exports.CreateSMSSandboxPhoneNumberInput$ = exports.CreatePlatformEndpointInput$ = exports.CreatePlatformApplicationResponse$ = exports.CreatePlatformApplicationInput$ = exports.CreateEndpointResponse$ = exports.ConfirmSubscriptionResponse$ = exports.ConfirmSubscriptionInput$ = exports.CheckIfPhoneNumberIsOptedOutResponse$ = exports.CheckIfPhoneNumberIsOptedOutInput$ = exports.BatchResultErrorEntry$ = exports.AddPermissionInput$ = exports.errorTypeRegistries = exports.VerificationException$ = exports.ValidationException$ = exports.UserErrorException$ = exports.TopicLimitExceededException$ = exports.TooManyEntriesInBatchRequestException$ = exports.ThrottledException$ = exports.TagPolicyException$ = exports.TagLimitExceededException$ = exports.SubscriptionLimitExceededException$ = exports.StaleTagException$ = exports.ResourceNotFoundException$ = exports.ReplayLimitExceededException$ = exports.PlatformApplicationDisabledException$ = exports.OptedOutException$ = exports.NotFoundException$ = exports.KMSThrottlingException$ = exports.KMSOptInRequired$ = exports.KMSNotFoundException$ = exports.KMSInvalidStateException$ = exports.KMSDisabledException$ = exports.KMSAccessDeniedException$ = exports.InvalidStateException$ = exports.InvalidSecurityException$ = exports.InvalidParameterValueException$ = exports.InvalidParameterException$ = exports.InvalidBatchEntryIdException$ = exports.InternalErrorException$ = exports.FilterPolicyLimitExceededException$ = exports.EndpointDisabledException$ = exports.EmptyBatchRequestException$ = exports.ConcurrentAccessException$ = exports.BatchRequestTooLongException$ = exports.BatchEntryIdsNotDistinctException$ = exports.AuthorizationErrorException$ = exports.SNSServiceException$ = void 0;
4
- exports.PutDataProtectionPolicyInput$ = exports.PublishResponse$ = exports.PublishInput$ = exports.PublishBatchResultEntry$ = exports.PublishBatchResponse$ = exports.PublishBatchRequestEntry$ = exports.PublishBatchInput$ = exports.PlatformApplication$ = exports.PhoneNumberInformation$ = exports.OptInPhoneNumberResponse$ = exports.OptInPhoneNumberInput$ = exports.MessageAttributeValue$ = exports.ListTopicsResponse$ = exports.ListTopicsInput$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListSubscriptionsResponse$ = exports.ListSubscriptionsInput$ = exports.ListSubscriptionsByTopicResponse$ = exports.ListSubscriptionsByTopicInput$ = exports.ListSMSSandboxPhoneNumbersResult$ = exports.ListSMSSandboxPhoneNumbersInput$ = exports.ListPlatformApplicationsResponse$ = exports.ListPlatformApplicationsInput$ = exports.ListPhoneNumbersOptedOutResponse$ = exports.ListPhoneNumbersOptedOutInput$ = exports.ListOriginationNumbersResult$ = exports.ListOriginationNumbersRequest$ = exports.ListEndpointsByPlatformApplicationResponse$ = exports.ListEndpointsByPlatformApplicationInput$ = exports.GetTopicAttributesResponse$ = exports.GetTopicAttributesInput$ = exports.GetSubscriptionAttributesResponse$ = exports.GetSubscriptionAttributesInput$ = exports.GetSMSSandboxAccountStatusResult$ = exports.GetSMSSandboxAccountStatusInput$ = exports.GetSMSAttributesResponse$ = exports.GetSMSAttributesInput$ = exports.GetPlatformApplicationAttributesResponse$ = exports.GetPlatformApplicationAttributesInput$ = exports.GetEndpointAttributesResponse$ = exports.GetEndpointAttributesInput$ = exports.GetDataProtectionPolicyResponse$ = exports.GetDataProtectionPolicyInput$ = exports.Endpoint$ = exports.DeleteTopicInput$ = exports.DeleteSMSSandboxPhoneNumberResult$ = exports.DeleteSMSSandboxPhoneNumberInput$ = exports.DeletePlatformApplicationInput$ = exports.DeleteEndpointInput$ = void 0;
5
- exports.PublishBatch$ = exports.Publish$ = exports.OptInPhoneNumber$ = exports.ListTopics$ = exports.ListTagsForResource$ = exports.ListSubscriptionsByTopic$ = exports.ListSubscriptions$ = exports.ListSMSSandboxPhoneNumbers$ = exports.ListPlatformApplications$ = exports.ListPhoneNumbersOptedOut$ = exports.ListOriginationNumbers$ = exports.ListEndpointsByPlatformApplication$ = exports.GetTopicAttributes$ = exports.GetSubscriptionAttributes$ = exports.GetSMSSandboxAccountStatus$ = exports.GetSMSAttributes$ = exports.GetPlatformApplicationAttributes$ = exports.GetEndpointAttributes$ = exports.GetDataProtectionPolicy$ = exports.DeleteTopic$ = exports.DeleteSMSSandboxPhoneNumber$ = exports.DeletePlatformApplication$ = exports.DeleteEndpoint$ = exports.CreateTopic$ = exports.CreateSMSSandboxPhoneNumber$ = exports.CreatePlatformEndpoint$ = exports.CreatePlatformApplication$ = exports.ConfirmSubscription$ = exports.CheckIfPhoneNumberIsOptedOut$ = exports.AddPermission$ = exports.VerifySMSSandboxPhoneNumberResult$ = exports.VerifySMSSandboxPhoneNumberInput$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.UnsubscribeInput$ = exports.Topic$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.Subscription$ = exports.SubscribeResponse$ = exports.SubscribeInput$ = exports.SMSSandboxPhoneNumber$ = exports.SetTopicAttributesInput$ = exports.SetSubscriptionAttributesInput$ = exports.SetSMSAttributesResponse$ = exports.SetSMSAttributesInput$ = exports.SetPlatformApplicationAttributesInput$ = exports.SetEndpointAttributesInput$ = exports.RemovePermissionInput$ = void 0;
6
- exports.VerifySMSSandboxPhoneNumber$ = exports.UntagResource$ = exports.Unsubscribe$ = exports.TagResource$ = exports.Subscribe$ = exports.SetTopicAttributes$ = exports.SetSubscriptionAttributes$ = exports.SetSMSAttributes$ = exports.SetPlatformApplicationAttributes$ = exports.SetEndpointAttributes$ = exports.RemovePermission$ = exports.PutDataProtectionPolicy$ = void 0;
7
1
  const _A = "Attributes";
8
2
  const _AEE = "AuthorizationErrorException";
9
3
  const _AN = "ActionName";
@@ -249,659 +243,778 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.sns";
249
243
  const _se = "server";
250
244
  const _xN = "xmlName";
251
245
  const n0 = "com.amazonaws.sns";
252
- const schema_1 = require("@smithy/core/schema");
253
- const errors_1 = require("../models/errors");
254
- const SNSServiceException_1 = require("../models/SNSServiceException");
255
- const _s_registry = schema_1.TypeRegistry.for(_s);
256
- exports.SNSServiceException$ = [-3, _s, "SNSServiceException", 0, [], []];
257
- _s_registry.registerError(exports.SNSServiceException$, SNSServiceException_1.SNSServiceException);
258
- const n0_registry = schema_1.TypeRegistry.for(n0);
259
- exports.AuthorizationErrorException$ = [-3, n0, _AEE,
246
+ const { TypeRegistry } = require("@smithy/core/schema");
247
+ const { AuthorizationErrorException, BatchEntryIdsNotDistinctException, BatchRequestTooLongException, ConcurrentAccessException, EmptyBatchRequestException, EndpointDisabledException, FilterPolicyLimitExceededException, InternalErrorException, InvalidBatchEntryIdException, InvalidParameterException, InvalidParameterValueException, InvalidSecurityException, InvalidStateException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, KMSOptInRequired, KMSThrottlingException, NotFoundException, OptedOutException, PlatformApplicationDisabledException, ReplayLimitExceededException, ResourceNotFoundException, StaleTagException, SubscriptionLimitExceededException, TagLimitExceededException, TagPolicyException, ThrottledException, TooManyEntriesInBatchRequestException, TopicLimitExceededException, UserErrorException, ValidationException, VerificationException } = require("../models/errors");
248
+ const { SNSServiceException } = require("../models/SNSServiceException");
249
+ const _s_registry = TypeRegistry.for(_s);
250
+ const SNSServiceException$ = [-3, _s, "SNSServiceException", 0, [], []];
251
+ exports.SNSServiceException$ = SNSServiceException$;
252
+ _s_registry.registerError(SNSServiceException$, SNSServiceException);
253
+ const n0_registry = TypeRegistry.for(n0);
254
+ const AuthorizationErrorException$ = [-3, n0, _AEE,
260
255
  { [_aQE]: [`AuthorizationError`, 403], [_e]: _c, [_hE]: 403 },
261
256
  [_m],
262
257
  [0]
263
258
  ];
264
- n0_registry.registerError(exports.AuthorizationErrorException$, errors_1.AuthorizationErrorException);
265
- exports.BatchEntryIdsNotDistinctException$ = [-3, n0, _BEINDE,
259
+ exports.AuthorizationErrorException$ = AuthorizationErrorException$;
260
+ n0_registry.registerError(AuthorizationErrorException$, AuthorizationErrorException);
261
+ const BatchEntryIdsNotDistinctException$ = [-3, n0, _BEINDE,
266
262
  { [_aQE]: [`BatchEntryIdsNotDistinct`, 400], [_e]: _c, [_hE]: 400 },
267
263
  [_m],
268
264
  [0]
269
265
  ];
270
- n0_registry.registerError(exports.BatchEntryIdsNotDistinctException$, errors_1.BatchEntryIdsNotDistinctException);
271
- exports.BatchRequestTooLongException$ = [-3, n0, _BRTLE,
266
+ exports.BatchEntryIdsNotDistinctException$ = BatchEntryIdsNotDistinctException$;
267
+ n0_registry.registerError(BatchEntryIdsNotDistinctException$, BatchEntryIdsNotDistinctException);
268
+ const BatchRequestTooLongException$ = [-3, n0, _BRTLE,
272
269
  { [_aQE]: [`BatchRequestTooLong`, 400], [_e]: _c, [_hE]: 400 },
273
270
  [_m],
274
271
  [0]
275
272
  ];
276
- n0_registry.registerError(exports.BatchRequestTooLongException$, errors_1.BatchRequestTooLongException);
277
- exports.ConcurrentAccessException$ = [-3, n0, _CAE,
273
+ exports.BatchRequestTooLongException$ = BatchRequestTooLongException$;
274
+ n0_registry.registerError(BatchRequestTooLongException$, BatchRequestTooLongException);
275
+ const ConcurrentAccessException$ = [-3, n0, _CAE,
278
276
  { [_aQE]: [`ConcurrentAccess`, 400], [_e]: _c, [_hE]: 400 },
279
277
  [_m],
280
278
  [0]
281
279
  ];
282
- n0_registry.registerError(exports.ConcurrentAccessException$, errors_1.ConcurrentAccessException);
283
- exports.EmptyBatchRequestException$ = [-3, n0, _EBRE,
280
+ exports.ConcurrentAccessException$ = ConcurrentAccessException$;
281
+ n0_registry.registerError(ConcurrentAccessException$, ConcurrentAccessException);
282
+ const EmptyBatchRequestException$ = [-3, n0, _EBRE,
284
283
  { [_aQE]: [`EmptyBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
285
284
  [_m],
286
285
  [0]
287
286
  ];
288
- n0_registry.registerError(exports.EmptyBatchRequestException$, errors_1.EmptyBatchRequestException);
289
- exports.EndpointDisabledException$ = [-3, n0, _EDE,
287
+ exports.EmptyBatchRequestException$ = EmptyBatchRequestException$;
288
+ n0_registry.registerError(EmptyBatchRequestException$, EmptyBatchRequestException);
289
+ const EndpointDisabledException$ = [-3, n0, _EDE,
290
290
  { [_aQE]: [`EndpointDisabled`, 400], [_e]: _c, [_hE]: 400 },
291
291
  [_m],
292
292
  [0]
293
293
  ];
294
- n0_registry.registerError(exports.EndpointDisabledException$, errors_1.EndpointDisabledException);
295
- exports.FilterPolicyLimitExceededException$ = [-3, n0, _FPLEE,
294
+ exports.EndpointDisabledException$ = EndpointDisabledException$;
295
+ n0_registry.registerError(EndpointDisabledException$, EndpointDisabledException);
296
+ const FilterPolicyLimitExceededException$ = [-3, n0, _FPLEE,
296
297
  { [_aQE]: [`FilterPolicyLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
297
298
  [_m],
298
299
  [0]
299
300
  ];
300
- n0_registry.registerError(exports.FilterPolicyLimitExceededException$, errors_1.FilterPolicyLimitExceededException);
301
- exports.InternalErrorException$ = [-3, n0, _IEE,
301
+ exports.FilterPolicyLimitExceededException$ = FilterPolicyLimitExceededException$;
302
+ n0_registry.registerError(FilterPolicyLimitExceededException$, FilterPolicyLimitExceededException);
303
+ const InternalErrorException$ = [-3, n0, _IEE,
302
304
  { [_aQE]: [`InternalError`, 500], [_e]: _se, [_hE]: 500 },
303
305
  [_m],
304
306
  [0]
305
307
  ];
306
- n0_registry.registerError(exports.InternalErrorException$, errors_1.InternalErrorException);
307
- exports.InvalidBatchEntryIdException$ = [-3, n0, _IBEIE,
308
+ exports.InternalErrorException$ = InternalErrorException$;
309
+ n0_registry.registerError(InternalErrorException$, InternalErrorException);
310
+ const InvalidBatchEntryIdException$ = [-3, n0, _IBEIE,
308
311
  { [_aQE]: [`InvalidBatchEntryId`, 400], [_e]: _c, [_hE]: 400 },
309
312
  [_m],
310
313
  [0]
311
314
  ];
312
- n0_registry.registerError(exports.InvalidBatchEntryIdException$, errors_1.InvalidBatchEntryIdException);
313
- exports.InvalidParameterException$ = [-3, n0, _IPE,
315
+ exports.InvalidBatchEntryIdException$ = InvalidBatchEntryIdException$;
316
+ n0_registry.registerError(InvalidBatchEntryIdException$, InvalidBatchEntryIdException);
317
+ const InvalidParameterException$ = [-3, n0, _IPE,
314
318
  { [_aQE]: [`InvalidParameter`, 400], [_e]: _c, [_hE]: 400 },
315
319
  [_m],
316
320
  [0]
317
321
  ];
318
- n0_registry.registerError(exports.InvalidParameterException$, errors_1.InvalidParameterException);
319
- exports.InvalidParameterValueException$ = [-3, n0, _IPVE,
322
+ exports.InvalidParameterException$ = InvalidParameterException$;
323
+ n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
324
+ const InvalidParameterValueException$ = [-3, n0, _IPVE,
320
325
  { [_aQE]: [`ParameterValueInvalid`, 400], [_e]: _c, [_hE]: 400 },
321
326
  [_m],
322
327
  [0]
323
328
  ];
324
- n0_registry.registerError(exports.InvalidParameterValueException$, errors_1.InvalidParameterValueException);
325
- exports.InvalidSecurityException$ = [-3, n0, _ISE,
329
+ exports.InvalidParameterValueException$ = InvalidParameterValueException$;
330
+ n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
331
+ const InvalidSecurityException$ = [-3, n0, _ISE,
326
332
  { [_aQE]: [`InvalidSecurity`, 403], [_e]: _c, [_hE]: 403 },
327
333
  [_m],
328
334
  [0]
329
335
  ];
330
- n0_registry.registerError(exports.InvalidSecurityException$, errors_1.InvalidSecurityException);
331
- exports.InvalidStateException$ = [-3, n0, _ISEn,
336
+ exports.InvalidSecurityException$ = InvalidSecurityException$;
337
+ n0_registry.registerError(InvalidSecurityException$, InvalidSecurityException);
338
+ const InvalidStateException$ = [-3, n0, _ISEn,
332
339
  { [_aQE]: [`InvalidState`, 400], [_e]: _c, [_hE]: 400 },
333
340
  [_m],
334
341
  [0]
335
342
  ];
336
- n0_registry.registerError(exports.InvalidStateException$, errors_1.InvalidStateException);
337
- exports.KMSAccessDeniedException$ = [-3, n0, _KMSADE,
343
+ exports.InvalidStateException$ = InvalidStateException$;
344
+ n0_registry.registerError(InvalidStateException$, InvalidStateException);
345
+ const KMSAccessDeniedException$ = [-3, n0, _KMSADE,
338
346
  { [_aQE]: [`KMSAccessDenied`, 400], [_e]: _c, [_hE]: 400 },
339
347
  [_m],
340
348
  [0]
341
349
  ];
342
- n0_registry.registerError(exports.KMSAccessDeniedException$, errors_1.KMSAccessDeniedException);
343
- exports.KMSDisabledException$ = [-3, n0, _KMSDE,
350
+ exports.KMSAccessDeniedException$ = KMSAccessDeniedException$;
351
+ n0_registry.registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
352
+ const KMSDisabledException$ = [-3, n0, _KMSDE,
344
353
  { [_aQE]: [`KMSDisabled`, 400], [_e]: _c, [_hE]: 400 },
345
354
  [_m],
346
355
  [0]
347
356
  ];
348
- n0_registry.registerError(exports.KMSDisabledException$, errors_1.KMSDisabledException);
349
- exports.KMSInvalidStateException$ = [-3, n0, _KMSISE,
357
+ exports.KMSDisabledException$ = KMSDisabledException$;
358
+ n0_registry.registerError(KMSDisabledException$, KMSDisabledException);
359
+ const KMSInvalidStateException$ = [-3, n0, _KMSISE,
350
360
  { [_aQE]: [`KMSInvalidState`, 400], [_e]: _c, [_hE]: 400 },
351
361
  [_m],
352
362
  [0]
353
363
  ];
354
- n0_registry.registerError(exports.KMSInvalidStateException$, errors_1.KMSInvalidStateException);
355
- exports.KMSNotFoundException$ = [-3, n0, _KMSNFE,
364
+ exports.KMSInvalidStateException$ = KMSInvalidStateException$;
365
+ n0_registry.registerError(KMSInvalidStateException$, KMSInvalidStateException);
366
+ const KMSNotFoundException$ = [-3, n0, _KMSNFE,
356
367
  { [_aQE]: [`KMSNotFound`, 400], [_e]: _c, [_hE]: 400 },
357
368
  [_m],
358
369
  [0]
359
370
  ];
360
- n0_registry.registerError(exports.KMSNotFoundException$, errors_1.KMSNotFoundException);
361
- exports.KMSOptInRequired$ = [-3, n0, _KMSOIR,
371
+ exports.KMSNotFoundException$ = KMSNotFoundException$;
372
+ n0_registry.registerError(KMSNotFoundException$, KMSNotFoundException);
373
+ const KMSOptInRequired$ = [-3, n0, _KMSOIR,
362
374
  { [_aQE]: [`KMSOptInRequired`, 403], [_e]: _c, [_hE]: 403 },
363
375
  [_m],
364
376
  [0]
365
377
  ];
366
- n0_registry.registerError(exports.KMSOptInRequired$, errors_1.KMSOptInRequired);
367
- exports.KMSThrottlingException$ = [-3, n0, _KMSTE,
378
+ exports.KMSOptInRequired$ = KMSOptInRequired$;
379
+ n0_registry.registerError(KMSOptInRequired$, KMSOptInRequired);
380
+ const KMSThrottlingException$ = [-3, n0, _KMSTE,
368
381
  { [_aQE]: [`KMSThrottling`, 400], [_e]: _c, [_hE]: 400 },
369
382
  [_m],
370
383
  [0]
371
384
  ];
372
- n0_registry.registerError(exports.KMSThrottlingException$, errors_1.KMSThrottlingException);
373
- exports.NotFoundException$ = [-3, n0, _NFE,
385
+ exports.KMSThrottlingException$ = KMSThrottlingException$;
386
+ n0_registry.registerError(KMSThrottlingException$, KMSThrottlingException);
387
+ const NotFoundException$ = [-3, n0, _NFE,
374
388
  { [_aQE]: [`NotFound`, 404], [_e]: _c, [_hE]: 404 },
375
389
  [_m],
376
390
  [0]
377
391
  ];
378
- n0_registry.registerError(exports.NotFoundException$, errors_1.NotFoundException);
379
- exports.OptedOutException$ = [-3, n0, _OOE,
392
+ exports.NotFoundException$ = NotFoundException$;
393
+ n0_registry.registerError(NotFoundException$, NotFoundException);
394
+ const OptedOutException$ = [-3, n0, _OOE,
380
395
  { [_aQE]: [`OptedOut`, 400], [_e]: _c, [_hE]: 400 },
381
396
  [_m],
382
397
  [0]
383
398
  ];
384
- n0_registry.registerError(exports.OptedOutException$, errors_1.OptedOutException);
385
- exports.PlatformApplicationDisabledException$ = [-3, n0, _PADE,
399
+ exports.OptedOutException$ = OptedOutException$;
400
+ n0_registry.registerError(OptedOutException$, OptedOutException);
401
+ const PlatformApplicationDisabledException$ = [-3, n0, _PADE,
386
402
  { [_aQE]: [`PlatformApplicationDisabled`, 400], [_e]: _c, [_hE]: 400 },
387
403
  [_m],
388
404
  [0]
389
405
  ];
390
- n0_registry.registerError(exports.PlatformApplicationDisabledException$, errors_1.PlatformApplicationDisabledException);
391
- exports.ReplayLimitExceededException$ = [-3, n0, _RLEE,
406
+ exports.PlatformApplicationDisabledException$ = PlatformApplicationDisabledException$;
407
+ n0_registry.registerError(PlatformApplicationDisabledException$, PlatformApplicationDisabledException);
408
+ const ReplayLimitExceededException$ = [-3, n0, _RLEE,
392
409
  { [_aQE]: [`ReplayLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
393
410
  [_m],
394
411
  [0]
395
412
  ];
396
- n0_registry.registerError(exports.ReplayLimitExceededException$, errors_1.ReplayLimitExceededException);
397
- exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
413
+ exports.ReplayLimitExceededException$ = ReplayLimitExceededException$;
414
+ n0_registry.registerError(ReplayLimitExceededException$, ReplayLimitExceededException);
415
+ const ResourceNotFoundException$ = [-3, n0, _RNFE,
398
416
  { [_aQE]: [`ResourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
399
417
  [_m],
400
418
  [0]
401
419
  ];
402
- n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
403
- exports.StaleTagException$ = [-3, n0, _STE,
420
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
421
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
422
+ const StaleTagException$ = [-3, n0, _STE,
404
423
  { [_aQE]: [`StaleTag`, 400], [_e]: _c, [_hE]: 400 },
405
424
  [_m],
406
425
  [0]
407
426
  ];
408
- n0_registry.registerError(exports.StaleTagException$, errors_1.StaleTagException);
409
- exports.SubscriptionLimitExceededException$ = [-3, n0, _SLEE,
427
+ exports.StaleTagException$ = StaleTagException$;
428
+ n0_registry.registerError(StaleTagException$, StaleTagException);
429
+ const SubscriptionLimitExceededException$ = [-3, n0, _SLEE,
410
430
  { [_aQE]: [`SubscriptionLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
411
431
  [_m],
412
432
  [0]
413
433
  ];
414
- n0_registry.registerError(exports.SubscriptionLimitExceededException$, errors_1.SubscriptionLimitExceededException);
415
- exports.TagLimitExceededException$ = [-3, n0, _TLEE,
434
+ exports.SubscriptionLimitExceededException$ = SubscriptionLimitExceededException$;
435
+ n0_registry.registerError(SubscriptionLimitExceededException$, SubscriptionLimitExceededException);
436
+ const TagLimitExceededException$ = [-3, n0, _TLEE,
416
437
  { [_aQE]: [`TagLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
417
438
  [_m],
418
439
  [0]
419
440
  ];
420
- n0_registry.registerError(exports.TagLimitExceededException$, errors_1.TagLimitExceededException);
421
- exports.TagPolicyException$ = [-3, n0, _TPE,
441
+ exports.TagLimitExceededException$ = TagLimitExceededException$;
442
+ n0_registry.registerError(TagLimitExceededException$, TagLimitExceededException);
443
+ const TagPolicyException$ = [-3, n0, _TPE,
422
444
  { [_aQE]: [`TagPolicy`, 400], [_e]: _c, [_hE]: 400 },
423
445
  [_m],
424
446
  [0]
425
447
  ];
426
- n0_registry.registerError(exports.TagPolicyException$, errors_1.TagPolicyException);
427
- exports.ThrottledException$ = [-3, n0, _TE,
448
+ exports.TagPolicyException$ = TagPolicyException$;
449
+ n0_registry.registerError(TagPolicyException$, TagPolicyException);
450
+ const ThrottledException$ = [-3, n0, _TE,
428
451
  { [_aQE]: [`Throttled`, 429], [_e]: _c, [_hE]: 429 },
429
452
  [_m],
430
453
  [0]
431
454
  ];
432
- n0_registry.registerError(exports.ThrottledException$, errors_1.ThrottledException);
433
- exports.TooManyEntriesInBatchRequestException$ = [-3, n0, _TMEIBRE,
455
+ exports.ThrottledException$ = ThrottledException$;
456
+ n0_registry.registerError(ThrottledException$, ThrottledException);
457
+ const TooManyEntriesInBatchRequestException$ = [-3, n0, _TMEIBRE,
434
458
  { [_aQE]: [`TooManyEntriesInBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
435
459
  [_m],
436
460
  [0]
437
461
  ];
438
- n0_registry.registerError(exports.TooManyEntriesInBatchRequestException$, errors_1.TooManyEntriesInBatchRequestException);
439
- exports.TopicLimitExceededException$ = [-3, n0, _TLEEo,
462
+ exports.TooManyEntriesInBatchRequestException$ = TooManyEntriesInBatchRequestException$;
463
+ n0_registry.registerError(TooManyEntriesInBatchRequestException$, TooManyEntriesInBatchRequestException);
464
+ const TopicLimitExceededException$ = [-3, n0, _TLEEo,
440
465
  { [_aQE]: [`TopicLimitExceeded`, 403], [_e]: _c, [_hE]: 403 },
441
466
  [_m],
442
467
  [0]
443
468
  ];
444
- n0_registry.registerError(exports.TopicLimitExceededException$, errors_1.TopicLimitExceededException);
445
- exports.UserErrorException$ = [-3, n0, _UEE,
469
+ exports.TopicLimitExceededException$ = TopicLimitExceededException$;
470
+ n0_registry.registerError(TopicLimitExceededException$, TopicLimitExceededException);
471
+ const UserErrorException$ = [-3, n0, _UEE,
446
472
  { [_aQE]: [`UserError`, 400], [_e]: _c, [_hE]: 400 },
447
473
  [_m],
448
474
  [0]
449
475
  ];
450
- n0_registry.registerError(exports.UserErrorException$, errors_1.UserErrorException);
451
- exports.ValidationException$ = [-3, n0, _VE,
476
+ exports.UserErrorException$ = UserErrorException$;
477
+ n0_registry.registerError(UserErrorException$, UserErrorException);
478
+ const ValidationException$ = [-3, n0, _VE,
452
479
  { [_aQE]: [`ValidationException`, 400], [_e]: _c, [_hE]: 400 },
453
480
  [_M],
454
481
  [0], 1
455
482
  ];
456
- n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
457
- exports.VerificationException$ = [-3, n0, _VEe,
483
+ exports.ValidationException$ = ValidationException$;
484
+ n0_registry.registerError(ValidationException$, ValidationException);
485
+ const VerificationException$ = [-3, n0, _VEe,
458
486
  { [_e]: _c },
459
487
  [_M, _S],
460
488
  [0, 0], 2
461
489
  ];
462
- n0_registry.registerError(exports.VerificationException$, errors_1.VerificationException);
490
+ exports.VerificationException$ = VerificationException$;
491
+ n0_registry.registerError(VerificationException$, VerificationException);
463
492
  exports.errorTypeRegistries = [
464
493
  _s_registry,
465
494
  n0_registry,
466
495
  ];
467
496
  var PhoneNumber = [0, n0, _PN, 8, 0];
468
497
  var PhoneNumberString = [0, n0, _PNS, 8, 0];
469
- exports.AddPermissionInput$ = [3, n0, _API,
498
+ const AddPermissionInput$ = [3, n0, _API,
470
499
  0,
471
500
  [_TA, _L, _AWSAI, _AN],
472
501
  [0, 0, 64 | 0, 64 | 0], 4
473
502
  ];
474
- exports.BatchResultErrorEntry$ = [3, n0, _BREE,
503
+ exports.AddPermissionInput$ = AddPermissionInput$;
504
+ const BatchResultErrorEntry$ = [3, n0, _BREE,
475
505
  0,
476
506
  [_I, _C, _SF, _M],
477
507
  [0, 0, 2, 0], 3
478
508
  ];
479
- exports.CheckIfPhoneNumberIsOptedOutInput$ = [3, n0, _CIPNIOOI,
509
+ exports.BatchResultErrorEntry$ = BatchResultErrorEntry$;
510
+ const CheckIfPhoneNumberIsOptedOutInput$ = [3, n0, _CIPNIOOI,
480
511
  0,
481
512
  [_pN],
482
513
  [[() => PhoneNumber, 0]], 1
483
514
  ];
484
- exports.CheckIfPhoneNumberIsOptedOutResponse$ = [3, n0, _CIPNIOOR,
515
+ exports.CheckIfPhoneNumberIsOptedOutInput$ = CheckIfPhoneNumberIsOptedOutInput$;
516
+ const CheckIfPhoneNumberIsOptedOutResponse$ = [3, n0, _CIPNIOOR,
485
517
  0,
486
518
  [_iOO],
487
519
  [2]
488
520
  ];
489
- exports.ConfirmSubscriptionInput$ = [3, n0, _CSI,
521
+ exports.CheckIfPhoneNumberIsOptedOutResponse$ = CheckIfPhoneNumberIsOptedOutResponse$;
522
+ const ConfirmSubscriptionInput$ = [3, n0, _CSI,
490
523
  0,
491
524
  [_TA, _T, _AOU],
492
525
  [0, 0, 0], 2
493
526
  ];
494
- exports.ConfirmSubscriptionResponse$ = [3, n0, _CSR,
527
+ exports.ConfirmSubscriptionInput$ = ConfirmSubscriptionInput$;
528
+ const ConfirmSubscriptionResponse$ = [3, n0, _CSR,
495
529
  0,
496
530
  [_SA],
497
531
  [0]
498
532
  ];
499
- exports.CreateEndpointResponse$ = [3, n0, _CER,
533
+ exports.ConfirmSubscriptionResponse$ = ConfirmSubscriptionResponse$;
534
+ const CreateEndpointResponse$ = [3, n0, _CER,
500
535
  0,
501
536
  [_EA],
502
537
  [0]
503
538
  ];
504
- exports.CreatePlatformApplicationInput$ = [3, n0, _CPAI,
539
+ exports.CreateEndpointResponse$ = CreateEndpointResponse$;
540
+ const CreatePlatformApplicationInput$ = [3, n0, _CPAI,
505
541
  0,
506
542
  [_N, _P, _A],
507
543
  [0, 0, 128 | 0], 3
508
544
  ];
509
- exports.CreatePlatformApplicationResponse$ = [3, n0, _CPAR,
545
+ exports.CreatePlatformApplicationInput$ = CreatePlatformApplicationInput$;
546
+ const CreatePlatformApplicationResponse$ = [3, n0, _CPAR,
510
547
  0,
511
548
  [_PAA],
512
549
  [0]
513
550
  ];
514
- exports.CreatePlatformEndpointInput$ = [3, n0, _CPEI,
551
+ exports.CreatePlatformApplicationResponse$ = CreatePlatformApplicationResponse$;
552
+ const CreatePlatformEndpointInput$ = [3, n0, _CPEI,
515
553
  0,
516
554
  [_PAA, _T, _CUD, _A],
517
555
  [0, 0, 0, 128 | 0], 2
518
556
  ];
519
- exports.CreateSMSSandboxPhoneNumberInput$ = [3, n0, _CSMSSPNI,
557
+ exports.CreatePlatformEndpointInput$ = CreatePlatformEndpointInput$;
558
+ const CreateSMSSandboxPhoneNumberInput$ = [3, n0, _CSMSSPNI,
520
559
  0,
521
560
  [_PN, _LC],
522
561
  [[() => PhoneNumberString, 0], 0], 1
523
562
  ];
524
- exports.CreateSMSSandboxPhoneNumberResult$ = [3, n0, _CSMSSPNR,
563
+ exports.CreateSMSSandboxPhoneNumberInput$ = CreateSMSSandboxPhoneNumberInput$;
564
+ const CreateSMSSandboxPhoneNumberResult$ = [3, n0, _CSMSSPNR,
525
565
  0,
526
566
  [],
527
567
  []
528
568
  ];
529
- exports.CreateTopicInput$ = [3, n0, _CTI,
569
+ exports.CreateSMSSandboxPhoneNumberResult$ = CreateSMSSandboxPhoneNumberResult$;
570
+ const CreateTopicInput$ = [3, n0, _CTI,
530
571
  0,
531
572
  [_N, _A, _Ta, _DPP],
532
573
  [0, 128 | 0, () => TagList, 0], 1
533
574
  ];
534
- exports.CreateTopicResponse$ = [3, n0, _CTR,
575
+ exports.CreateTopicInput$ = CreateTopicInput$;
576
+ const CreateTopicResponse$ = [3, n0, _CTR,
535
577
  0,
536
578
  [_TA],
537
579
  [0]
538
580
  ];
539
- exports.DeleteEndpointInput$ = [3, n0, _DEI,
581
+ exports.CreateTopicResponse$ = CreateTopicResponse$;
582
+ const DeleteEndpointInput$ = [3, n0, _DEI,
540
583
  0,
541
584
  [_EA],
542
585
  [0], 1
543
586
  ];
544
- exports.DeletePlatformApplicationInput$ = [3, n0, _DPAI,
587
+ exports.DeleteEndpointInput$ = DeleteEndpointInput$;
588
+ const DeletePlatformApplicationInput$ = [3, n0, _DPAI,
545
589
  0,
546
590
  [_PAA],
547
591
  [0], 1
548
592
  ];
549
- exports.DeleteSMSSandboxPhoneNumberInput$ = [3, n0, _DSMSSPNI,
593
+ exports.DeletePlatformApplicationInput$ = DeletePlatformApplicationInput$;
594
+ const DeleteSMSSandboxPhoneNumberInput$ = [3, n0, _DSMSSPNI,
550
595
  0,
551
596
  [_PN],
552
597
  [[() => PhoneNumberString, 0]], 1
553
598
  ];
554
- exports.DeleteSMSSandboxPhoneNumberResult$ = [3, n0, _DSMSSPNR,
599
+ exports.DeleteSMSSandboxPhoneNumberInput$ = DeleteSMSSandboxPhoneNumberInput$;
600
+ const DeleteSMSSandboxPhoneNumberResult$ = [3, n0, _DSMSSPNR,
555
601
  0,
556
602
  [],
557
603
  []
558
604
  ];
559
- exports.DeleteTopicInput$ = [3, n0, _DTI,
605
+ exports.DeleteSMSSandboxPhoneNumberResult$ = DeleteSMSSandboxPhoneNumberResult$;
606
+ const DeleteTopicInput$ = [3, n0, _DTI,
560
607
  0,
561
608
  [_TA],
562
609
  [0], 1
563
610
  ];
564
- exports.Endpoint$ = [3, n0, _E,
611
+ exports.DeleteTopicInput$ = DeleteTopicInput$;
612
+ const Endpoint$ = [3, n0, _E,
565
613
  0,
566
614
  [_EA, _A],
567
615
  [0, 128 | 0]
568
616
  ];
569
- exports.GetDataProtectionPolicyInput$ = [3, n0, _GDPPI,
617
+ exports.Endpoint$ = Endpoint$;
618
+ const GetDataProtectionPolicyInput$ = [3, n0, _GDPPI,
570
619
  0,
571
620
  [_RA],
572
621
  [0], 1
573
622
  ];
574
- exports.GetDataProtectionPolicyResponse$ = [3, n0, _GDPPR,
623
+ exports.GetDataProtectionPolicyInput$ = GetDataProtectionPolicyInput$;
624
+ const GetDataProtectionPolicyResponse$ = [3, n0, _GDPPR,
575
625
  0,
576
626
  [_DPP],
577
627
  [0]
578
628
  ];
579
- exports.GetEndpointAttributesInput$ = [3, n0, _GEAI,
629
+ exports.GetDataProtectionPolicyResponse$ = GetDataProtectionPolicyResponse$;
630
+ const GetEndpointAttributesInput$ = [3, n0, _GEAI,
580
631
  0,
581
632
  [_EA],
582
633
  [0], 1
583
634
  ];
584
- exports.GetEndpointAttributesResponse$ = [3, n0, _GEAR,
635
+ exports.GetEndpointAttributesInput$ = GetEndpointAttributesInput$;
636
+ const GetEndpointAttributesResponse$ = [3, n0, _GEAR,
585
637
  0,
586
638
  [_A],
587
639
  [128 | 0]
588
640
  ];
589
- exports.GetPlatformApplicationAttributesInput$ = [3, n0, _GPAAI,
641
+ exports.GetEndpointAttributesResponse$ = GetEndpointAttributesResponse$;
642
+ const GetPlatformApplicationAttributesInput$ = [3, n0, _GPAAI,
590
643
  0,
591
644
  [_PAA],
592
645
  [0], 1
593
646
  ];
594
- exports.GetPlatformApplicationAttributesResponse$ = [3, n0, _GPAAR,
647
+ exports.GetPlatformApplicationAttributesInput$ = GetPlatformApplicationAttributesInput$;
648
+ const GetPlatformApplicationAttributesResponse$ = [3, n0, _GPAAR,
595
649
  0,
596
650
  [_A],
597
651
  [128 | 0]
598
652
  ];
599
- exports.GetSMSAttributesInput$ = [3, n0, _GSMSAI,
653
+ exports.GetPlatformApplicationAttributesResponse$ = GetPlatformApplicationAttributesResponse$;
654
+ const GetSMSAttributesInput$ = [3, n0, _GSMSAI,
600
655
  0,
601
656
  [_a],
602
657
  [64 | 0]
603
658
  ];
604
- exports.GetSMSAttributesResponse$ = [3, n0, _GSMSAR,
659
+ exports.GetSMSAttributesInput$ = GetSMSAttributesInput$;
660
+ const GetSMSAttributesResponse$ = [3, n0, _GSMSAR,
605
661
  0,
606
662
  [_a],
607
663
  [128 | 0]
608
664
  ];
609
- exports.GetSMSSandboxAccountStatusInput$ = [3, n0, _GSMSSASI,
665
+ exports.GetSMSAttributesResponse$ = GetSMSAttributesResponse$;
666
+ const GetSMSSandboxAccountStatusInput$ = [3, n0, _GSMSSASI,
610
667
  0,
611
668
  [],
612
669
  []
613
670
  ];
614
- exports.GetSMSSandboxAccountStatusResult$ = [3, n0, _GSMSSASR,
671
+ exports.GetSMSSandboxAccountStatusInput$ = GetSMSSandboxAccountStatusInput$;
672
+ const GetSMSSandboxAccountStatusResult$ = [3, n0, _GSMSSASR,
615
673
  0,
616
674
  [_IIS],
617
675
  [2], 1
618
676
  ];
619
- exports.GetSubscriptionAttributesInput$ = [3, n0, _GSAI,
677
+ exports.GetSMSSandboxAccountStatusResult$ = GetSMSSandboxAccountStatusResult$;
678
+ const GetSubscriptionAttributesInput$ = [3, n0, _GSAI,
620
679
  0,
621
680
  [_SA],
622
681
  [0], 1
623
682
  ];
624
- exports.GetSubscriptionAttributesResponse$ = [3, n0, _GSAR,
683
+ exports.GetSubscriptionAttributesInput$ = GetSubscriptionAttributesInput$;
684
+ const GetSubscriptionAttributesResponse$ = [3, n0, _GSAR,
625
685
  0,
626
686
  [_A],
627
687
  [128 | 0]
628
688
  ];
629
- exports.GetTopicAttributesInput$ = [3, n0, _GTAI,
689
+ exports.GetSubscriptionAttributesResponse$ = GetSubscriptionAttributesResponse$;
690
+ const GetTopicAttributesInput$ = [3, n0, _GTAI,
630
691
  0,
631
692
  [_TA],
632
693
  [0], 1
633
694
  ];
634
- exports.GetTopicAttributesResponse$ = [3, n0, _GTAR,
695
+ exports.GetTopicAttributesInput$ = GetTopicAttributesInput$;
696
+ const GetTopicAttributesResponse$ = [3, n0, _GTAR,
635
697
  0,
636
698
  [_A],
637
699
  [128 | 0]
638
700
  ];
639
- exports.ListEndpointsByPlatformApplicationInput$ = [3, n0, _LEBPAI,
701
+ exports.GetTopicAttributesResponse$ = GetTopicAttributesResponse$;
702
+ const ListEndpointsByPlatformApplicationInput$ = [3, n0, _LEBPAI,
640
703
  0,
641
704
  [_PAA, _NT],
642
705
  [0, 0], 1
643
706
  ];
644
- exports.ListEndpointsByPlatformApplicationResponse$ = [3, n0, _LEBPAR,
707
+ exports.ListEndpointsByPlatformApplicationInput$ = ListEndpointsByPlatformApplicationInput$;
708
+ const ListEndpointsByPlatformApplicationResponse$ = [3, n0, _LEBPAR,
645
709
  0,
646
710
  [_En, _NT],
647
711
  [() => ListOfEndpoints, 0]
648
712
  ];
649
- exports.ListOriginationNumbersRequest$ = [3, n0, _LONR,
713
+ exports.ListEndpointsByPlatformApplicationResponse$ = ListEndpointsByPlatformApplicationResponse$;
714
+ const ListOriginationNumbersRequest$ = [3, n0, _LONR,
650
715
  0,
651
716
  [_NT, _MR],
652
717
  [0, 1]
653
718
  ];
654
- exports.ListOriginationNumbersResult$ = [3, n0, _LONRi,
719
+ exports.ListOriginationNumbersRequest$ = ListOriginationNumbersRequest$;
720
+ const ListOriginationNumbersResult$ = [3, n0, _LONRi,
655
721
  0,
656
722
  [_NT, _PNh],
657
723
  [0, [() => PhoneNumberInformationList, 0]]
658
724
  ];
659
- exports.ListPhoneNumbersOptedOutInput$ = [3, n0, _LPNOOI,
725
+ exports.ListOriginationNumbersResult$ = ListOriginationNumbersResult$;
726
+ const ListPhoneNumbersOptedOutInput$ = [3, n0, _LPNOOI,
660
727
  0,
661
728
  [_nT],
662
729
  [0]
663
730
  ];
664
- exports.ListPhoneNumbersOptedOutResponse$ = [3, n0, _LPNOOR,
731
+ exports.ListPhoneNumbersOptedOutInput$ = ListPhoneNumbersOptedOutInput$;
732
+ const ListPhoneNumbersOptedOutResponse$ = [3, n0, _LPNOOR,
665
733
  0,
666
734
  [_pNh, _nT],
667
735
  [[() => PhoneNumberList, 0], 0]
668
736
  ];
669
- exports.ListPlatformApplicationsInput$ = [3, n0, _LPAI,
737
+ exports.ListPhoneNumbersOptedOutResponse$ = ListPhoneNumbersOptedOutResponse$;
738
+ const ListPlatformApplicationsInput$ = [3, n0, _LPAI,
670
739
  0,
671
740
  [_NT],
672
741
  [0]
673
742
  ];
674
- exports.ListPlatformApplicationsResponse$ = [3, n0, _LPAR,
743
+ exports.ListPlatformApplicationsInput$ = ListPlatformApplicationsInput$;
744
+ const ListPlatformApplicationsResponse$ = [3, n0, _LPAR,
675
745
  0,
676
746
  [_PA, _NT],
677
747
  [() => ListOfPlatformApplications, 0]
678
748
  ];
679
- exports.ListSMSSandboxPhoneNumbersInput$ = [3, n0, _LSMSSPNI,
749
+ exports.ListPlatformApplicationsResponse$ = ListPlatformApplicationsResponse$;
750
+ const ListSMSSandboxPhoneNumbersInput$ = [3, n0, _LSMSSPNI,
680
751
  0,
681
752
  [_NT, _MR],
682
753
  [0, 1]
683
754
  ];
684
- exports.ListSMSSandboxPhoneNumbersResult$ = [3, n0, _LSMSSPNR,
755
+ exports.ListSMSSandboxPhoneNumbersInput$ = ListSMSSandboxPhoneNumbersInput$;
756
+ const ListSMSSandboxPhoneNumbersResult$ = [3, n0, _LSMSSPNR,
685
757
  0,
686
758
  [_PNh, _NT],
687
759
  [[() => SMSSandboxPhoneNumberList, 0], 0], 1
688
760
  ];
689
- exports.ListSubscriptionsByTopicInput$ = [3, n0, _LSBTI,
761
+ exports.ListSMSSandboxPhoneNumbersResult$ = ListSMSSandboxPhoneNumbersResult$;
762
+ const ListSubscriptionsByTopicInput$ = [3, n0, _LSBTI,
690
763
  0,
691
764
  [_TA, _NT],
692
765
  [0, 0], 1
693
766
  ];
694
- exports.ListSubscriptionsByTopicResponse$ = [3, n0, _LSBTR,
767
+ exports.ListSubscriptionsByTopicInput$ = ListSubscriptionsByTopicInput$;
768
+ const ListSubscriptionsByTopicResponse$ = [3, n0, _LSBTR,
695
769
  0,
696
770
  [_Su, _NT],
697
771
  [() => SubscriptionsList, 0]
698
772
  ];
699
- exports.ListSubscriptionsInput$ = [3, n0, _LSI,
773
+ exports.ListSubscriptionsByTopicResponse$ = ListSubscriptionsByTopicResponse$;
774
+ const ListSubscriptionsInput$ = [3, n0, _LSI,
700
775
  0,
701
776
  [_NT],
702
777
  [0]
703
778
  ];
704
- exports.ListSubscriptionsResponse$ = [3, n0, _LSR,
779
+ exports.ListSubscriptionsInput$ = ListSubscriptionsInput$;
780
+ const ListSubscriptionsResponse$ = [3, n0, _LSR,
705
781
  0,
706
782
  [_Su, _NT],
707
783
  [() => SubscriptionsList, 0]
708
784
  ];
709
- exports.ListTagsForResourceRequest$ = [3, n0, _LTFRR,
785
+ exports.ListSubscriptionsResponse$ = ListSubscriptionsResponse$;
786
+ const ListTagsForResourceRequest$ = [3, n0, _LTFRR,
710
787
  0,
711
788
  [_RA],
712
789
  [0], 1
713
790
  ];
714
- exports.ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
791
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
792
+ const ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
715
793
  0,
716
794
  [_Ta],
717
795
  [() => TagList]
718
796
  ];
719
- exports.ListTopicsInput$ = [3, n0, _LTI,
797
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
798
+ const ListTopicsInput$ = [3, n0, _LTI,
720
799
  0,
721
800
  [_NT],
722
801
  [0]
723
802
  ];
724
- exports.ListTopicsResponse$ = [3, n0, _LTR,
803
+ exports.ListTopicsInput$ = ListTopicsInput$;
804
+ const ListTopicsResponse$ = [3, n0, _LTR,
725
805
  0,
726
806
  [_To, _NT],
727
807
  [() => TopicsList, 0]
728
808
  ];
729
- exports.MessageAttributeValue$ = [3, n0, _MAV,
809
+ exports.ListTopicsResponse$ = ListTopicsResponse$;
810
+ const MessageAttributeValue$ = [3, n0, _MAV,
730
811
  0,
731
812
  [_DT, _SV, _BV],
732
813
  [0, 0, 21], 1
733
814
  ];
734
- exports.OptInPhoneNumberInput$ = [3, n0, _OIPNI,
815
+ exports.MessageAttributeValue$ = MessageAttributeValue$;
816
+ const OptInPhoneNumberInput$ = [3, n0, _OIPNI,
735
817
  0,
736
818
  [_pN],
737
819
  [[() => PhoneNumber, 0]], 1
738
820
  ];
739
- exports.OptInPhoneNumberResponse$ = [3, n0, _OIPNR,
821
+ exports.OptInPhoneNumberInput$ = OptInPhoneNumberInput$;
822
+ const OptInPhoneNumberResponse$ = [3, n0, _OIPNR,
740
823
  0,
741
824
  [],
742
825
  []
743
826
  ];
744
- exports.PhoneNumberInformation$ = [3, n0, _PNI,
827
+ exports.OptInPhoneNumberResponse$ = OptInPhoneNumberResponse$;
828
+ const PhoneNumberInformation$ = [3, n0, _PNI,
745
829
  0,
746
830
  [_CA, _PN, _S, _ICC, _RT, _NC],
747
831
  [4, [() => PhoneNumber, 0], 0, 0, 0, 64 | 0]
748
832
  ];
749
- exports.PlatformApplication$ = [3, n0, _PAl,
833
+ exports.PhoneNumberInformation$ = PhoneNumberInformation$;
834
+ const PlatformApplication$ = [3, n0, _PAl,
750
835
  0,
751
836
  [_PAA, _A],
752
837
  [0, 128 | 0]
753
838
  ];
754
- exports.PublishBatchInput$ = [3, n0, _PBI,
839
+ exports.PlatformApplication$ = PlatformApplication$;
840
+ const PublishBatchInput$ = [3, n0, _PBI,
755
841
  0,
756
842
  [_TA, _PBRE],
757
843
  [0, [() => PublishBatchRequestEntryList, 0]], 2
758
844
  ];
759
- exports.PublishBatchRequestEntry$ = [3, n0, _PBREu,
845
+ exports.PublishBatchInput$ = PublishBatchInput$;
846
+ const PublishBatchRequestEntry$ = [3, n0, _PBREu,
760
847
  0,
761
848
  [_I, _M, _Sub, _MS, _MA, _MDI, _MGI],
762
849
  [0, 0, 0, 0, [() => MessageAttributeMap, 0], 0, 0], 2
763
850
  ];
764
- exports.PublishBatchResponse$ = [3, n0, _PBR,
851
+ exports.PublishBatchRequestEntry$ = PublishBatchRequestEntry$;
852
+ const PublishBatchResponse$ = [3, n0, _PBR,
765
853
  0,
766
854
  [_Suc, _F],
767
855
  [() => PublishBatchResultEntryList, () => BatchResultErrorEntryList]
768
856
  ];
769
- exports.PublishBatchResultEntry$ = [3, n0, _PBREub,
857
+ exports.PublishBatchResponse$ = PublishBatchResponse$;
858
+ const PublishBatchResultEntry$ = [3, n0, _PBREub,
770
859
  0,
771
860
  [_I, _MI, _SN],
772
861
  [0, 0, 0]
773
862
  ];
774
- exports.PublishInput$ = [3, n0, _PI,
863
+ exports.PublishBatchResultEntry$ = PublishBatchResultEntry$;
864
+ const PublishInput$ = [3, n0, _PI,
775
865
  0,
776
866
  [_M, _TA, _TAa, _PN, _Sub, _MS, _MA, _MDI, _MGI],
777
867
  [0, 0, 0, [() => PhoneNumber, 0], 0, 0, [() => MessageAttributeMap, 0], 0, 0], 1
778
868
  ];
779
- exports.PublishResponse$ = [3, n0, _PR,
869
+ exports.PublishInput$ = PublishInput$;
870
+ const PublishResponse$ = [3, n0, _PR,
780
871
  0,
781
872
  [_MI, _SN],
782
873
  [0, 0]
783
874
  ];
784
- exports.PutDataProtectionPolicyInput$ = [3, n0, _PDPPI,
875
+ exports.PublishResponse$ = PublishResponse$;
876
+ const PutDataProtectionPolicyInput$ = [3, n0, _PDPPI,
785
877
  0,
786
878
  [_RA, _DPP],
787
879
  [0, 0], 2
788
880
  ];
789
- exports.RemovePermissionInput$ = [3, n0, _RPI,
881
+ exports.PutDataProtectionPolicyInput$ = PutDataProtectionPolicyInput$;
882
+ const RemovePermissionInput$ = [3, n0, _RPI,
790
883
  0,
791
884
  [_TA, _L],
792
885
  [0, 0], 2
793
886
  ];
794
- exports.SetEndpointAttributesInput$ = [3, n0, _SEAI,
887
+ exports.RemovePermissionInput$ = RemovePermissionInput$;
888
+ const SetEndpointAttributesInput$ = [3, n0, _SEAI,
795
889
  0,
796
890
  [_EA, _A],
797
891
  [0, 128 | 0], 2
798
892
  ];
799
- exports.SetPlatformApplicationAttributesInput$ = [3, n0, _SPAAI,
893
+ exports.SetEndpointAttributesInput$ = SetEndpointAttributesInput$;
894
+ const SetPlatformApplicationAttributesInput$ = [3, n0, _SPAAI,
800
895
  0,
801
896
  [_PAA, _A],
802
897
  [0, 128 | 0], 2
803
898
  ];
804
- exports.SetSMSAttributesInput$ = [3, n0, _SSMSAI,
899
+ exports.SetPlatformApplicationAttributesInput$ = SetPlatformApplicationAttributesInput$;
900
+ const SetSMSAttributesInput$ = [3, n0, _SSMSAI,
805
901
  0,
806
902
  [_a],
807
903
  [128 | 0], 1
808
904
  ];
809
- exports.SetSMSAttributesResponse$ = [3, n0, _SSMSAR,
905
+ exports.SetSMSAttributesInput$ = SetSMSAttributesInput$;
906
+ const SetSMSAttributesResponse$ = [3, n0, _SSMSAR,
810
907
  0,
811
908
  [],
812
909
  []
813
910
  ];
814
- exports.SetSubscriptionAttributesInput$ = [3, n0, _SSAI,
911
+ exports.SetSMSAttributesResponse$ = SetSMSAttributesResponse$;
912
+ const SetSubscriptionAttributesInput$ = [3, n0, _SSAI,
815
913
  0,
816
914
  [_SA, _ANt, _AV],
817
915
  [0, 0, 0], 2
818
916
  ];
819
- exports.SetTopicAttributesInput$ = [3, n0, _STAI,
917
+ exports.SetSubscriptionAttributesInput$ = SetSubscriptionAttributesInput$;
918
+ const SetTopicAttributesInput$ = [3, n0, _STAI,
820
919
  0,
821
920
  [_TA, _ANt, _AV],
822
921
  [0, 0, 0], 2
823
922
  ];
824
- exports.SMSSandboxPhoneNumber$ = [3, n0, _SMSSPN,
923
+ exports.SetTopicAttributesInput$ = SetTopicAttributesInput$;
924
+ const SMSSandboxPhoneNumber$ = [3, n0, _SMSSPN,
825
925
  0,
826
926
  [_PN, _S],
827
927
  [[() => PhoneNumberString, 0], 0]
828
928
  ];
829
- exports.SubscribeInput$ = [3, n0, _SI,
929
+ exports.SMSSandboxPhoneNumber$ = SMSSandboxPhoneNumber$;
930
+ const SubscribeInput$ = [3, n0, _SI,
830
931
  0,
831
932
  [_TA, _Pr, _E, _A, _RSA],
832
933
  [0, 0, 0, 128 | 0, 2], 2
833
934
  ];
834
- exports.SubscribeResponse$ = [3, n0, _SR,
935
+ exports.SubscribeInput$ = SubscribeInput$;
936
+ const SubscribeResponse$ = [3, n0, _SR,
835
937
  0,
836
938
  [_SA],
837
939
  [0]
838
940
  ];
839
- exports.Subscription$ = [3, n0, _Subs,
941
+ exports.SubscribeResponse$ = SubscribeResponse$;
942
+ const Subscription$ = [3, n0, _Subs,
840
943
  0,
841
944
  [_SA, _O, _Pr, _E, _TA],
842
945
  [0, 0, 0, 0, 0]
843
946
  ];
844
- exports.Tag$ = [3, n0, _Tag,
947
+ exports.Subscription$ = Subscription$;
948
+ const Tag$ = [3, n0, _Tag,
845
949
  0,
846
950
  [_K, _V],
847
951
  [0, 0], 2
848
952
  ];
849
- exports.TagResourceRequest$ = [3, n0, _TRR,
953
+ exports.Tag$ = Tag$;
954
+ const TagResourceRequest$ = [3, n0, _TRR,
850
955
  0,
851
956
  [_RA, _Ta],
852
957
  [0, () => TagList], 2
853
958
  ];
854
- exports.TagResourceResponse$ = [3, n0, _TRRa,
959
+ exports.TagResourceRequest$ = TagResourceRequest$;
960
+ const TagResourceResponse$ = [3, n0, _TRRa,
855
961
  0,
856
962
  [],
857
963
  []
858
964
  ];
859
- exports.Topic$ = [3, n0, _Top,
965
+ exports.TagResourceResponse$ = TagResourceResponse$;
966
+ const Topic$ = [3, n0, _Top,
860
967
  0,
861
968
  [_TA],
862
969
  [0]
863
970
  ];
864
- exports.UnsubscribeInput$ = [3, n0, _UI,
971
+ exports.Topic$ = Topic$;
972
+ const UnsubscribeInput$ = [3, n0, _UI,
865
973
  0,
866
974
  [_SA],
867
975
  [0], 1
868
976
  ];
869
- exports.UntagResourceRequest$ = [3, n0, _URR,
977
+ exports.UnsubscribeInput$ = UnsubscribeInput$;
978
+ const UntagResourceRequest$ = [3, n0, _URR,
870
979
  0,
871
980
  [_RA, _TK],
872
981
  [0, 64 | 0], 2
873
982
  ];
874
- exports.UntagResourceResponse$ = [3, n0, _URRn,
983
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
984
+ const UntagResourceResponse$ = [3, n0, _URRn,
875
985
  0,
876
986
  [],
877
987
  []
878
988
  ];
879
- exports.VerifySMSSandboxPhoneNumberInput$ = [3, n0, _VSMSSPNI,
989
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
990
+ const VerifySMSSandboxPhoneNumberInput$ = [3, n0, _VSMSSPNI,
880
991
  0,
881
992
  [_PN, _OTP],
882
993
  [[() => PhoneNumberString, 0], 0], 2
883
994
  ];
884
- exports.VerifySMSSandboxPhoneNumberResult$ = [3, n0, _VSMSSPNR,
995
+ exports.VerifySMSSandboxPhoneNumberInput$ = VerifySMSSandboxPhoneNumberInput$;
996
+ const VerifySMSSandboxPhoneNumberResult$ = [3, n0, _VSMSSPNR,
885
997
  0,
886
998
  [],
887
999
  []
888
1000
  ];
1001
+ exports.VerifySMSSandboxPhoneNumberResult$ = VerifySMSSandboxPhoneNumberResult$;
889
1002
  var __Unit = "unit";
890
1003
  var ActionsList = 64 | 0;
891
1004
  var BatchResultErrorEntryList = [1, n0, _BREEL,
892
- 0, () => exports.BatchResultErrorEntry$
1005
+ 0, () => BatchResultErrorEntry$
893
1006
  ];
894
1007
  var DelegatesList = 64 | 0;
895
1008
  var ListOfEndpoints = [1, n0, _LOE,
896
- 0, () => exports.Endpoint$
1009
+ 0, () => Endpoint$
897
1010
  ];
898
1011
  var ListOfPlatformApplications = [1, n0, _LOPA,
899
- 0, () => exports.PlatformApplication$
1012
+ 0, () => PlatformApplication$
900
1013
  ];
901
1014
  var ListString = 64 | 0;
902
1015
  var NumberCapabilityList = 64 | 0;
903
1016
  var PhoneNumberInformationList = [1, n0, _PNIL,
904
- 0, [() => exports.PhoneNumberInformation$,
1017
+ 0, [() => PhoneNumberInformation$,
905
1018
  0]
906
1019
  ];
907
1020
  var PhoneNumberList = [1, n0, _PNL,
@@ -909,158 +1022,158 @@ var PhoneNumberList = [1, n0, _PNL,
909
1022
  0]
910
1023
  ];
911
1024
  var PublishBatchRequestEntryList = [1, n0, _PBREL,
912
- 0, [() => exports.PublishBatchRequestEntry$,
1025
+ 0, [() => PublishBatchRequestEntry$,
913
1026
  0]
914
1027
  ];
915
1028
  var PublishBatchResultEntryList = [1, n0, _PBRELu,
916
- 0, () => exports.PublishBatchResultEntry$
1029
+ 0, () => PublishBatchResultEntry$
917
1030
  ];
918
1031
  var SMSSandboxPhoneNumberList = [1, n0, _SMSSPNL,
919
- 0, [() => exports.SMSSandboxPhoneNumber$,
1032
+ 0, [() => SMSSandboxPhoneNumber$,
920
1033
  0]
921
1034
  ];
922
1035
  var SubscriptionsList = [1, n0, _SL,
923
- 0, () => exports.Subscription$
1036
+ 0, () => Subscription$
924
1037
  ];
925
1038
  var TagKeyList = 64 | 0;
926
1039
  var TagList = [1, n0, _TL,
927
- 0, () => exports.Tag$
1040
+ 0, () => Tag$
928
1041
  ];
929
1042
  var TopicsList = [1, n0, _TLo,
930
- 0, () => exports.Topic$
1043
+ 0, () => Topic$
931
1044
  ];
932
1045
  var MapStringToString = 128 | 0;
933
1046
  var MessageAttributeMap = [2, n0, _MAM,
934
1047
  0, [0,
935
1048
  { [_xN]: _N }],
936
- [() => exports.MessageAttributeValue$,
1049
+ [() => MessageAttributeValue$,
937
1050
  { [_xN]: _V }]
938
1051
  ];
939
1052
  var SubscriptionAttributesMap = 128 | 0;
940
1053
  var TopicAttributesMap = 128 | 0;
941
1054
  exports.AddPermission$ = [9, n0, _AP,
942
- 0, () => exports.AddPermissionInput$, () => __Unit
1055
+ 0, () => AddPermissionInput$, () => __Unit
943
1056
  ];
944
1057
  exports.CheckIfPhoneNumberIsOptedOut$ = [9, n0, _CIPNIOO,
945
- 0, () => exports.CheckIfPhoneNumberIsOptedOutInput$, () => exports.CheckIfPhoneNumberIsOptedOutResponse$
1058
+ 0, () => CheckIfPhoneNumberIsOptedOutInput$, () => CheckIfPhoneNumberIsOptedOutResponse$
946
1059
  ];
947
1060
  exports.ConfirmSubscription$ = [9, n0, _CS,
948
- 0, () => exports.ConfirmSubscriptionInput$, () => exports.ConfirmSubscriptionResponse$
1061
+ 0, () => ConfirmSubscriptionInput$, () => ConfirmSubscriptionResponse$
949
1062
  ];
950
1063
  exports.CreatePlatformApplication$ = [9, n0, _CPA,
951
- 0, () => exports.CreatePlatformApplicationInput$, () => exports.CreatePlatformApplicationResponse$
1064
+ 0, () => CreatePlatformApplicationInput$, () => CreatePlatformApplicationResponse$
952
1065
  ];
953
1066
  exports.CreatePlatformEndpoint$ = [9, n0, _CPE,
954
- 0, () => exports.CreatePlatformEndpointInput$, () => exports.CreateEndpointResponse$
1067
+ 0, () => CreatePlatformEndpointInput$, () => CreateEndpointResponse$
955
1068
  ];
956
1069
  exports.CreateSMSSandboxPhoneNumber$ = [9, n0, _CSMSSPN,
957
- 0, () => exports.CreateSMSSandboxPhoneNumberInput$, () => exports.CreateSMSSandboxPhoneNumberResult$
1070
+ 0, () => CreateSMSSandboxPhoneNumberInput$, () => CreateSMSSandboxPhoneNumberResult$
958
1071
  ];
959
1072
  exports.CreateTopic$ = [9, n0, _CT,
960
- 0, () => exports.CreateTopicInput$, () => exports.CreateTopicResponse$
1073
+ 0, () => CreateTopicInput$, () => CreateTopicResponse$
961
1074
  ];
962
1075
  exports.DeleteEndpoint$ = [9, n0, _DE,
963
- 0, () => exports.DeleteEndpointInput$, () => __Unit
1076
+ 0, () => DeleteEndpointInput$, () => __Unit
964
1077
  ];
965
1078
  exports.DeletePlatformApplication$ = [9, n0, _DPA,
966
- 0, () => exports.DeletePlatformApplicationInput$, () => __Unit
1079
+ 0, () => DeletePlatformApplicationInput$, () => __Unit
967
1080
  ];
968
1081
  exports.DeleteSMSSandboxPhoneNumber$ = [9, n0, _DSMSSPN,
969
- 0, () => exports.DeleteSMSSandboxPhoneNumberInput$, () => exports.DeleteSMSSandboxPhoneNumberResult$
1082
+ 0, () => DeleteSMSSandboxPhoneNumberInput$, () => DeleteSMSSandboxPhoneNumberResult$
970
1083
  ];
971
1084
  exports.DeleteTopic$ = [9, n0, _DTe,
972
- 0, () => exports.DeleteTopicInput$, () => __Unit
1085
+ 0, () => DeleteTopicInput$, () => __Unit
973
1086
  ];
974
1087
  exports.GetDataProtectionPolicy$ = [9, n0, _GDPP,
975
- 0, () => exports.GetDataProtectionPolicyInput$, () => exports.GetDataProtectionPolicyResponse$
1088
+ 0, () => GetDataProtectionPolicyInput$, () => GetDataProtectionPolicyResponse$
976
1089
  ];
977
1090
  exports.GetEndpointAttributes$ = [9, n0, _GEA,
978
- 0, () => exports.GetEndpointAttributesInput$, () => exports.GetEndpointAttributesResponse$
1091
+ 0, () => GetEndpointAttributesInput$, () => GetEndpointAttributesResponse$
979
1092
  ];
980
1093
  exports.GetPlatformApplicationAttributes$ = [9, n0, _GPAA,
981
- 0, () => exports.GetPlatformApplicationAttributesInput$, () => exports.GetPlatformApplicationAttributesResponse$
1094
+ 0, () => GetPlatformApplicationAttributesInput$, () => GetPlatformApplicationAttributesResponse$
982
1095
  ];
983
1096
  exports.GetSMSAttributes$ = [9, n0, _GSMSA,
984
- 0, () => exports.GetSMSAttributesInput$, () => exports.GetSMSAttributesResponse$
1097
+ 0, () => GetSMSAttributesInput$, () => GetSMSAttributesResponse$
985
1098
  ];
986
1099
  exports.GetSMSSandboxAccountStatus$ = [9, n0, _GSMSSAS,
987
- 0, () => exports.GetSMSSandboxAccountStatusInput$, () => exports.GetSMSSandboxAccountStatusResult$
1100
+ 0, () => GetSMSSandboxAccountStatusInput$, () => GetSMSSandboxAccountStatusResult$
988
1101
  ];
989
1102
  exports.GetSubscriptionAttributes$ = [9, n0, _GSA,
990
- 0, () => exports.GetSubscriptionAttributesInput$, () => exports.GetSubscriptionAttributesResponse$
1103
+ 0, () => GetSubscriptionAttributesInput$, () => GetSubscriptionAttributesResponse$
991
1104
  ];
992
1105
  exports.GetTopicAttributes$ = [9, n0, _GTA,
993
- 0, () => exports.GetTopicAttributesInput$, () => exports.GetTopicAttributesResponse$
1106
+ 0, () => GetTopicAttributesInput$, () => GetTopicAttributesResponse$
994
1107
  ];
995
1108
  exports.ListEndpointsByPlatformApplication$ = [9, n0, _LEBPA,
996
- 0, () => exports.ListEndpointsByPlatformApplicationInput$, () => exports.ListEndpointsByPlatformApplicationResponse$
1109
+ 0, () => ListEndpointsByPlatformApplicationInput$, () => ListEndpointsByPlatformApplicationResponse$
997
1110
  ];
998
1111
  exports.ListOriginationNumbers$ = [9, n0, _LON,
999
- 0, () => exports.ListOriginationNumbersRequest$, () => exports.ListOriginationNumbersResult$
1112
+ 0, () => ListOriginationNumbersRequest$, () => ListOriginationNumbersResult$
1000
1113
  ];
1001
1114
  exports.ListPhoneNumbersOptedOut$ = [9, n0, _LPNOO,
1002
- 0, () => exports.ListPhoneNumbersOptedOutInput$, () => exports.ListPhoneNumbersOptedOutResponse$
1115
+ 0, () => ListPhoneNumbersOptedOutInput$, () => ListPhoneNumbersOptedOutResponse$
1003
1116
  ];
1004
1117
  exports.ListPlatformApplications$ = [9, n0, _LPA,
1005
- 0, () => exports.ListPlatformApplicationsInput$, () => exports.ListPlatformApplicationsResponse$
1118
+ 0, () => ListPlatformApplicationsInput$, () => ListPlatformApplicationsResponse$
1006
1119
  ];
1007
1120
  exports.ListSMSSandboxPhoneNumbers$ = [9, n0, _LSMSSPN,
1008
- 0, () => exports.ListSMSSandboxPhoneNumbersInput$, () => exports.ListSMSSandboxPhoneNumbersResult$
1121
+ 0, () => ListSMSSandboxPhoneNumbersInput$, () => ListSMSSandboxPhoneNumbersResult$
1009
1122
  ];
1010
1123
  exports.ListSubscriptions$ = [9, n0, _LS,
1011
- 0, () => exports.ListSubscriptionsInput$, () => exports.ListSubscriptionsResponse$
1124
+ 0, () => ListSubscriptionsInput$, () => ListSubscriptionsResponse$
1012
1125
  ];
1013
1126
  exports.ListSubscriptionsByTopic$ = [9, n0, _LSBT,
1014
- 0, () => exports.ListSubscriptionsByTopicInput$, () => exports.ListSubscriptionsByTopicResponse$
1127
+ 0, () => ListSubscriptionsByTopicInput$, () => ListSubscriptionsByTopicResponse$
1015
1128
  ];
1016
1129
  exports.ListTagsForResource$ = [9, n0, _LTFR,
1017
- 0, () => exports.ListTagsForResourceRequest$, () => exports.ListTagsForResourceResponse$
1130
+ 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1018
1131
  ];
1019
1132
  exports.ListTopics$ = [9, n0, _LT,
1020
- 0, () => exports.ListTopicsInput$, () => exports.ListTopicsResponse$
1133
+ 0, () => ListTopicsInput$, () => ListTopicsResponse$
1021
1134
  ];
1022
1135
  exports.OptInPhoneNumber$ = [9, n0, _OIPN,
1023
- 0, () => exports.OptInPhoneNumberInput$, () => exports.OptInPhoneNumberResponse$
1136
+ 0, () => OptInPhoneNumberInput$, () => OptInPhoneNumberResponse$
1024
1137
  ];
1025
1138
  exports.Publish$ = [9, n0, _Pu,
1026
- 0, () => exports.PublishInput$, () => exports.PublishResponse$
1139
+ 0, () => PublishInput$, () => PublishResponse$
1027
1140
  ];
1028
1141
  exports.PublishBatch$ = [9, n0, _PB,
1029
- 0, () => exports.PublishBatchInput$, () => exports.PublishBatchResponse$
1142
+ 0, () => PublishBatchInput$, () => PublishBatchResponse$
1030
1143
  ];
1031
1144
  exports.PutDataProtectionPolicy$ = [9, n0, _PDPP,
1032
- 0, () => exports.PutDataProtectionPolicyInput$, () => __Unit
1145
+ 0, () => PutDataProtectionPolicyInput$, () => __Unit
1033
1146
  ];
1034
1147
  exports.RemovePermission$ = [9, n0, _RP,
1035
- 0, () => exports.RemovePermissionInput$, () => __Unit
1148
+ 0, () => RemovePermissionInput$, () => __Unit
1036
1149
  ];
1037
1150
  exports.SetEndpointAttributes$ = [9, n0, _SEA,
1038
- 0, () => exports.SetEndpointAttributesInput$, () => __Unit
1151
+ 0, () => SetEndpointAttributesInput$, () => __Unit
1039
1152
  ];
1040
1153
  exports.SetPlatformApplicationAttributes$ = [9, n0, _SPAA,
1041
- 0, () => exports.SetPlatformApplicationAttributesInput$, () => __Unit
1154
+ 0, () => SetPlatformApplicationAttributesInput$, () => __Unit
1042
1155
  ];
1043
1156
  exports.SetSMSAttributes$ = [9, n0, _SSMSA,
1044
- 0, () => exports.SetSMSAttributesInput$, () => exports.SetSMSAttributesResponse$
1157
+ 0, () => SetSMSAttributesInput$, () => SetSMSAttributesResponse$
1045
1158
  ];
1046
1159
  exports.SetSubscriptionAttributes$ = [9, n0, _SSA,
1047
- 0, () => exports.SetSubscriptionAttributesInput$, () => __Unit
1160
+ 0, () => SetSubscriptionAttributesInput$, () => __Unit
1048
1161
  ];
1049
1162
  exports.SetTopicAttributes$ = [9, n0, _STA,
1050
- 0, () => exports.SetTopicAttributesInput$, () => __Unit
1163
+ 0, () => SetTopicAttributesInput$, () => __Unit
1051
1164
  ];
1052
1165
  exports.Subscribe$ = [9, n0, _Subsc,
1053
- 0, () => exports.SubscribeInput$, () => exports.SubscribeResponse$
1166
+ 0, () => SubscribeInput$, () => SubscribeResponse$
1054
1167
  ];
1055
1168
  exports.TagResource$ = [9, n0, _TR,
1056
- 0, () => exports.TagResourceRequest$, () => exports.TagResourceResponse$
1169
+ 0, () => TagResourceRequest$, () => TagResourceResponse$
1057
1170
  ];
1058
1171
  exports.Unsubscribe$ = [9, n0, _U,
1059
- 0, () => exports.UnsubscribeInput$, () => __Unit
1172
+ 0, () => UnsubscribeInput$, () => __Unit
1060
1173
  ];
1061
1174
  exports.UntagResource$ = [9, n0, _UR,
1062
- 0, () => exports.UntagResourceRequest$, () => exports.UntagResourceResponse$
1175
+ 0, () => UntagResourceRequest$, () => UntagResourceResponse$
1063
1176
  ];
1064
1177
  exports.VerifySMSSandboxPhoneNumber$ = [9, n0, _VSMSSPN,
1065
- 0, () => exports.VerifySMSSandboxPhoneNumberInput$, () => exports.VerifySMSSandboxPhoneNumberResult$
1178
+ 0, () => VerifySMSSandboxPhoneNumberInput$, () => VerifySMSSandboxPhoneNumberResult$
1066
1179
  ];