@aws-sdk/client-cloudformation 3.503.0 → 3.504.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/README.md +88 -0
  2. package/dist-cjs/commands/CreateGeneratedTemplateCommand.js +1 -0
  3. package/dist-cjs/commands/DeleteGeneratedTemplateCommand.js +1 -0
  4. package/dist-cjs/commands/DescribeGeneratedTemplateCommand.js +1 -0
  5. package/dist-cjs/commands/DescribeResourceScanCommand.js +1 -0
  6. package/dist-cjs/commands/GetGeneratedTemplateCommand.js +1 -0
  7. package/dist-cjs/commands/ListGeneratedTemplatesCommand.js +1 -0
  8. package/dist-cjs/commands/ListResourceScanRelatedResourcesCommand.js +1 -0
  9. package/dist-cjs/commands/ListResourceScanResourcesCommand.js +1 -0
  10. package/dist-cjs/commands/ListResourceScansCommand.js +1 -0
  11. package/dist-cjs/commands/StartResourceScanCommand.js +1 -0
  12. package/dist-cjs/commands/UpdateGeneratedTemplateCommand.js +1 -0
  13. package/dist-cjs/index.js +1677 -73
  14. package/dist-cjs/models/models_1.js +1 -0
  15. package/dist-cjs/pagination/ListGeneratedTemplatesPaginator.js +1 -0
  16. package/dist-cjs/pagination/ListResourceScanRelatedResourcesPaginator.js +1 -0
  17. package/dist-cjs/pagination/ListResourceScanResourcesPaginator.js +1 -0
  18. package/dist-cjs/pagination/ListResourceScansPaginator.js +1 -0
  19. package/dist-es/CloudFormation.js +22 -0
  20. package/dist-es/commands/CreateGeneratedTemplateCommand.js +24 -0
  21. package/dist-es/commands/DeleteGeneratedTemplateCommand.js +24 -0
  22. package/dist-es/commands/DescribeGeneratedTemplateCommand.js +24 -0
  23. package/dist-es/commands/DescribeResourceScanCommand.js +24 -0
  24. package/dist-es/commands/GetGeneratedTemplateCommand.js +24 -0
  25. package/dist-es/commands/ListGeneratedTemplatesCommand.js +24 -0
  26. package/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +24 -0
  27. package/dist-es/commands/ListResourceScanResourcesCommand.js +24 -0
  28. package/dist-es/commands/ListResourceScansCommand.js +24 -0
  29. package/dist-es/commands/StartResourceScanCommand.js +24 -0
  30. package/dist-es/commands/UpdateGeneratedTemplateCommand.js +24 -0
  31. package/dist-es/commands/index.js +11 -0
  32. package/dist-es/models/index.js +1 -0
  33. package/dist-es/models/models_0.js +104 -0
  34. package/dist-es/models/models_1.js +1 -0
  35. package/dist-es/pagination/ListGeneratedTemplatesPaginator.js +4 -0
  36. package/dist-es/pagination/ListResourceScanRelatedResourcesPaginator.js +4 -0
  37. package/dist-es/pagination/ListResourceScanResourcesPaginator.js +4 -0
  38. package/dist-es/pagination/ListResourceScansPaginator.js +4 -0
  39. package/dist-es/pagination/index.js +4 -0
  40. package/dist-es/protocols/Aws_query.js +1322 -92
  41. package/dist-types/CloudFormation.d.ts +77 -0
  42. package/dist-types/CloudFormationClient.d.ts +13 -2
  43. package/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +116 -0
  44. package/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +75 -0
  45. package/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +135 -0
  46. package/dist-types/commands/DescribeResourceScanCommand.d.ts +168 -0
  47. package/dist-types/commands/GetGeneratedTemplateCommand.d.ts +100 -0
  48. package/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +112 -0
  49. package/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +145 -0
  50. package/dist-types/commands/ListResourceScanResourcesCommand.d.ts +147 -0
  51. package/dist-types/commands/ListResourceScansCommand.d.ts +97 -0
  52. package/dist-types/commands/StartResourceScanCommand.d.ts +91 -0
  53. package/dist-types/commands/StopStackSetOperationCommand.d.ts +1 -1
  54. package/dist-types/commands/TestTypeCommand.d.ts +1 -1
  55. package/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +156 -0
  56. package/dist-types/commands/UpdateStackCommand.d.ts +1 -1
  57. package/dist-types/commands/UpdateStackInstancesCommand.d.ts +1 -1
  58. package/dist-types/commands/UpdateStackSetCommand.d.ts +1 -1
  59. package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
  60. package/dist-types/commands/ValidateTemplateCommand.d.ts +1 -1
  61. package/dist-types/commands/index.d.ts +11 -0
  62. package/dist-types/models/index.d.ts +1 -0
  63. package/dist-types/models/models_0.d.ts +4075 -3877
  64. package/dist-types/models/models_1.d.ts +974 -0
  65. package/dist-types/pagination/ListGeneratedTemplatesPaginator.d.ts +7 -0
  66. package/dist-types/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +7 -0
  67. package/dist-types/pagination/ListResourceScanResourcesPaginator.d.ts +7 -0
  68. package/dist-types/pagination/ListResourceScansPaginator.d.ts +7 -0
  69. package/dist-types/pagination/index.d.ts +4 -0
  70. package/dist-types/protocols/Aws_query.d.ts +99 -0
  71. package/dist-types/ts3.4/CloudFormation.d.ts +187 -0
  72. package/dist-types/ts3.4/CloudFormationClient.d.ts +66 -0
  73. package/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +30 -0
  74. package/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +26 -0
  75. package/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +30 -0
  76. package/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +30 -0
  77. package/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +30 -0
  78. package/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +30 -0
  79. package/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +30 -0
  80. package/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +30 -0
  81. package/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +29 -0
  82. package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +29 -0
  83. package/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +1 -1
  84. package/dist-types/ts3.4/commands/TestTypeCommand.d.ts +1 -1
  85. package/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +30 -0
  86. package/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +1 -1
  88. package/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +1 -1
  89. package/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
  90. package/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  92. package/dist-types/ts3.4/models/index.d.ts +1 -0
  93. package/dist-types/ts3.4/models/models_0.d.ts +250 -99
  94. package/dist-types/ts3.4/models/models_1.d.ts +132 -0
  95. package/dist-types/ts3.4/pagination/ListGeneratedTemplatesPaginator.d.ts +11 -0
  96. package/dist-types/ts3.4/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +11 -0
  97. package/dist-types/ts3.4/pagination/ListResourceScanResourcesPaginator.d.ts +11 -0
  98. package/dist-types/ts3.4/pagination/ListResourceScansPaginator.d.ts +11 -0
  99. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  100. package/dist-types/ts3.4/protocols/Aws_query.d.ts +132 -0
  101. package/package.json +3 -3

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.