@aws-sdk/client-efs 3.32.0 → 3.36.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 (318) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/{dist/cjs → dist-cjs}/EFS.js +2 -3
  3. package/{dist/cjs → dist-cjs}/EFSClient.js +8 -9
  4. package/{dist/cjs → dist-cjs}/commands/CreateAccessPointCommand.js +2 -3
  5. package/{dist/cjs → dist-cjs}/commands/CreateFileSystemCommand.js +2 -3
  6. package/{dist/cjs → dist-cjs}/commands/CreateMountTargetCommand.js +2 -3
  7. package/{dist/cjs → dist-cjs}/commands/CreateTagsCommand.js +2 -3
  8. package/{dist/cjs → dist-cjs}/commands/DeleteAccessPointCommand.js +2 -3
  9. package/{dist/cjs → dist-cjs}/commands/DeleteFileSystemCommand.js +2 -3
  10. package/{dist/cjs → dist-cjs}/commands/DeleteFileSystemPolicyCommand.js +2 -3
  11. package/{dist/cjs → dist-cjs}/commands/DeleteMountTargetCommand.js +2 -3
  12. package/{dist/cjs → dist-cjs}/commands/DeleteTagsCommand.js +2 -3
  13. package/{dist/cjs → dist-cjs}/commands/DescribeAccessPointsCommand.js +2 -3
  14. package/{dist/cjs → dist-cjs}/commands/DescribeAccountPreferencesCommand.js +2 -3
  15. package/{dist/cjs → dist-cjs}/commands/DescribeBackupPolicyCommand.js +2 -3
  16. package/{dist/cjs → dist-cjs}/commands/DescribeFileSystemPolicyCommand.js +2 -3
  17. package/{dist/cjs → dist-cjs}/commands/DescribeFileSystemsCommand.js +2 -3
  18. package/{dist/cjs → dist-cjs}/commands/DescribeLifecycleConfigurationCommand.js +2 -3
  19. package/{dist/cjs → dist-cjs}/commands/DescribeMountTargetSecurityGroupsCommand.js +2 -3
  20. package/{dist/cjs → dist-cjs}/commands/DescribeMountTargetsCommand.js +2 -3
  21. package/{dist/cjs → dist-cjs}/commands/DescribeTagsCommand.js +2 -3
  22. package/{dist/cjs → dist-cjs}/commands/ListTagsForResourceCommand.js +2 -3
  23. package/{dist/cjs → dist-cjs}/commands/ModifyMountTargetSecurityGroupsCommand.js +2 -3
  24. package/{dist/cjs → dist-cjs}/commands/PutAccountPreferencesCommand.js +2 -3
  25. package/{dist/cjs → dist-cjs}/commands/PutBackupPolicyCommand.js +2 -3
  26. package/{dist/cjs → dist-cjs}/commands/PutFileSystemPolicyCommand.js +2 -3
  27. package/{dist/cjs → dist-cjs}/commands/PutLifecycleConfigurationCommand.js +2 -3
  28. package/{dist/cjs → dist-cjs}/commands/TagResourceCommand.js +2 -3
  29. package/{dist/cjs → dist-cjs}/commands/UntagResourceCommand.js +2 -3
  30. package/{dist/cjs → dist-cjs}/commands/UpdateFileSystemCommand.js +2 -3
  31. package/{dist/cjs → dist-cjs}/endpoints.js +0 -1
  32. package/{dist/cjs → dist-cjs}/index.js +0 -1
  33. package/{dist/cjs → dist-cjs}/models/index.js +0 -1
  34. package/{dist/cjs → dist-cjs}/models/models_0.js +0 -1
  35. package/{dist/cjs → dist-cjs}/pagination/DescribeAccessPointsPaginator.js +1 -2
  36. package/{dist/cjs → dist-cjs}/pagination/DescribeFileSystemsPaginator.js +1 -2
  37. package/{dist/cjs → dist-cjs}/pagination/DescribeTagsPaginator.js +1 -2
  38. package/{dist/cjs → dist-cjs}/pagination/Interfaces.js +0 -1
  39. package/{dist/cjs → dist-cjs}/pagination/ListTagsForResourcePaginator.js +1 -2
  40. package/{dist/cjs → dist-cjs}/protocols/Aws_restJson1.js +16 -9
  41. package/{dist/cjs → dist-cjs}/runtimeConfig.browser.js +2 -2
  42. package/{dist/cjs → dist-cjs}/runtimeConfig.js +2 -2
  43. package/{dist/cjs → dist-cjs}/runtimeConfig.native.js +0 -1
  44. package/{dist/cjs → dist-cjs}/runtimeConfig.shared.js +1 -2
  45. package/{dist/es → dist-es}/EFS.js +3 -11
  46. package/{dist/es → dist-es}/EFSClient.js +2 -15
  47. package/{dist/es → dist-es}/commands/CreateAccessPointCommand.js +4 -37
  48. package/dist-es/commands/CreateFileSystemCommand.js +39 -0
  49. package/dist-es/commands/CreateMountTargetCommand.js +39 -0
  50. package/{dist/es → dist-es}/commands/CreateTagsCommand.js +4 -41
  51. package/{dist/es → dist-es}/commands/DeleteAccessPointCommand.js +4 -33
  52. package/dist-es/commands/DeleteFileSystemCommand.js +39 -0
  53. package/{dist/es → dist-es}/commands/DeleteFileSystemPolicyCommand.js +4 -33
  54. package/dist-es/commands/DeleteMountTargetCommand.js +39 -0
  55. package/dist-es/commands/DeleteTagsCommand.js +39 -0
  56. package/{dist/es → dist-es}/commands/DescribeAccessPointsCommand.js +4 -33
  57. package/{dist/es → dist-es}/commands/DescribeAccountPreferencesCommand.js +4 -31
  58. package/{dist/es → dist-es}/commands/DescribeBackupPolicyCommand.js +4 -30
  59. package/{dist/es → dist-es}/commands/DescribeFileSystemPolicyCommand.js +4 -31
  60. package/dist-es/commands/DescribeFileSystemsCommand.js +39 -0
  61. package/{dist/es → dist-es}/commands/DescribeLifecycleConfigurationCommand.js +4 -37
  62. package/{dist/es → dist-es}/commands/DescribeMountTargetSecurityGroupsCommand.js +4 -45
  63. package/{dist/es → dist-es}/commands/DescribeMountTargetsCommand.js +4 -37
  64. package/{dist/es → dist-es}/commands/DescribeTagsCommand.js +4 -40
  65. package/{dist/es → dist-es}/commands/ListTagsForResourceCommand.js +4 -31
  66. package/dist-es/commands/ModifyMountTargetSecurityGroupsCommand.js +39 -0
  67. package/{dist/es → dist-es}/commands/PutAccountPreferencesCommand.js +4 -33
  68. package/{dist/es → dist-es}/commands/PutBackupPolicyCommand.js +4 -30
  69. package/dist-es/commands/PutFileSystemPolicyCommand.js +39 -0
  70. package/dist-es/commands/PutLifecycleConfigurationCommand.js +39 -0
  71. package/{dist/es → dist-es}/commands/TagResourceCommand.js +4 -31
  72. package/{dist/es → dist-es}/commands/UntagResourceCommand.js +4 -31
  73. package/{dist/es → dist-es}/commands/UpdateFileSystemCommand.js +4 -31
  74. package/{dist/es → dist-es}/endpoints.js +1 -2
  75. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  76. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  77. package/{dist/es → dist-es}/models/models_0.js +0 -232
  78. package/{dist/es → dist-es}/pagination/DescribeAccessPointsPaginator.js +17 -30
  79. package/{dist/es → dist-es}/pagination/DescribeFileSystemsPaginator.js +17 -30
  80. package/{dist/es → dist-es}/pagination/DescribeTagsPaginator.js +17 -30
  81. package/dist-es/pagination/Interfaces.js +1 -0
  82. package/{dist/es → dist-es}/pagination/ListTagsForResourcePaginator.js +17 -30
  83. package/{dist/es → dist-es}/protocols/Aws_restJson1.js +750 -748
  84. package/{dist/es → dist-es}/runtimeConfig.browser.js +1 -5
  85. package/{dist/es → dist-es}/runtimeConfig.js +1 -5
  86. package/{dist/es → dist-es}/runtimeConfig.native.js +0 -4
  87. package/{dist/es → dist-es}/runtimeConfig.shared.js +1 -5
  88. package/{dist/types → dist-types}/EFS.d.ts +3 -3
  89. package/{dist/types → dist-types}/EFSClient.d.ts +9 -9
  90. package/{dist/types → dist-types}/commands/CreateAccessPointCommand.d.ts +2 -2
  91. package/{dist/types → dist-types}/commands/CreateFileSystemCommand.d.ts +2 -2
  92. package/{dist/types → dist-types}/commands/CreateMountTargetCommand.d.ts +2 -2
  93. package/{dist/types → dist-types}/commands/CreateTagsCommand.d.ts +2 -2
  94. package/{dist/types → dist-types}/commands/DeleteAccessPointCommand.d.ts +2 -2
  95. package/{dist/types → dist-types}/commands/DeleteFileSystemCommand.d.ts +2 -2
  96. package/{dist/types → dist-types}/commands/DeleteFileSystemPolicyCommand.d.ts +2 -2
  97. package/{dist/types → dist-types}/commands/DeleteMountTargetCommand.d.ts +2 -2
  98. package/{dist/types → dist-types}/commands/DeleteTagsCommand.d.ts +2 -2
  99. package/{dist/types → dist-types}/commands/DescribeAccessPointsCommand.d.ts +2 -2
  100. package/{dist/types → dist-types}/commands/DescribeAccountPreferencesCommand.d.ts +2 -2
  101. package/{dist/types → dist-types}/commands/DescribeBackupPolicyCommand.d.ts +2 -2
  102. package/{dist/types → dist-types}/commands/DescribeFileSystemPolicyCommand.d.ts +2 -2
  103. package/{dist/types → dist-types}/commands/DescribeFileSystemsCommand.d.ts +2 -2
  104. package/{dist/types → dist-types}/commands/DescribeLifecycleConfigurationCommand.d.ts +2 -2
  105. package/{dist/types → dist-types}/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +2 -2
  106. package/{dist/types → dist-types}/commands/DescribeMountTargetsCommand.d.ts +2 -2
  107. package/{dist/types → dist-types}/commands/DescribeTagsCommand.d.ts +2 -2
  108. package/{dist/types → dist-types}/commands/ListTagsForResourceCommand.d.ts +2 -2
  109. package/{dist/types → dist-types}/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +2 -2
  110. package/{dist/types → dist-types}/commands/PutAccountPreferencesCommand.d.ts +2 -2
  111. package/{dist/types → dist-types}/commands/PutBackupPolicyCommand.d.ts +2 -2
  112. package/{dist/types → dist-types}/commands/PutFileSystemPolicyCommand.d.ts +2 -2
  113. package/{dist/types → dist-types}/commands/PutLifecycleConfigurationCommand.d.ts +2 -2
  114. package/{dist/types → dist-types}/commands/TagResourceCommand.d.ts +2 -2
  115. package/{dist/types → dist-types}/commands/UntagResourceCommand.d.ts +2 -2
  116. package/{dist/types → dist-types}/commands/UpdateFileSystemCommand.d.ts +2 -2
  117. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  118. package/{index.ts → dist-types/index.d.ts} +0 -0
  119. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  120. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  121. package/{dist/types → dist-types}/pagination/DescribeAccessPointsPaginator.d.ts +1 -1
  122. package/{dist/types → dist-types}/pagination/DescribeFileSystemsPaginator.d.ts +1 -1
  123. package/{dist/types → dist-types}/pagination/DescribeTagsPaginator.d.ts +1 -1
  124. package/{dist/types → dist-types}/pagination/Interfaces.d.ts +1 -1
  125. package/{dist/types → dist-types}/pagination/ListTagsForResourcePaginator.d.ts +1 -1
  126. package/{dist/types → dist-types}/protocols/Aws_restJson1.d.ts +3 -3
  127. package/{dist/types → dist-types}/runtimeConfig.browser.d.ts +1 -0
  128. package/{dist/types/ts3.4 → dist-types}/runtimeConfig.d.ts +37 -36
  129. package/{dist/types → dist-types}/runtimeConfig.native.d.ts +1 -0
  130. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  131. package/{dist/types → dist-types}/ts3.4/EFS.d.ts +3 -3
  132. package/{dist/types → dist-types}/ts3.4/EFSClient.d.ts +9 -9
  133. package/{dist/types → dist-types}/ts3.4/commands/CreateAccessPointCommand.d.ts +2 -2
  134. package/{dist/types → dist-types}/ts3.4/commands/CreateFileSystemCommand.d.ts +2 -2
  135. package/{dist/types → dist-types}/ts3.4/commands/CreateMountTargetCommand.d.ts +2 -2
  136. package/{dist/types → dist-types}/ts3.4/commands/CreateTagsCommand.d.ts +2 -2
  137. package/{dist/types → dist-types}/ts3.4/commands/DeleteAccessPointCommand.d.ts +2 -2
  138. package/{dist/types → dist-types}/ts3.4/commands/DeleteFileSystemCommand.d.ts +2 -2
  139. package/{dist/types → dist-types}/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +2 -2
  140. package/{dist/types → dist-types}/ts3.4/commands/DeleteMountTargetCommand.d.ts +2 -2
  141. package/{dist/types → dist-types}/ts3.4/commands/DeleteTagsCommand.d.ts +2 -2
  142. package/{dist/types → dist-types}/ts3.4/commands/DescribeAccessPointsCommand.d.ts +2 -2
  143. package/{dist/types → dist-types}/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +2 -2
  144. package/{dist/types → dist-types}/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +2 -2
  145. package/{dist/types → dist-types}/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +2 -2
  146. package/{dist/types → dist-types}/ts3.4/commands/DescribeFileSystemsCommand.d.ts +2 -2
  147. package/{dist/types → dist-types}/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +2 -2
  148. package/{dist/types → dist-types}/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +2 -2
  149. package/{dist/types → dist-types}/ts3.4/commands/DescribeMountTargetsCommand.d.ts +2 -2
  150. package/{dist/types → dist-types}/ts3.4/commands/DescribeTagsCommand.d.ts +2 -2
  151. package/{dist/types → dist-types}/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -2
  152. package/{dist/types → dist-types}/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +2 -2
  153. package/{dist/types → dist-types}/ts3.4/commands/PutAccountPreferencesCommand.d.ts +2 -2
  154. package/{dist/types → dist-types}/ts3.4/commands/PutBackupPolicyCommand.d.ts +2 -2
  155. package/{dist/types → dist-types}/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +2 -2
  156. package/{dist/types → dist-types}/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +2 -2
  157. package/{dist/types → dist-types}/ts3.4/commands/TagResourceCommand.d.ts +2 -2
  158. package/{dist/types → dist-types}/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
  159. package/{dist/types → dist-types}/ts3.4/commands/UpdateFileSystemCommand.d.ts +2 -2
  160. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  161. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  162. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  163. package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
  164. package/{dist/types → dist-types}/ts3.4/pagination/DescribeAccessPointsPaginator.d.ts +1 -1
  165. package/{dist/types → dist-types}/ts3.4/pagination/DescribeFileSystemsPaginator.d.ts +1 -1
  166. package/{dist/types → dist-types}/ts3.4/pagination/DescribeTagsPaginator.d.ts +1 -1
  167. package/{dist/types → dist-types}/ts3.4/pagination/Interfaces.d.ts +1 -1
  168. package/{dist/types → dist-types}/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +1 -1
  169. package/{dist/types → dist-types}/ts3.4/protocols/Aws_restJson1.d.ts +3 -3
  170. package/{dist/types → dist-types}/ts3.4/runtimeConfig.browser.d.ts +1 -0
  171. package/{dist/types → dist-types/ts3.4}/runtimeConfig.d.ts +37 -36
  172. package/{dist/types → dist-types}/ts3.4/runtimeConfig.native.d.ts +1 -0
  173. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  174. package/package.json +52 -49
  175. package/EFS.ts +0 -1385
  176. package/EFSClient.ts +0 -362
  177. package/commands/CreateAccessPointCommand.ts +0 -101
  178. package/commands/CreateFileSystemCommand.ts +0 -147
  179. package/commands/CreateMountTargetCommand.ts +0 -235
  180. package/commands/CreateTagsCommand.ts +0 -105
  181. package/commands/DeleteAccessPointCommand.ts +0 -97
  182. package/commands/DeleteFileSystemCommand.ts +0 -108
  183. package/commands/DeleteFileSystemPolicyCommand.ts +0 -97
  184. package/commands/DeleteMountTargetCommand.ts +0 -127
  185. package/commands/DeleteTagsCommand.ts +0 -106
  186. package/commands/DescribeAccessPointsCommand.ts +0 -97
  187. package/commands/DescribeAccountPreferencesCommand.ts +0 -98
  188. package/commands/DescribeBackupPolicyCommand.ts +0 -94
  189. package/commands/DescribeFileSystemPolicyCommand.ts +0 -95
  190. package/commands/DescribeFileSystemsCommand.ts +0 -116
  191. package/commands/DescribeLifecycleConfigurationCommand.ts +0 -109
  192. package/commands/DescribeMountTargetSecurityGroupsCommand.ts +0 -120
  193. package/commands/DescribeMountTargetsCommand.ts +0 -101
  194. package/commands/DescribeTagsCommand.ts +0 -104
  195. package/commands/ListTagsForResourceCommand.ts +0 -95
  196. package/commands/ModifyMountTargetSecurityGroupsCommand.ts +0 -119
  197. package/commands/PutAccountPreferencesCommand.ts +0 -97
  198. package/commands/PutBackupPolicyCommand.ts +0 -94
  199. package/commands/PutFileSystemPolicyCommand.ts +0 -103
  200. package/commands/PutLifecycleConfigurationCommand.ts +0 -127
  201. package/commands/TagResourceCommand.ts +0 -95
  202. package/commands/UntagResourceCommand.ts +0 -95
  203. package/commands/UpdateFileSystemCommand.ts +0 -95
  204. package/dist/cjs/EFS.js.map +0 -1
  205. package/dist/cjs/EFSClient.js.map +0 -1
  206. package/dist/cjs/commands/CreateAccessPointCommand.js.map +0 -1
  207. package/dist/cjs/commands/CreateFileSystemCommand.js.map +0 -1
  208. package/dist/cjs/commands/CreateMountTargetCommand.js.map +0 -1
  209. package/dist/cjs/commands/CreateTagsCommand.js.map +0 -1
  210. package/dist/cjs/commands/DeleteAccessPointCommand.js.map +0 -1
  211. package/dist/cjs/commands/DeleteFileSystemCommand.js.map +0 -1
  212. package/dist/cjs/commands/DeleteFileSystemPolicyCommand.js.map +0 -1
  213. package/dist/cjs/commands/DeleteMountTargetCommand.js.map +0 -1
  214. package/dist/cjs/commands/DeleteTagsCommand.js.map +0 -1
  215. package/dist/cjs/commands/DescribeAccessPointsCommand.js.map +0 -1
  216. package/dist/cjs/commands/DescribeAccountPreferencesCommand.js.map +0 -1
  217. package/dist/cjs/commands/DescribeBackupPolicyCommand.js.map +0 -1
  218. package/dist/cjs/commands/DescribeFileSystemPolicyCommand.js.map +0 -1
  219. package/dist/cjs/commands/DescribeFileSystemsCommand.js.map +0 -1
  220. package/dist/cjs/commands/DescribeLifecycleConfigurationCommand.js.map +0 -1
  221. package/dist/cjs/commands/DescribeMountTargetSecurityGroupsCommand.js.map +0 -1
  222. package/dist/cjs/commands/DescribeMountTargetsCommand.js.map +0 -1
  223. package/dist/cjs/commands/DescribeTagsCommand.js.map +0 -1
  224. package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
  225. package/dist/cjs/commands/ModifyMountTargetSecurityGroupsCommand.js.map +0 -1
  226. package/dist/cjs/commands/PutAccountPreferencesCommand.js.map +0 -1
  227. package/dist/cjs/commands/PutBackupPolicyCommand.js.map +0 -1
  228. package/dist/cjs/commands/PutFileSystemPolicyCommand.js.map +0 -1
  229. package/dist/cjs/commands/PutLifecycleConfigurationCommand.js.map +0 -1
  230. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  231. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  232. package/dist/cjs/commands/UpdateFileSystemCommand.js.map +0 -1
  233. package/dist/cjs/endpoints.js.map +0 -1
  234. package/dist/cjs/index.js.map +0 -1
  235. package/dist/cjs/models/index.js.map +0 -1
  236. package/dist/cjs/models/models_0.js.map +0 -1
  237. package/dist/cjs/package.json +0 -93
  238. package/dist/cjs/pagination/DescribeAccessPointsPaginator.js.map +0 -1
  239. package/dist/cjs/pagination/DescribeFileSystemsPaginator.js.map +0 -1
  240. package/dist/cjs/pagination/DescribeTagsPaginator.js.map +0 -1
  241. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  242. package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
  243. package/dist/cjs/protocols/Aws_restJson1.js.map +0 -1
  244. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  245. package/dist/cjs/runtimeConfig.js.map +0 -1
  246. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  247. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  248. package/dist/es/EFS.js.map +0 -1
  249. package/dist/es/EFSClient.js.map +0 -1
  250. package/dist/es/commands/CreateAccessPointCommand.js.map +0 -1
  251. package/dist/es/commands/CreateFileSystemCommand.js +0 -118
  252. package/dist/es/commands/CreateFileSystemCommand.js.map +0 -1
  253. package/dist/es/commands/CreateMountTargetCommand.js +0 -206
  254. package/dist/es/commands/CreateMountTargetCommand.js.map +0 -1
  255. package/dist/es/commands/CreateTagsCommand.js.map +0 -1
  256. package/dist/es/commands/DeleteAccessPointCommand.js.map +0 -1
  257. package/dist/es/commands/DeleteFileSystemCommand.js +0 -79
  258. package/dist/es/commands/DeleteFileSystemCommand.js.map +0 -1
  259. package/dist/es/commands/DeleteFileSystemPolicyCommand.js.map +0 -1
  260. package/dist/es/commands/DeleteMountTargetCommand.js +0 -98
  261. package/dist/es/commands/DeleteMountTargetCommand.js.map +0 -1
  262. package/dist/es/commands/DeleteTagsCommand.js +0 -77
  263. package/dist/es/commands/DeleteTagsCommand.js.map +0 -1
  264. package/dist/es/commands/DescribeAccessPointsCommand.js.map +0 -1
  265. package/dist/es/commands/DescribeAccountPreferencesCommand.js.map +0 -1
  266. package/dist/es/commands/DescribeBackupPolicyCommand.js.map +0 -1
  267. package/dist/es/commands/DescribeFileSystemPolicyCommand.js.map +0 -1
  268. package/dist/es/commands/DescribeFileSystemsCommand.js +0 -87
  269. package/dist/es/commands/DescribeFileSystemsCommand.js.map +0 -1
  270. package/dist/es/commands/DescribeLifecycleConfigurationCommand.js.map +0 -1
  271. package/dist/es/commands/DescribeMountTargetSecurityGroupsCommand.js.map +0 -1
  272. package/dist/es/commands/DescribeMountTargetsCommand.js.map +0 -1
  273. package/dist/es/commands/DescribeTagsCommand.js.map +0 -1
  274. package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
  275. package/dist/es/commands/ModifyMountTargetSecurityGroupsCommand.js +0 -84
  276. package/dist/es/commands/ModifyMountTargetSecurityGroupsCommand.js.map +0 -1
  277. package/dist/es/commands/PutAccountPreferencesCommand.js.map +0 -1
  278. package/dist/es/commands/PutBackupPolicyCommand.js.map +0 -1
  279. package/dist/es/commands/PutFileSystemPolicyCommand.js +0 -74
  280. package/dist/es/commands/PutFileSystemPolicyCommand.js.map +0 -1
  281. package/dist/es/commands/PutLifecycleConfigurationCommand.js +0 -95
  282. package/dist/es/commands/PutLifecycleConfigurationCommand.js.map +0 -1
  283. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  284. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  285. package/dist/es/commands/UpdateFileSystemCommand.js.map +0 -1
  286. package/dist/es/endpoints.js.map +0 -1
  287. package/dist/es/index.js +0 -36
  288. package/dist/es/index.js.map +0 -1
  289. package/dist/es/models/index.js +0 -2
  290. package/dist/es/models/index.js.map +0 -1
  291. package/dist/es/models/models_0.js.map +0 -1
  292. package/dist/es/package.json +0 -93
  293. package/dist/es/pagination/DescribeAccessPointsPaginator.js.map +0 -1
  294. package/dist/es/pagination/DescribeFileSystemsPaginator.js.map +0 -1
  295. package/dist/es/pagination/DescribeTagsPaginator.js.map +0 -1
  296. package/dist/es/pagination/Interfaces.js +0 -2
  297. package/dist/es/pagination/Interfaces.js.map +0 -1
  298. package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
  299. package/dist/es/protocols/Aws_restJson1.js.map +0 -1
  300. package/dist/es/runtimeConfig.browser.js.map +0 -1
  301. package/dist/es/runtimeConfig.js.map +0 -1
  302. package/dist/es/runtimeConfig.native.js.map +0 -1
  303. package/dist/es/runtimeConfig.shared.js.map +0 -1
  304. package/endpoints.ts +0 -183
  305. package/jest.config.js +0 -4
  306. package/models/models_0.ts +0 -2185
  307. package/pagination/DescribeAccessPointsPaginator.ts +0 -58
  308. package/pagination/DescribeFileSystemsPaginator.ts +0 -58
  309. package/pagination/DescribeTagsPaginator.ts +0 -58
  310. package/pagination/Interfaces.ts +0 -7
  311. package/pagination/ListTagsForResourcePaginator.ts +0 -58
  312. package/protocols/Aws_restJson1.ts +0 -4417
  313. package/runtimeConfig.browser.ts +0 -40
  314. package/runtimeConfig.native.ts +0 -16
  315. package/runtimeConfig.shared.ts +0 -16
  316. package/runtimeConfig.ts +0 -45
  317. package/tsconfig.es.json +0 -12
  318. package/tsconfig.json +0 -32
@@ -1,2185 +0,0 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
-
3
- /**
4
- * <p>Returned if the access point you are trying to create already exists, with the
5
- * creation token you provided in the request.</p>
6
- */
7
- export interface AccessPointAlreadyExists extends __SmithyException, $MetadataBearer {
8
- name: "AccessPointAlreadyExists";
9
- $fault: "client";
10
- ErrorCode: string | undefined;
11
- Message?: string;
12
- AccessPointId: string | undefined;
13
- }
14
-
15
- export namespace AccessPointAlreadyExists {
16
- /**
17
- * @internal
18
- */
19
- export const filterSensitiveLog = (obj: AccessPointAlreadyExists): any => ({
20
- ...obj,
21
- });
22
- }
23
-
24
- export enum LifeCycleState {
25
- AVAILABLE = "available",
26
- CREATING = "creating",
27
- DELETED = "deleted",
28
- DELETING = "deleting",
29
- ERROR = "error",
30
- UPDATING = "updating",
31
- }
32
-
33
- /**
34
- * <p>The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by
35
- * NFS clients using the access point.</p>
36
- */
37
- export interface PosixUser {
38
- /**
39
- * <p>The POSIX user ID used for all file system operations using this access point.</p>
40
- */
41
- Uid: number | undefined;
42
-
43
- /**
44
- * <p>The POSIX group ID used for all file system operations using this access point.</p>
45
- */
46
- Gid: number | undefined;
47
-
48
- /**
49
- * <p>Secondary POSIX group IDs used for all file system operations using this access point.</p>
50
- */
51
- SecondaryGids?: number[];
52
- }
53
-
54
- export namespace PosixUser {
55
- /**
56
- * @internal
57
- */
58
- export const filterSensitiveLog = (obj: PosixUser): any => ({
59
- ...obj,
60
- });
61
- }
62
-
63
- /**
64
- * <p>Required if the <code>RootDirectory</code> > <code>Path</code> specified does not exist.
65
- * Specifies the POSIX IDs and permissions to apply to the access point's <code>RootDirectory</code> > <code>Path</code>.
66
- * If the access point root directory does not exist, EFS creates it with these settings when a client connects to the access point.
67
- * When specifying <code>CreationInfo</code>, you must include values for all properties.
68
- * </p>
69
- * <p>Amazon EFS creates a root directory only if you have provided the CreationInfo: OwnUid, OwnGID, and permissions for the directory.
70
- * If you do not provide this information, Amazon EFS does not create the root directory. If the root directory does not exist, attempts to mount
71
- * using the access point will fail.</p>
72
- * <important>
73
- * <p>If you do not provide <code>CreationInfo</code> and the specified <code>RootDirectory</code> does not exist,
74
- * attempts to mount the file system using the access point will fail.</p>
75
- * </important>
76
- */
77
- export interface CreationInfo {
78
- /**
79
- * <p>Specifies the POSIX user ID to apply to the <code>RootDirectory</code>. Accepts values from 0 to 2^32 (4294967295).</p>
80
- */
81
- OwnerUid: number | undefined;
82
-
83
- /**
84
- * <p>Specifies the POSIX group ID to apply to the <code>RootDirectory</code>. Accepts values from 0 to 2^32 (4294967295).</p>
85
- */
86
- OwnerGid: number | undefined;
87
-
88
- /**
89
- * <p>Specifies the POSIX permissions to apply to the <code>RootDirectory</code>, in the format of an octal number representing the file's mode bits.</p>
90
- */
91
- Permissions: string | undefined;
92
- }
93
-
94
- export namespace CreationInfo {
95
- /**
96
- * @internal
97
- */
98
- export const filterSensitiveLog = (obj: CreationInfo): any => ({
99
- ...obj,
100
- });
101
- }
102
-
103
- /**
104
- * <p>Specifies the directory on the Amazon EFS file system that the access point provides access to.
105
- * The access point exposes the specified file system path as
106
- * the root directory of your file system to applications using the access point.
107
- * NFS clients using the access point can only access data in the access point's <code>RootDirectory</code> and it's subdirectories.</p>
108
- */
109
- export interface RootDirectory {
110
- /**
111
- * <p>Specifies the path on the EFS file system to expose as the root directory to NFS clients using the access point to access the EFS file system.
112
- * A path can have up to four subdirectories.
113
- * If the specified path does not exist, you are required to provide the <code>CreationInfo</code>.</p>
114
- */
115
- Path?: string;
116
-
117
- /**
118
- * <p>(Optional) Specifies the POSIX IDs and permissions to apply to the access point's <code>RootDirectory</code>.
119
- * If the <code>RootDirectory</code> > <code>Path</code> specified does not exist,
120
- * EFS creates the root directory using the <code>CreationInfo</code> settings when a client connects to an access point.
121
- * When specifying the <code>CreationInfo</code>, you must provide values for all properties.
122
- * </p>
123
- * <important>
124
- * <p>If you do not provide <code>CreationInfo</code> and the specified <code>RootDirectory</code> > <code>Path</code> does not exist,
125
- * attempts to mount the file system using the access point will fail.</p>
126
- * </important>
127
- */
128
- CreationInfo?: CreationInfo;
129
- }
130
-
131
- export namespace RootDirectory {
132
- /**
133
- * @internal
134
- */
135
- export const filterSensitiveLog = (obj: RootDirectory): any => ({
136
- ...obj,
137
- });
138
- }
139
-
140
- /**
141
- * <p>A tag is a key-value pair. Allowed characters are letters, white space, and numbers that
142
- * can be represented in UTF-8, and the following characters:<code> + - = . _ : /</code>.</p>
143
- */
144
- export interface Tag {
145
- /**
146
- * <p>The tag key (String). The key can't start with <code>aws:</code>.</p>
147
- */
148
- Key: string | undefined;
149
-
150
- /**
151
- * <p>The value of the tag key.</p>
152
- */
153
- Value: string | undefined;
154
- }
155
-
156
- export namespace Tag {
157
- /**
158
- * @internal
159
- */
160
- export const filterSensitiveLog = (obj: Tag): any => ({
161
- ...obj,
162
- });
163
- }
164
-
165
- /**
166
- * <p>Provides a description of an EFS file system access point.</p>
167
- */
168
- export interface AccessPointDescription {
169
- /**
170
- * <p>The opaque string specified in the request to ensure idempotent creation.</p>
171
- */
172
- ClientToken?: string;
173
-
174
- /**
175
- * <p>The name of the access point. This is the value of the <code>Name</code> tag.</p>
176
- */
177
- Name?: string;
178
-
179
- /**
180
- * <p>The tags associated with the access point, presented as an array of Tag objects.</p>
181
- */
182
- Tags?: Tag[];
183
-
184
- /**
185
- * <p>The ID of the access point, assigned by Amazon EFS.</p>
186
- */
187
- AccessPointId?: string;
188
-
189
- /**
190
- * <p>The unique Amazon Resource Name (ARN) associated with the access point.</p>
191
- */
192
- AccessPointArn?: string;
193
-
194
- /**
195
- * <p>The ID of the EFS file system that the access point applies to.</p>
196
- */
197
- FileSystemId?: string;
198
-
199
- /**
200
- * <p>The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by
201
- * NFS clients using the access point.</p>
202
- */
203
- PosixUser?: PosixUser;
204
-
205
- /**
206
- * <p>The directory on the Amazon EFS file system that the access point exposes as the root directory to NFS clients using the access point.</p>
207
- */
208
- RootDirectory?: RootDirectory;
209
-
210
- /**
211
- * <p>Identified the Amazon Web Services account that owns the access point resource.</p>
212
- */
213
- OwnerId?: string;
214
-
215
- /**
216
- * <p>Identifies the lifecycle phase of the access point.</p>
217
- */
218
- LifeCycleState?: LifeCycleState | string;
219
- }
220
-
221
- export namespace AccessPointDescription {
222
- /**
223
- * @internal
224
- */
225
- export const filterSensitiveLog = (obj: AccessPointDescription): any => ({
226
- ...obj,
227
- });
228
- }
229
-
230
- /**
231
- * <p>Returned if the Amazon Web Services account has already created the maximum number of access points
232
- * allowed per file system.</p>
233
- */
234
- export interface AccessPointLimitExceeded extends __SmithyException, $MetadataBearer {
235
- name: "AccessPointLimitExceeded";
236
- $fault: "client";
237
- ErrorCode: string | undefined;
238
- Message?: string;
239
- }
240
-
241
- export namespace AccessPointLimitExceeded {
242
- /**
243
- * @internal
244
- */
245
- export const filterSensitiveLog = (obj: AccessPointLimitExceeded): any => ({
246
- ...obj,
247
- });
248
- }
249
-
250
- /**
251
- * <p>Returned if the specified <code>AccessPointId</code> value doesn't exist in the
252
- * requester's Amazon Web Services account.</p>
253
- */
254
- export interface AccessPointNotFound extends __SmithyException, $MetadataBearer {
255
- name: "AccessPointNotFound";
256
- $fault: "client";
257
- ErrorCode: string | undefined;
258
- Message?: string;
259
- }
260
-
261
- export namespace AccessPointNotFound {
262
- /**
263
- * @internal
264
- */
265
- export const filterSensitiveLog = (obj: AccessPointNotFound): any => ({
266
- ...obj,
267
- });
268
- }
269
-
270
- /**
271
- * <p>Returned if the Availability Zone that was specified for a mount target is different from the Availability Zone that was specified for One Zone storage classes.
272
- * For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/availability-durability.html">Regional and One Zone storage redundancy</a>.</p>
273
- */
274
- export interface AvailabilityZonesMismatch extends __SmithyException, $MetadataBearer {
275
- name: "AvailabilityZonesMismatch";
276
- $fault: "client";
277
- ErrorCode?: string;
278
- Message?: string;
279
- }
280
-
281
- export namespace AvailabilityZonesMismatch {
282
- /**
283
- * @internal
284
- */
285
- export const filterSensitiveLog = (obj: AvailabilityZonesMismatch): any => ({
286
- ...obj,
287
- });
288
- }
289
-
290
- export enum Status {
291
- DISABLED = "DISABLED",
292
- DISABLING = "DISABLING",
293
- ENABLED = "ENABLED",
294
- ENABLING = "ENABLING",
295
- }
296
-
297
- /**
298
- * <p>The backup policy for the file system used to create automatic daily backups. If status has a value of
299
- * <code>ENABLED</code>, the file system is being automatically backed up. For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/awsbackup.html#automatic-backups">Automatic backups</a>.</p>
300
- */
301
- export interface BackupPolicy {
302
- /**
303
- * <p>Describes the status of the file system's backup policy.</p>
304
- * <ul>
305
- * <li>
306
- * <p>
307
- * <b>
308
- * <code>ENABLED</code>
309
- * </b> - EFS is automatically backing up the file system.</p>
310
- * </li>
311
- * <li>
312
- * <p>
313
- * <b>
314
- * <code>ENABLING</code>
315
- * </b> - EFS is turning on automatic backups for the file system.</p>
316
- * </li>
317
- * <li>
318
- * <p>
319
- * <b>
320
- * <code>DISABLED</code>
321
- * </b> - automatic back ups are turned off for the file system.</p>
322
- * </li>
323
- * <li>
324
- * <p>
325
- * <b>
326
- * <code>DISABLING</code>
327
- * </b> - EFS is turning off automatic backups for the file system.</p>
328
- * </li>
329
- * </ul>
330
- */
331
- Status: Status | string | undefined;
332
- }
333
-
334
- export namespace BackupPolicy {
335
- /**
336
- * @internal
337
- */
338
- export const filterSensitiveLog = (obj: BackupPolicy): any => ({
339
- ...obj,
340
- });
341
- }
342
-
343
- export interface BackupPolicyDescription {
344
- /**
345
- * <p>Describes the file system's backup policy, indicating whether automatic backups are turned on or off..</p>
346
- */
347
- BackupPolicy?: BackupPolicy;
348
- }
349
-
350
- export namespace BackupPolicyDescription {
351
- /**
352
- * @internal
353
- */
354
- export const filterSensitiveLog = (obj: BackupPolicyDescription): any => ({
355
- ...obj,
356
- });
357
- }
358
-
359
- /**
360
- * <p>Returned if the request is malformed or contains an error such as an invalid
361
- * parameter value or a missing required parameter.</p>
362
- */
363
- export interface BadRequest extends __SmithyException, $MetadataBearer {
364
- name: "BadRequest";
365
- $fault: "client";
366
- ErrorCode: string | undefined;
367
- Message?: string;
368
- }
369
-
370
- export namespace BadRequest {
371
- /**
372
- * @internal
373
- */
374
- export const filterSensitiveLog = (obj: BadRequest): any => ({
375
- ...obj,
376
- });
377
- }
378
-
379
- export interface CreateAccessPointRequest {
380
- /**
381
- * <p>A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent
382
- * creation.</p>
383
- */
384
- ClientToken?: string;
385
-
386
- /**
387
- * <p>Creates tags associated with the access point. Each tag is a key-value pair, each key must be unique. For more
388
- * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a>
389
- * in the <i>Amazon Web Services General Reference Guide</i>.</p>
390
- */
391
- Tags?: Tag[];
392
-
393
- /**
394
- * <p>The ID of the EFS file system that the access point provides access to.</p>
395
- */
396
- FileSystemId: string | undefined;
397
-
398
- /**
399
- * <p>The operating system user and
400
- * group applied to all file system requests made using the access point.</p>
401
- */
402
- PosixUser?: PosixUser;
403
-
404
- /**
405
- * <p>Specifies the directory on the Amazon EFS file system that the access point exposes as
406
- * the root directory of your file system to NFS clients using the access point.
407
- * The clients using the access point can only access the root directory and below.
408
- * If the <code>RootDirectory</code> > <code>Path</code> specified does not exist,
409
- * EFS creates it and applies the <code>CreationInfo</code> settings when a client connects to an access point.
410
- * When specifying a <code>RootDirectory</code>, you need to provide the <code>Path</code>, and the <code>CreationInfo</code>.</p>
411
- * <p>Amazon EFS creates a root directory only if you have provided the CreationInfo: OwnUid, OwnGID, and permissions for the directory.
412
- * If you do not provide this information, Amazon EFS does not create the root directory. If the root directory does not exist, attempts to mount
413
- * using the access point will fail.</p>
414
- */
415
- RootDirectory?: RootDirectory;
416
- }
417
-
418
- export namespace CreateAccessPointRequest {
419
- /**
420
- * @internal
421
- */
422
- export const filterSensitiveLog = (obj: CreateAccessPointRequest): any => ({
423
- ...obj,
424
- });
425
- }
426
-
427
- /**
428
- * <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
429
- * requester's Amazon Web Services account.</p>
430
- */
431
- export interface FileSystemNotFound extends __SmithyException, $MetadataBearer {
432
- name: "FileSystemNotFound";
433
- $fault: "client";
434
- ErrorCode: string | undefined;
435
- Message?: string;
436
- }
437
-
438
- export namespace FileSystemNotFound {
439
- /**
440
- * @internal
441
- */
442
- export const filterSensitiveLog = (obj: FileSystemNotFound): any => ({
443
- ...obj,
444
- });
445
- }
446
-
447
- /**
448
- * <p>Returned if the file system's lifecycle state is not "available".</p>
449
- */
450
- export interface IncorrectFileSystemLifeCycleState extends __SmithyException, $MetadataBearer {
451
- name: "IncorrectFileSystemLifeCycleState";
452
- $fault: "client";
453
- ErrorCode: string | undefined;
454
- Message?: string;
455
- }
456
-
457
- export namespace IncorrectFileSystemLifeCycleState {
458
- /**
459
- * @internal
460
- */
461
- export const filterSensitiveLog = (obj: IncorrectFileSystemLifeCycleState): any => ({
462
- ...obj,
463
- });
464
- }
465
-
466
- /**
467
- * <p>Returned if an error occurred on the server side.</p>
468
- */
469
- export interface InternalServerError extends __SmithyException, $MetadataBearer {
470
- name: "InternalServerError";
471
- $fault: "server";
472
- ErrorCode: string | undefined;
473
- Message?: string;
474
- }
475
-
476
- export namespace InternalServerError {
477
- /**
478
- * @internal
479
- */
480
- export const filterSensitiveLog = (obj: InternalServerError): any => ({
481
- ...obj,
482
- });
483
- }
484
-
485
- export enum PerformanceMode {
486
- GENERAL_PURPOSE = "generalPurpose",
487
- MAX_IO = "maxIO",
488
- }
489
-
490
- export enum ThroughputMode {
491
- BURSTING = "bursting",
492
- PROVISIONED = "provisioned",
493
- }
494
-
495
- export interface CreateFileSystemRequest {
496
- /**
497
- * <p>A string of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent
498
- * creation.</p>
499
- */
500
- CreationToken?: string;
501
-
502
- /**
503
- * <p>The performance mode of the file system. We recommend <code>generalPurpose</code>
504
- * performance mode for most file systems. File systems using the <code>maxIO</code> performance
505
- * mode can scale to higher levels of aggregate throughput and operations per second with a
506
- * tradeoff of slightly higher latencies for most file operations. The performance mode
507
- * can't be changed after the file system has been created.</p>
508
- * <note>
509
- * <p>The <code>maxIO</code> mode is not supported on file systems using One Zone storage classes.</p>
510
- * </note>
511
- */
512
- PerformanceMode?: PerformanceMode | string;
513
-
514
- /**
515
- * <p>A Boolean value that, if true, creates an encrypted file system. When creating an
516
- * encrypted file system, you have the option of specifying <a>CreateFileSystemRequest$KmsKeyId</a> for an existing Key Management Service (KMS
517
- * customer master key (CMK). If you don't specify a CMK, then the default CMK for
518
- * Amazon EFS, <code>/aws/elasticfilesystem</code>, is used to protect the encrypted file system.
519
- * </p>
520
- */
521
- Encrypted?: boolean;
522
-
523
- /**
524
- * <p>The ID of the KMS CMK that you want to use to protect the encrypted file system. This
525
- * parameter is only required if you want to use a non-default KMS key. If this parameter is not
526
- * specified, the default CMK for Amazon EFS is used. This ID can be in one of the following
527
- * formats:</p>
528
- * <ul>
529
- * <li>
530
- * <p>Key ID - A unique identifier of the key, for example
531
- * <code>1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p>
532
- * </li>
533
- * <li>
534
- * <p>ARN - An Amazon Resource Name (ARN) for the key, for example
535
- * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p>
536
- * </li>
537
- * <li>
538
- * <p>Key alias - A previously created display name for a key, for example
539
- * <code>alias/projectKey1</code>.</p>
540
- * </li>
541
- * <li>
542
- * <p>Key alias ARN - An ARN for a key alias, for example
543
- * <code>arn:aws:kms:us-west-2:444455556666:alias/projectKey1</code>.</p>
544
- * </li>
545
- * </ul>
546
- * <p>If <code>KmsKeyId</code> is specified, the <a>CreateFileSystemRequest$Encrypted</a> parameter must be set to true.</p>
547
- * <important>
548
- * <p>EFS accepts only symmetric KMS keys. You cannot use asymmetric KMS keys with EFS file systems.</p>
549
- * </important>
550
- */
551
- KmsKeyId?: string;
552
-
553
- /**
554
- * <p>Specifies the throughput mode for the file system, either <code>bursting</code> or
555
- * <code>provisioned</code>. If you set <code>ThroughputMode</code> to
556
- * <code>provisioned</code>, you must also set a value for
557
- * <code>ProvisionedThroughputInMibps</code>. After you create the file system, you can
558
- * decrease your file system's throughput in Provisioned Throughput mode or change between
559
- * the throughput modes, as long as it’s been more than 24 hours since the last decrease or
560
- * throughput mode change. For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/performance.html#provisioned-throughput">Specifying throughput with
561
- * provisioned mode</a> in the <i>Amazon EFS User Guide</i>. </p>
562
- * <p>Default is <code>bursting</code>.</p>
563
- */
564
- ThroughputMode?: ThroughputMode | string;
565
-
566
- /**
567
- * <p>The throughput, measured in MiB/s, that you want to provision for a file system that
568
- * you're creating. Valid values are 1-1024. Required if <code>ThroughputMode</code> is set
569
- * to <code>provisioned</code>. The upper limit for throughput is 1024 MiB/s. To increase this
570
- * limit, contact Amazon Web Services Support. For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/limits.html#soft-limits">Amazon EFS quotas that you can increase</a>
571
- * in the <i>Amazon EFS User Guide</i>.</p>
572
- */
573
- ProvisionedThroughputInMibps?: number;
574
-
575
- /**
576
- * <p>Used to create a file system that uses One Zone storage classes. It specifies the Amazon Web Services
577
- * Availability Zone in which to create the file system. Use the format <code>us-east-1a</code>
578
- * to specify the Availability Zone. For
579
- * more information about One Zone storage classes, see <a href="https://docs.aws.amazon.com/efs/latest/ug/storage-classes.html">Using EFS storage classes</a> in the <i>Amazon EFS User Guide</i>.</p>
580
- * <note>
581
- * <p>One Zone storage classes are not available in all Availability Zones in Amazon Web Services Regions where
582
- * Amazon EFS is available.</p>
583
- * </note>
584
- */
585
- AvailabilityZoneName?: string;
586
-
587
- /**
588
- * <p>Specifies whether automatic backups are enabled on the file system that you are creating.
589
- * Set the value to <code>true</code> to enable automatic backups. If you are creating a file
590
- * system that uses One Zone storage classes, automatic backups are enabled by default. For more
591
- * information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/awsbackup.html#automatic-backups">Automatic backups</a> in the
592
- * <i>Amazon EFS User Guide</i>.</p>
593
- * <p>Default is <code>false</code>. However, if you specify an <code>AvailabilityZoneName</code>,
594
- * the default is <code>true</code>.</p>
595
- * <note>
596
- * <p>Backup is not available in all Amazon Web Services Regionswhere Amazon EFS is available.</p>
597
- * </note>
598
- */
599
- Backup?: boolean;
600
-
601
- /**
602
- * <p>Use to create one or more tags associated with the file system. Each
603
- * tag is a user-defined key-value pair. Name your file system on creation by including a
604
- * <code>"Key":"Name","Value":"{value}"</code> key-value pair. Each key must be unique. For more
605
- * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a>
606
- * in the <i>Amazon Web Services General Reference Guide</i>.</p>
607
- */
608
- Tags?: Tag[];
609
- }
610
-
611
- export namespace CreateFileSystemRequest {
612
- /**
613
- * @internal
614
- */
615
- export const filterSensitiveLog = (obj: CreateFileSystemRequest): any => ({
616
- ...obj,
617
- });
618
- }
619
-
620
- /**
621
- * <p>Returned if the file system you are trying to create already exists, with the
622
- * creation token you provided.</p>
623
- */
624
- export interface FileSystemAlreadyExists extends __SmithyException, $MetadataBearer {
625
- name: "FileSystemAlreadyExists";
626
- $fault: "client";
627
- ErrorCode: string | undefined;
628
- Message?: string;
629
- FileSystemId: string | undefined;
630
- }
631
-
632
- export namespace FileSystemAlreadyExists {
633
- /**
634
- * @internal
635
- */
636
- export const filterSensitiveLog = (obj: FileSystemAlreadyExists): any => ({
637
- ...obj,
638
- });
639
- }
640
-
641
- /**
642
- * <p>The latest known metered size (in bytes) of data stored in the file system, in its
643
- * <code>Value</code> field, and the time at which that size was determined in its
644
- * <code>Timestamp</code> field. The value doesn't represent the size of a consistent
645
- * snapshot of the file system, but it is eventually consistent when there are no writes to the
646
- * file system. That is, the value represents the actual size only if the file system is not
647
- * modified for a period longer than a couple of hours. Otherwise, the value is not necessarily
648
- * the exact size the file system was at any instant in time.</p>
649
- */
650
- export interface FileSystemSize {
651
- /**
652
- * <p>The latest known metered size (in bytes) of data stored in the file system.</p>
653
- */
654
- Value: number | undefined;
655
-
656
- /**
657
- * <p>The time at which the size of data, returned in the <code>Value</code> field, was
658
- * determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.</p>
659
- */
660
- Timestamp?: Date;
661
-
662
- /**
663
- * <p>The latest known metered size (in bytes) of data stored in the Infrequent Access
664
- * storage class.</p>
665
- */
666
- ValueInIA?: number;
667
-
668
- /**
669
- * <p>The latest known metered size (in bytes) of data stored in the Standard storage
670
- * class.</p>
671
- */
672
- ValueInStandard?: number;
673
- }
674
-
675
- export namespace FileSystemSize {
676
- /**
677
- * @internal
678
- */
679
- export const filterSensitiveLog = (obj: FileSystemSize): any => ({
680
- ...obj,
681
- });
682
- }
683
-
684
- /**
685
- * <p>A description of the file system.</p>
686
- */
687
- export interface FileSystemDescription {
688
- /**
689
- * <p>The Amazon Web Services account that created the file system. If the file system was created by an IAM
690
- * user, the parent account to which the user belongs is the owner.</p>
691
- */
692
- OwnerId: string | undefined;
693
-
694
- /**
695
- * <p>The opaque string specified in the request.</p>
696
- */
697
- CreationToken: string | undefined;
698
-
699
- /**
700
- * <p>The ID of the file system, assigned by Amazon EFS.</p>
701
- */
702
- FileSystemId: string | undefined;
703
-
704
- /**
705
- * <p>The Amazon Resource Name (ARN) for the EFS file system, in the format
706
- * <code>arn:aws:elasticfilesystem:<i>region</i>:<i>account-id</i>:file-system/<i>file-system-id</i>
707
- * </code>.
708
- * Example with sample data: <code>arn:aws:elasticfilesystem:us-west-2:1111333322228888:file-system/fs-01234567</code>
709
- * </p>
710
- */
711
- FileSystemArn?: string;
712
-
713
- /**
714
- * <p>The time that the file system was created, in seconds (since
715
- * 1970-01-01T00:00:00Z).</p>
716
- */
717
- CreationTime: Date | undefined;
718
-
719
- /**
720
- * <p>The lifecycle phase of the file system.</p>
721
- */
722
- LifeCycleState: LifeCycleState | string | undefined;
723
-
724
- /**
725
- * <p>You can add tags to a file system, including a <code>Name</code> tag. For more
726
- * information, see <a>CreateFileSystem</a>. If the file system has a <code>Name</code> tag, Amazon EFS returns
727
- * the value in this field. </p>
728
- */
729
- Name?: string;
730
-
731
- /**
732
- * <p>The current number of mount targets that the file system has. For more information, see <a>CreateMountTarget</a>.</p>
733
- */
734
- NumberOfMountTargets: number | undefined;
735
-
736
- /**
737
- * <p>The latest known metered size (in bytes) of data stored in the file system, in its
738
- * <code>Value</code> field, and the time at which that size was determined in its
739
- * <code>Timestamp</code> field. The <code>Timestamp</code> value is the integer number of
740
- * seconds since 1970-01-01T00:00:00Z. The <code>SizeInBytes</code> value doesn't represent
741
- * the size of a consistent snapshot of the file system, but it is eventually consistent when
742
- * there are no writes to the file system. That is, <code>SizeInBytes</code> represents actual
743
- * size only if the file system is not modified for a period longer than a couple of hours.
744
- * Otherwise, the value is not the exact size that the file system was at any point in time.
745
- * </p>
746
- */
747
- SizeInBytes: FileSystemSize | undefined;
748
-
749
- /**
750
- * <p>The performance mode of the file system.</p>
751
- */
752
- PerformanceMode: PerformanceMode | string | undefined;
753
-
754
- /**
755
- * <p>A Boolean value that, if true, indicates that the file system is encrypted.</p>
756
- */
757
- Encrypted?: boolean;
758
-
759
- /**
760
- * <p>The ID of an Key Management Service customer master key (CMK) that was
761
- * used to protect the encrypted file system.</p>
762
- */
763
- KmsKeyId?: string;
764
-
765
- /**
766
- * <p>Displays the file system's throughput mode. For more information, see
767
- * <a href="https://docs.aws.amazon.com/efs/latest/ug/performance.html#throughput-modes">Throughput modes</a>
768
- * in the <i>Amazon EFS User Guide</i>.
769
- * </p>
770
- */
771
- ThroughputMode?: ThroughputMode | string;
772
-
773
- /**
774
- * <p>The amount of provisioned throughput, measured in MiB/s, for the file system. Valid for
775
- * file systems using <code>ThroughputMode</code> set to <code>provisioned</code>.</p>
776
- */
777
- ProvisionedThroughputInMibps?: number;
778
-
779
- /**
780
- * <p>Describes the Amazon Web Services Availability Zone in which the file system is located, and is valid only
781
- * for file systems using One Zone storage classes. For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/storage-classes.html">Using EFS storage classes</a>
782
- * in the <i>Amazon EFS User Guide</i>.</p>
783
- */
784
- AvailabilityZoneName?: string;
785
-
786
- /**
787
- * <p>The unique and consistent identifier of the Availability Zone in which the file system's
788
- * One Zone storage classes exist. For example, <code>use1-az1</code> is an Availability Zone ID
789
- * for the us-east-1 Amazon Web Services Region, and it has the same location in every Amazon Web Services account.</p>
790
- */
791
- AvailabilityZoneId?: string;
792
-
793
- /**
794
- * <p>The tags associated with the file system, presented as an array of <code>Tag</code>
795
- * objects.</p>
796
- */
797
- Tags: Tag[] | undefined;
798
- }
799
-
800
- export namespace FileSystemDescription {
801
- /**
802
- * @internal
803
- */
804
- export const filterSensitiveLog = (obj: FileSystemDescription): any => ({
805
- ...obj,
806
- });
807
- }
808
-
809
- /**
810
- * <p>Returned if the Amazon Web Services account has already created the maximum number of file systems
811
- * allowed per account.</p>
812
- */
813
- export interface FileSystemLimitExceeded extends __SmithyException, $MetadataBearer {
814
- name: "FileSystemLimitExceeded";
815
- $fault: "client";
816
- ErrorCode: string | undefined;
817
- Message?: string;
818
- }
819
-
820
- export namespace FileSystemLimitExceeded {
821
- /**
822
- * @internal
823
- */
824
- export const filterSensitiveLog = (obj: FileSystemLimitExceeded): any => ({
825
- ...obj,
826
- });
827
- }
828
-
829
- /**
830
- * <p>Returned if there's not enough capacity to provision additional throughput. This value
831
- * might be returned when you try to create a file system in provisioned throughput mode,
832
- * when you attempt to increase the provisioned throughput of an existing file system, or
833
- * when you attempt to change an existing file system from bursting to provisioned
834
- * throughput mode. Try again later.</p>
835
- */
836
- export interface InsufficientThroughputCapacity extends __SmithyException, $MetadataBearer {
837
- name: "InsufficientThroughputCapacity";
838
- $fault: "server";
839
- ErrorCode: string | undefined;
840
- Message?: string;
841
- }
842
-
843
- export namespace InsufficientThroughputCapacity {
844
- /**
845
- * @internal
846
- */
847
- export const filterSensitiveLog = (obj: InsufficientThroughputCapacity): any => ({
848
- ...obj,
849
- });
850
- }
851
-
852
- /**
853
- * <p>Returned if the throughput mode or amount of provisioned throughput can't be changed
854
- * because the throughput limit of 1024 MiB/s has been reached.</p>
855
- */
856
- export interface ThroughputLimitExceeded extends __SmithyException, $MetadataBearer {
857
- name: "ThroughputLimitExceeded";
858
- $fault: "client";
859
- ErrorCode: string | undefined;
860
- Message?: string;
861
- }
862
-
863
- export namespace ThroughputLimitExceeded {
864
- /**
865
- * @internal
866
- */
867
- export const filterSensitiveLog = (obj: ThroughputLimitExceeded): any => ({
868
- ...obj,
869
- });
870
- }
871
-
872
- /**
873
- * <p>Returned if the requested Amazon EFS functionality is not available in the specified Availability Zone.</p>
874
- */
875
- export interface UnsupportedAvailabilityZone extends __SmithyException, $MetadataBearer {
876
- name: "UnsupportedAvailabilityZone";
877
- $fault: "client";
878
- ErrorCode: string | undefined;
879
- Message?: string;
880
- }
881
-
882
- export namespace UnsupportedAvailabilityZone {
883
- /**
884
- * @internal
885
- */
886
- export const filterSensitiveLog = (obj: UnsupportedAvailabilityZone): any => ({
887
- ...obj,
888
- });
889
- }
890
-
891
- /**
892
- * <p></p>
893
- */
894
- export interface CreateMountTargetRequest {
895
- /**
896
- * <p>The ID of the file system for which to create the mount target.</p>
897
- */
898
- FileSystemId: string | undefined;
899
-
900
- /**
901
- * <p>The ID of the subnet to add the mount target in. For file systems that use One Zone storage classes, use the subnet
902
- * that is associated with the file system's Availability Zone.</p>
903
- */
904
- SubnetId: string | undefined;
905
-
906
- /**
907
- * <p>Valid IPv4 address within the address range of the specified subnet.</p>
908
- */
909
- IpAddress?: string;
910
-
911
- /**
912
- * <p>Up to five VPC security group IDs, of the form <code>sg-xxxxxxxx</code>. These must be
913
- * for the same VPC as subnet specified.</p>
914
- */
915
- SecurityGroups?: string[];
916
- }
917
-
918
- export namespace CreateMountTargetRequest {
919
- /**
920
- * @internal
921
- */
922
- export const filterSensitiveLog = (obj: CreateMountTargetRequest): any => ({
923
- ...obj,
924
- });
925
- }
926
-
927
- /**
928
- * <p>Returned if the request specified an <code>IpAddress</code> that is already in use
929
- * in the subnet.</p>
930
- */
931
- export interface IpAddressInUse extends __SmithyException, $MetadataBearer {
932
- name: "IpAddressInUse";
933
- $fault: "client";
934
- ErrorCode: string | undefined;
935
- Message?: string;
936
- }
937
-
938
- export namespace IpAddressInUse {
939
- /**
940
- * @internal
941
- */
942
- export const filterSensitiveLog = (obj: IpAddressInUse): any => ({
943
- ...obj,
944
- });
945
- }
946
-
947
- /**
948
- * <p>Returned if the mount target would violate one of the specified restrictions based
949
- * on the file system's existing mount targets.</p>
950
- */
951
- export interface MountTargetConflict extends __SmithyException, $MetadataBearer {
952
- name: "MountTargetConflict";
953
- $fault: "client";
954
- ErrorCode: string | undefined;
955
- Message?: string;
956
- }
957
-
958
- export namespace MountTargetConflict {
959
- /**
960
- * @internal
961
- */
962
- export const filterSensitiveLog = (obj: MountTargetConflict): any => ({
963
- ...obj,
964
- });
965
- }
966
-
967
- /**
968
- * <p>Provides a description of a mount target.</p>
969
- */
970
- export interface MountTargetDescription {
971
- /**
972
- * <p>Amazon Web Services account ID that owns the resource.</p>
973
- */
974
- OwnerId?: string;
975
-
976
- /**
977
- * <p>System-assigned mount target ID.</p>
978
- */
979
- MountTargetId: string | undefined;
980
-
981
- /**
982
- * <p>The ID of the file system for which the mount target is intended.</p>
983
- */
984
- FileSystemId: string | undefined;
985
-
986
- /**
987
- * <p>The ID of the mount target's subnet.</p>
988
- */
989
- SubnetId: string | undefined;
990
-
991
- /**
992
- * <p>Lifecycle state of the mount target.</p>
993
- */
994
- LifeCycleState: LifeCycleState | string | undefined;
995
-
996
- /**
997
- * <p>Address at which the file system can be mounted by using the mount target.</p>
998
- */
999
- IpAddress?: string;
1000
-
1001
- /**
1002
- * <p>The ID of the network interface that Amazon EFS created when it created the mount
1003
- * target.</p>
1004
- */
1005
- NetworkInterfaceId?: string;
1006
-
1007
- /**
1008
- * <p>The unique and consistent identifier of the Availability Zone that the mount target resides in.
1009
- * For example, <code>use1-az1</code> is an AZ ID for the us-east-1 Region and it has the same location in every Amazon Web Services account.</p>
1010
- */
1011
- AvailabilityZoneId?: string;
1012
-
1013
- /**
1014
- * <p>The name of the Availability Zone in which the mount target is located. Availability Zones are
1015
- * independently mapped to names for each Amazon Web Services account. For example, the Availability Zone
1016
- * <code>us-east-1a</code> for your Amazon Web Services account might not be the same location as <code>us-east-1a</code> for another Amazon Web Services account.</p>
1017
- */
1018
- AvailabilityZoneName?: string;
1019
-
1020
- /**
1021
- * <p>The virtual private cloud (VPC) ID that the mount target is configured in.</p>
1022
- */
1023
- VpcId?: string;
1024
- }
1025
-
1026
- export namespace MountTargetDescription {
1027
- /**
1028
- * @internal
1029
- */
1030
- export const filterSensitiveLog = (obj: MountTargetDescription): any => ({
1031
- ...obj,
1032
- });
1033
- }
1034
-
1035
- /**
1036
- * <p>The calling account has reached the limit for elastic network interfaces for the
1037
- * specific Amazon Web Services Region. The client should try to delete some elastic network interfaces or
1038
- * get the account limit raised. For more information, see <a href="https://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_Limits.html">Amazon VPC Limits</a>
1039
- * in the <i>Amazon VPC User Guide </i> (see the Network interfaces per VPC
1040
- * entry in the table). </p>
1041
- */
1042
- export interface NetworkInterfaceLimitExceeded extends __SmithyException, $MetadataBearer {
1043
- name: "NetworkInterfaceLimitExceeded";
1044
- $fault: "client";
1045
- ErrorCode: string | undefined;
1046
- Message?: string;
1047
- }
1048
-
1049
- export namespace NetworkInterfaceLimitExceeded {
1050
- /**
1051
- * @internal
1052
- */
1053
- export const filterSensitiveLog = (obj: NetworkInterfaceLimitExceeded): any => ({
1054
- ...obj,
1055
- });
1056
- }
1057
-
1058
- /**
1059
- * <p>Returned if <code>IpAddress</code> was not specified in the request and there are
1060
- * no free IP addresses in the subnet.</p>
1061
- */
1062
- export interface NoFreeAddressesInSubnet extends __SmithyException, $MetadataBearer {
1063
- name: "NoFreeAddressesInSubnet";
1064
- $fault: "client";
1065
- ErrorCode: string | undefined;
1066
- Message?: string;
1067
- }
1068
-
1069
- export namespace NoFreeAddressesInSubnet {
1070
- /**
1071
- * @internal
1072
- */
1073
- export const filterSensitiveLog = (obj: NoFreeAddressesInSubnet): any => ({
1074
- ...obj,
1075
- });
1076
- }
1077
-
1078
- /**
1079
- * <p>Returned if the size of <code>SecurityGroups</code> specified in the request is
1080
- * greater than five.</p>
1081
- */
1082
- export interface SecurityGroupLimitExceeded extends __SmithyException, $MetadataBearer {
1083
- name: "SecurityGroupLimitExceeded";
1084
- $fault: "client";
1085
- ErrorCode: string | undefined;
1086
- Message?: string;
1087
- }
1088
-
1089
- export namespace SecurityGroupLimitExceeded {
1090
- /**
1091
- * @internal
1092
- */
1093
- export const filterSensitiveLog = (obj: SecurityGroupLimitExceeded): any => ({
1094
- ...obj,
1095
- });
1096
- }
1097
-
1098
- /**
1099
- * <p>Returned if one of the specified security groups doesn't exist in the subnet's
1100
- * VPC.</p>
1101
- */
1102
- export interface SecurityGroupNotFound extends __SmithyException, $MetadataBearer {
1103
- name: "SecurityGroupNotFound";
1104
- $fault: "client";
1105
- ErrorCode: string | undefined;
1106
- Message?: string;
1107
- }
1108
-
1109
- export namespace SecurityGroupNotFound {
1110
- /**
1111
- * @internal
1112
- */
1113
- export const filterSensitiveLog = (obj: SecurityGroupNotFound): any => ({
1114
- ...obj,
1115
- });
1116
- }
1117
-
1118
- /**
1119
- * <p>Returned if there is no subnet with ID <code>SubnetId</code> provided in the
1120
- * request.</p>
1121
- */
1122
- export interface SubnetNotFound extends __SmithyException, $MetadataBearer {
1123
- name: "SubnetNotFound";
1124
- $fault: "client";
1125
- ErrorCode: string | undefined;
1126
- Message?: string;
1127
- }
1128
-
1129
- export namespace SubnetNotFound {
1130
- /**
1131
- * @internal
1132
- */
1133
- export const filterSensitiveLog = (obj: SubnetNotFound): any => ({
1134
- ...obj,
1135
- });
1136
- }
1137
-
1138
- /**
1139
- * <p></p>
1140
- */
1141
- export interface CreateTagsRequest {
1142
- /**
1143
- * <p>The ID of the file system whose tags you want to modify (String). This operation modifies
1144
- * the tags only, not the file system.</p>
1145
- */
1146
- FileSystemId: string | undefined;
1147
-
1148
- /**
1149
- * <p>An array of <code>Tag</code> objects to add. Each <code>Tag</code> object is a key-value
1150
- * pair. </p>
1151
- */
1152
- Tags: Tag[] | undefined;
1153
- }
1154
-
1155
- export namespace CreateTagsRequest {
1156
- /**
1157
- * @internal
1158
- */
1159
- export const filterSensitiveLog = (obj: CreateTagsRequest): any => ({
1160
- ...obj,
1161
- });
1162
- }
1163
-
1164
- export interface DeleteAccessPointRequest {
1165
- /**
1166
- * <p>The ID of the access point that you want to delete.</p>
1167
- */
1168
- AccessPointId: string | undefined;
1169
- }
1170
-
1171
- export namespace DeleteAccessPointRequest {
1172
- /**
1173
- * @internal
1174
- */
1175
- export const filterSensitiveLog = (obj: DeleteAccessPointRequest): any => ({
1176
- ...obj,
1177
- });
1178
- }
1179
-
1180
- /**
1181
- * <p></p>
1182
- */
1183
- export interface DeleteFileSystemRequest {
1184
- /**
1185
- * <p>The ID of the file system you want to delete.</p>
1186
- */
1187
- FileSystemId: string | undefined;
1188
- }
1189
-
1190
- export namespace DeleteFileSystemRequest {
1191
- /**
1192
- * @internal
1193
- */
1194
- export const filterSensitiveLog = (obj: DeleteFileSystemRequest): any => ({
1195
- ...obj,
1196
- });
1197
- }
1198
-
1199
- /**
1200
- * <p>Returned if a file system has mount targets.</p>
1201
- */
1202
- export interface FileSystemInUse extends __SmithyException, $MetadataBearer {
1203
- name: "FileSystemInUse";
1204
- $fault: "client";
1205
- ErrorCode: string | undefined;
1206
- Message?: string;
1207
- }
1208
-
1209
- export namespace FileSystemInUse {
1210
- /**
1211
- * @internal
1212
- */
1213
- export const filterSensitiveLog = (obj: FileSystemInUse): any => ({
1214
- ...obj,
1215
- });
1216
- }
1217
-
1218
- export interface DeleteFileSystemPolicyRequest {
1219
- /**
1220
- * <p>Specifies the EFS file system for which to delete the <code>FileSystemPolicy</code>.</p>
1221
- */
1222
- FileSystemId: string | undefined;
1223
- }
1224
-
1225
- export namespace DeleteFileSystemPolicyRequest {
1226
- /**
1227
- * @internal
1228
- */
1229
- export const filterSensitiveLog = (obj: DeleteFileSystemPolicyRequest): any => ({
1230
- ...obj,
1231
- });
1232
- }
1233
-
1234
- /**
1235
- * <p></p>
1236
- */
1237
- export interface DeleteMountTargetRequest {
1238
- /**
1239
- * <p>The ID of the mount target to delete (String).</p>
1240
- */
1241
- MountTargetId: string | undefined;
1242
- }
1243
-
1244
- export namespace DeleteMountTargetRequest {
1245
- /**
1246
- * @internal
1247
- */
1248
- export const filterSensitiveLog = (obj: DeleteMountTargetRequest): any => ({
1249
- ...obj,
1250
- });
1251
- }
1252
-
1253
- /**
1254
- * <p>The service timed out trying to fulfill the request, and the client should try the
1255
- * call again.</p>
1256
- */
1257
- export interface DependencyTimeout extends __SmithyException, $MetadataBearer {
1258
- name: "DependencyTimeout";
1259
- $fault: "server";
1260
- ErrorCode: string | undefined;
1261
- Message?: string;
1262
- }
1263
-
1264
- export namespace DependencyTimeout {
1265
- /**
1266
- * @internal
1267
- */
1268
- export const filterSensitiveLog = (obj: DependencyTimeout): any => ({
1269
- ...obj,
1270
- });
1271
- }
1272
-
1273
- /**
1274
- * <p>Returned if there is no mount target with the specified ID found in the
1275
- * caller's Amazon Web Services account.</p>
1276
- */
1277
- export interface MountTargetNotFound extends __SmithyException, $MetadataBearer {
1278
- name: "MountTargetNotFound";
1279
- $fault: "client";
1280
- ErrorCode: string | undefined;
1281
- Message?: string;
1282
- }
1283
-
1284
- export namespace MountTargetNotFound {
1285
- /**
1286
- * @internal
1287
- */
1288
- export const filterSensitiveLog = (obj: MountTargetNotFound): any => ({
1289
- ...obj,
1290
- });
1291
- }
1292
-
1293
- /**
1294
- * <p></p>
1295
- */
1296
- export interface DeleteTagsRequest {
1297
- /**
1298
- * <p>The ID of the file system whose tags you want to delete (String).</p>
1299
- */
1300
- FileSystemId: string | undefined;
1301
-
1302
- /**
1303
- * <p>A list of tag keys to delete.</p>
1304
- */
1305
- TagKeys: string[] | undefined;
1306
- }
1307
-
1308
- export namespace DeleteTagsRequest {
1309
- /**
1310
- * @internal
1311
- */
1312
- export const filterSensitiveLog = (obj: DeleteTagsRequest): any => ({
1313
- ...obj,
1314
- });
1315
- }
1316
-
1317
- export interface DescribeAccessPointsRequest {
1318
- /**
1319
- * <p>(Optional) When retrieving all access points for a file system,
1320
- * you can optionally specify the <code>MaxItems</code> parameter to limit the number of objects returned in a response.
1321
- * The default value is 100. </p>
1322
- */
1323
- MaxResults?: number;
1324
-
1325
- /**
1326
- * <p>
1327
- * <code>NextToken</code> is present if the response is paginated. You can use <code>NextMarker</code> in the subsequent request to fetch the next page of access point descriptions.</p>
1328
- */
1329
- NextToken?: string;
1330
-
1331
- /**
1332
- * <p>(Optional) Specifies an EFS access point to describe in the response; mutually exclusive with <code>FileSystemId</code>.</p>
1333
- */
1334
- AccessPointId?: string;
1335
-
1336
- /**
1337
- * <p>(Optional) If you provide a <code>FileSystemId</code>, EFS returns all access points for that file system; mutually exclusive with <code>AccessPointId</code>.</p>
1338
- */
1339
- FileSystemId?: string;
1340
- }
1341
-
1342
- export namespace DescribeAccessPointsRequest {
1343
- /**
1344
- * @internal
1345
- */
1346
- export const filterSensitiveLog = (obj: DescribeAccessPointsRequest): any => ({
1347
- ...obj,
1348
- });
1349
- }
1350
-
1351
- export interface DescribeAccessPointsResponse {
1352
- /**
1353
- * <p>An array of access point descriptions.</p>
1354
- */
1355
- AccessPoints?: AccessPointDescription[];
1356
-
1357
- /**
1358
- * <p>Present if there are more access points than returned in the response.
1359
- * You can use the NextMarker in the subsequent request to fetch the additional descriptions.</p>
1360
- */
1361
- NextToken?: string;
1362
- }
1363
-
1364
- export namespace DescribeAccessPointsResponse {
1365
- /**
1366
- * @internal
1367
- */
1368
- export const filterSensitiveLog = (obj: DescribeAccessPointsResponse): any => ({
1369
- ...obj,
1370
- });
1371
- }
1372
-
1373
- export interface DescribeAccountPreferencesRequest {
1374
- /**
1375
- * <p>(Optional) You can use <code>NextToken</code> in a subsequent request to fetch the next page of
1376
- * Amazon Web Services account preferences if the response payload was paginated.</p>
1377
- */
1378
- NextToken?: string;
1379
-
1380
- /**
1381
- * <p>(Optional) When retrieving account preferences,
1382
- * you can optionally specify the <code>MaxItems</code> parameter to limit the number of objects returned in a response.
1383
- * The default value is 100. </p>
1384
- */
1385
- MaxResults?: number;
1386
- }
1387
-
1388
- export namespace DescribeAccountPreferencesRequest {
1389
- /**
1390
- * @internal
1391
- */
1392
- export const filterSensitiveLog = (obj: DescribeAccountPreferencesRequest): any => ({
1393
- ...obj,
1394
- });
1395
- }
1396
-
1397
- export enum ResourceIdType {
1398
- LongId = "LONG_ID",
1399
- ShortId = "SHORT_ID",
1400
- }
1401
-
1402
- export enum Resource {
1403
- FileSystem = "FILE_SYSTEM",
1404
- MountTarget = "MOUNT_TARGET",
1405
- }
1406
-
1407
- /**
1408
- * <p>Describes the resource type and its ID preference for the user's Amazon Web Services account, in the current Amazon Web Services Region.</p>
1409
- */
1410
- export interface ResourceIdPreference {
1411
- /**
1412
- * <p>Identifies the EFS resource ID preference, either <code>LONG_ID</code> (17 characters) or <code>SHORT_ID</code> (8 characters).</p>
1413
- */
1414
- ResourceIdType?: ResourceIdType | string;
1415
-
1416
- /**
1417
- * <p>Identifies the Amazon EFS resources to which the ID preference setting applies, <code>FILE_SYSTEM</code> and <code>MOUNT_TARGET</code>.</p>
1418
- */
1419
- Resources?: (Resource | string)[];
1420
- }
1421
-
1422
- export namespace ResourceIdPreference {
1423
- /**
1424
- * @internal
1425
- */
1426
- export const filterSensitiveLog = (obj: ResourceIdPreference): any => ({
1427
- ...obj,
1428
- });
1429
- }
1430
-
1431
- export interface DescribeAccountPreferencesResponse {
1432
- /**
1433
- * <p>Describes the resource ID preference setting for the Amazon Web Services account associated with the user making the request, in the current Amazon Web Services Region.</p>
1434
- */
1435
- ResourceIdPreference?: ResourceIdPreference;
1436
-
1437
- /**
1438
- * <p>Present if there are more records than returned in the response.
1439
- * You can use the <code>NextToken</code> in the subsequent request to fetch the additional descriptions.</p>
1440
- */
1441
- NextToken?: string;
1442
- }
1443
-
1444
- export namespace DescribeAccountPreferencesResponse {
1445
- /**
1446
- * @internal
1447
- */
1448
- export const filterSensitiveLog = (obj: DescribeAccountPreferencesResponse): any => ({
1449
- ...obj,
1450
- });
1451
- }
1452
-
1453
- export interface DescribeBackupPolicyRequest {
1454
- /**
1455
- * <p>Specifies which EFS file system to retrieve the <code>BackupPolicy</code> for.</p>
1456
- */
1457
- FileSystemId: string | undefined;
1458
- }
1459
-
1460
- export namespace DescribeBackupPolicyRequest {
1461
- /**
1462
- * @internal
1463
- */
1464
- export const filterSensitiveLog = (obj: DescribeBackupPolicyRequest): any => ({
1465
- ...obj,
1466
- });
1467
- }
1468
-
1469
- /**
1470
- * <p>Returned if the default file system policy is in effect for the EFS file system specified.</p>
1471
- */
1472
- export interface PolicyNotFound extends __SmithyException, $MetadataBearer {
1473
- name: "PolicyNotFound";
1474
- $fault: "client";
1475
- ErrorCode?: string;
1476
- Message?: string;
1477
- }
1478
-
1479
- export namespace PolicyNotFound {
1480
- /**
1481
- * @internal
1482
- */
1483
- export const filterSensitiveLog = (obj: PolicyNotFound): any => ({
1484
- ...obj,
1485
- });
1486
- }
1487
-
1488
- /**
1489
- * <p>Returned if the Backup service is not available in the Amazon Web Services Region in which the request was made.</p>
1490
- */
1491
- export interface ValidationException extends __SmithyException, $MetadataBearer {
1492
- name: "ValidationException";
1493
- $fault: "client";
1494
- ErrorCode: string | undefined;
1495
- Message?: string;
1496
- }
1497
-
1498
- export namespace ValidationException {
1499
- /**
1500
- * @internal
1501
- */
1502
- export const filterSensitiveLog = (obj: ValidationException): any => ({
1503
- ...obj,
1504
- });
1505
- }
1506
-
1507
- export interface DescribeFileSystemPolicyRequest {
1508
- /**
1509
- * <p>Specifies which EFS file system to retrieve the <code>FileSystemPolicy</code> for.</p>
1510
- */
1511
- FileSystemId: string | undefined;
1512
- }
1513
-
1514
- export namespace DescribeFileSystemPolicyRequest {
1515
- /**
1516
- * @internal
1517
- */
1518
- export const filterSensitiveLog = (obj: DescribeFileSystemPolicyRequest): any => ({
1519
- ...obj,
1520
- });
1521
- }
1522
-
1523
- export interface FileSystemPolicyDescription {
1524
- /**
1525
- * <p>Specifies the EFS file system to which the <code>FileSystemPolicy</code> applies.</p>
1526
- */
1527
- FileSystemId?: string;
1528
-
1529
- /**
1530
- * <p>The JSON formatted <code>FileSystemPolicy</code> for the EFS file system.</p>
1531
- */
1532
- Policy?: string;
1533
- }
1534
-
1535
- export namespace FileSystemPolicyDescription {
1536
- /**
1537
- * @internal
1538
- */
1539
- export const filterSensitiveLog = (obj: FileSystemPolicyDescription): any => ({
1540
- ...obj,
1541
- });
1542
- }
1543
-
1544
- /**
1545
- * <p></p>
1546
- */
1547
- export interface DescribeFileSystemsRequest {
1548
- /**
1549
- * <p>(Optional) Specifies the maximum number of file systems to return in the response
1550
- * (integer). This number is automatically set to 100. The response is paginated at 100 per page if you have more than 100 file systems.
1551
- * </p>
1552
- */
1553
- MaxItems?: number;
1554
-
1555
- /**
1556
- * <p>(Optional) Opaque pagination token returned from a previous
1557
- * <code>DescribeFileSystems</code> operation (String). If present, specifies to continue the
1558
- * list from where the returning call had left off. </p>
1559
- */
1560
- Marker?: string;
1561
-
1562
- /**
1563
- * <p>(Optional) Restricts the list to the file system with this creation token (String). You
1564
- * specify a creation token when you create an Amazon EFS file system.</p>
1565
- */
1566
- CreationToken?: string;
1567
-
1568
- /**
1569
- * <p>(Optional) ID of the file system whose description you want to retrieve
1570
- * (String).</p>
1571
- */
1572
- FileSystemId?: string;
1573
- }
1574
-
1575
- export namespace DescribeFileSystemsRequest {
1576
- /**
1577
- * @internal
1578
- */
1579
- export const filterSensitiveLog = (obj: DescribeFileSystemsRequest): any => ({
1580
- ...obj,
1581
- });
1582
- }
1583
-
1584
- export interface DescribeFileSystemsResponse {
1585
- /**
1586
- * <p>Present if provided by caller in the request (String).</p>
1587
- */
1588
- Marker?: string;
1589
-
1590
- /**
1591
- * <p>An array of file system descriptions.</p>
1592
- */
1593
- FileSystems?: FileSystemDescription[];
1594
-
1595
- /**
1596
- * <p>Present if there are more file systems than returned in the response (String). You can
1597
- * use the <code>NextMarker</code> in the subsequent request to fetch the descriptions.</p>
1598
- */
1599
- NextMarker?: string;
1600
- }
1601
-
1602
- export namespace DescribeFileSystemsResponse {
1603
- /**
1604
- * @internal
1605
- */
1606
- export const filterSensitiveLog = (obj: DescribeFileSystemsResponse): any => ({
1607
- ...obj,
1608
- });
1609
- }
1610
-
1611
- export interface DescribeLifecycleConfigurationRequest {
1612
- /**
1613
- * <p>The ID of the file system whose <code>LifecycleConfiguration</code> object you want to
1614
- * retrieve (String).</p>
1615
- */
1616
- FileSystemId: string | undefined;
1617
- }
1618
-
1619
- export namespace DescribeLifecycleConfigurationRequest {
1620
- /**
1621
- * @internal
1622
- */
1623
- export const filterSensitiveLog = (obj: DescribeLifecycleConfigurationRequest): any => ({
1624
- ...obj,
1625
- });
1626
- }
1627
-
1628
- export enum TransitionToIARules {
1629
- AFTER_14_DAYS = "AFTER_14_DAYS",
1630
- AFTER_30_DAYS = "AFTER_30_DAYS",
1631
- AFTER_60_DAYS = "AFTER_60_DAYS",
1632
- AFTER_7_DAYS = "AFTER_7_DAYS",
1633
- AFTER_90_DAYS = "AFTER_90_DAYS",
1634
- }
1635
-
1636
- export enum TransitionToPrimaryStorageClassRules {
1637
- AFTER_1_ACCESS = "AFTER_1_ACCESS",
1638
- }
1639
-
1640
- /**
1641
- * <p>Describes a policy used by EFS lifecycle management to transition files to the Infrequent
1642
- * Access (IA) storage class.</p>
1643
- */
1644
- export interface LifecyclePolicy {
1645
- /**
1646
- * <p>
1647
- * Describes the period of time that a file is not accessed, after which it transitions to the IA storage class. Metadata
1648
- * operations such as listing the contents of a directory don't count as file access
1649
- * events.</p>
1650
- */
1651
- TransitionToIA?: TransitionToIARules | string;
1652
-
1653
- /**
1654
- * <p>Describes the policy used to transition a file from infequent access storage to primary storage.</p>
1655
- */
1656
- TransitionToPrimaryStorageClass?: TransitionToPrimaryStorageClassRules | string;
1657
- }
1658
-
1659
- export namespace LifecyclePolicy {
1660
- /**
1661
- * @internal
1662
- */
1663
- export const filterSensitiveLog = (obj: LifecyclePolicy): any => ({
1664
- ...obj,
1665
- });
1666
- }
1667
-
1668
- export interface LifecycleConfigurationDescription {
1669
- /**
1670
- * <p>An array of lifecycle management policies. EFS supports a maximum of one
1671
- * policy per file system.</p>
1672
- */
1673
- LifecyclePolicies?: LifecyclePolicy[];
1674
- }
1675
-
1676
- export namespace LifecycleConfigurationDescription {
1677
- /**
1678
- * @internal
1679
- */
1680
- export const filterSensitiveLog = (obj: LifecycleConfigurationDescription): any => ({
1681
- ...obj,
1682
- });
1683
- }
1684
-
1685
- /**
1686
- * <p></p>
1687
- */
1688
- export interface DescribeMountTargetsRequest {
1689
- /**
1690
- * <p>(Optional) Maximum number of mount targets to return in the response. Currently, this
1691
- * number is automatically set to
1692
- * 10, and other values are ignored. The response is paginated at 100 per page if you have more than 100 mount targets.</p>
1693
- */
1694
- MaxItems?: number;
1695
-
1696
- /**
1697
- * <p>(Optional) Opaque pagination token returned from a previous
1698
- * <code>DescribeMountTargets</code> operation (String). If present, it specifies to continue
1699
- * the list from where the previous returning call left off.</p>
1700
- */
1701
- Marker?: string;
1702
-
1703
- /**
1704
- * <p>(Optional) ID of the file system whose mount targets you want to list (String). It must
1705
- * be included in your request if an <code>AccessPointId</code> or <code>MountTargetId</code> is not included. Accepts either a file system ID or ARN as input.</p>
1706
- */
1707
- FileSystemId?: string;
1708
-
1709
- /**
1710
- * <p>(Optional) ID of the mount target that you want to have described (String). It must be
1711
- * included in your request if <code>FileSystemId</code> is not included. Accepts either a mount target ID or ARN as input.</p>
1712
- */
1713
- MountTargetId?: string;
1714
-
1715
- /**
1716
- * <p>(Optional) The ID of the access point whose mount targets that you want to list. It must be included in your request if a
1717
- * <code>FileSystemId</code> or <code>MountTargetId</code> is not included in your request. Accepts either an access point ID or ARN as input.</p>
1718
- */
1719
- AccessPointId?: string;
1720
- }
1721
-
1722
- export namespace DescribeMountTargetsRequest {
1723
- /**
1724
- * @internal
1725
- */
1726
- export const filterSensitiveLog = (obj: DescribeMountTargetsRequest): any => ({
1727
- ...obj,
1728
- });
1729
- }
1730
-
1731
- /**
1732
- * <p></p>
1733
- */
1734
- export interface DescribeMountTargetsResponse {
1735
- /**
1736
- * <p>If the request included the <code>Marker</code>, the response returns that value in
1737
- * this field.</p>
1738
- */
1739
- Marker?: string;
1740
-
1741
- /**
1742
- * <p>Returns the file system's mount targets as an array of
1743
- * <code>MountTargetDescription</code> objects.</p>
1744
- */
1745
- MountTargets?: MountTargetDescription[];
1746
-
1747
- /**
1748
- * <p>If a value is present, there are more mount targets to return. In a subsequent request,
1749
- * you can provide <code>Marker</code> in your request with this value to retrieve the next set
1750
- * of mount targets.</p>
1751
- */
1752
- NextMarker?: string;
1753
- }
1754
-
1755
- export namespace DescribeMountTargetsResponse {
1756
- /**
1757
- * @internal
1758
- */
1759
- export const filterSensitiveLog = (obj: DescribeMountTargetsResponse): any => ({
1760
- ...obj,
1761
- });
1762
- }
1763
-
1764
- /**
1765
- * <p></p>
1766
- */
1767
- export interface DescribeMountTargetSecurityGroupsRequest {
1768
- /**
1769
- * <p>The ID of the mount target whose security groups you want to retrieve.</p>
1770
- */
1771
- MountTargetId: string | undefined;
1772
- }
1773
-
1774
- export namespace DescribeMountTargetSecurityGroupsRequest {
1775
- /**
1776
- * @internal
1777
- */
1778
- export const filterSensitiveLog = (obj: DescribeMountTargetSecurityGroupsRequest): any => ({
1779
- ...obj,
1780
- });
1781
- }
1782
-
1783
- export interface DescribeMountTargetSecurityGroupsResponse {
1784
- /**
1785
- * <p>An array of security groups.</p>
1786
- */
1787
- SecurityGroups: string[] | undefined;
1788
- }
1789
-
1790
- export namespace DescribeMountTargetSecurityGroupsResponse {
1791
- /**
1792
- * @internal
1793
- */
1794
- export const filterSensitiveLog = (obj: DescribeMountTargetSecurityGroupsResponse): any => ({
1795
- ...obj,
1796
- });
1797
- }
1798
-
1799
- /**
1800
- * <p>Returned if the mount target is not in the correct state for the
1801
- * operation.</p>
1802
- */
1803
- export interface IncorrectMountTargetState extends __SmithyException, $MetadataBearer {
1804
- name: "IncorrectMountTargetState";
1805
- $fault: "client";
1806
- ErrorCode: string | undefined;
1807
- Message?: string;
1808
- }
1809
-
1810
- export namespace IncorrectMountTargetState {
1811
- /**
1812
- * @internal
1813
- */
1814
- export const filterSensitiveLog = (obj: IncorrectMountTargetState): any => ({
1815
- ...obj,
1816
- });
1817
- }
1818
-
1819
- /**
1820
- * <p></p>
1821
- */
1822
- export interface DescribeTagsRequest {
1823
- /**
1824
- * <p>(Optional) The maximum number of file system tags to return in the response. Currently,
1825
- * this number is automatically set to
1826
- * 100, and other values are ignored. The response is paginated at 100 per page if you have more than 100 tags.</p>
1827
- */
1828
- MaxItems?: number;
1829
-
1830
- /**
1831
- * <p>(Optional) An opaque pagination token returned from a previous
1832
- * <code>DescribeTags</code> operation (String). If present, it specifies to continue the list
1833
- * from where the previous call left off.</p>
1834
- */
1835
- Marker?: string;
1836
-
1837
- /**
1838
- * <p>The ID of the file system whose tag set you want to retrieve.</p>
1839
- */
1840
- FileSystemId: string | undefined;
1841
- }
1842
-
1843
- export namespace DescribeTagsRequest {
1844
- /**
1845
- * @internal
1846
- */
1847
- export const filterSensitiveLog = (obj: DescribeTagsRequest): any => ({
1848
- ...obj,
1849
- });
1850
- }
1851
-
1852
- /**
1853
- * <p></p>
1854
- */
1855
- export interface DescribeTagsResponse {
1856
- /**
1857
- * <p>If the request included a <code>Marker</code>, the response returns that value in this
1858
- * field.</p>
1859
- */
1860
- Marker?: string;
1861
-
1862
- /**
1863
- * <p>Returns tags associated with the file system as an array of <code>Tag</code> objects.
1864
- * </p>
1865
- */
1866
- Tags: Tag[] | undefined;
1867
-
1868
- /**
1869
- * <p>If a value is present, there are more tags to return. In a subsequent request, you can
1870
- * provide the value of <code>NextMarker</code> as the value of the <code>Marker</code> parameter
1871
- * in your next request to retrieve the next set of tags.</p>
1872
- */
1873
- NextMarker?: string;
1874
- }
1875
-
1876
- export namespace DescribeTagsResponse {
1877
- /**
1878
- * @internal
1879
- */
1880
- export const filterSensitiveLog = (obj: DescribeTagsResponse): any => ({
1881
- ...obj,
1882
- });
1883
- }
1884
-
1885
- /**
1886
- * <p>Returned if the <code>FileSystemPolicy</code> is is malformed or contains an error such as an invalid
1887
- * parameter value or a missing required parameter. Returned in the case of a policy lockout safety check error.</p>
1888
- */
1889
- export interface InvalidPolicyException extends __SmithyException, $MetadataBearer {
1890
- name: "InvalidPolicyException";
1891
- $fault: "client";
1892
- ErrorCode?: string;
1893
- Message?: string;
1894
- }
1895
-
1896
- export namespace InvalidPolicyException {
1897
- /**
1898
- * @internal
1899
- */
1900
- export const filterSensitiveLog = (obj: InvalidPolicyException): any => ({
1901
- ...obj,
1902
- });
1903
- }
1904
-
1905
- export interface ListTagsForResourceRequest {
1906
- /**
1907
- * <p>Specifies the EFS resource you want to retrieve tags for. You can retrieve tags for EFS file systems and access points using this API endpoint.</p>
1908
- */
1909
- ResourceId: string | undefined;
1910
-
1911
- /**
1912
- * <p>(Optional) Specifies the maximum number of tag objects to return in the response. The default value is 100.</p>
1913
- */
1914
- MaxResults?: number;
1915
-
1916
- /**
1917
- * <p>(Optional) You can use <code>NextToken</code> in a subsequent request to fetch the next page of access point descriptions if the response payload was paginated.</p>
1918
- */
1919
- NextToken?: string;
1920
- }
1921
-
1922
- export namespace ListTagsForResourceRequest {
1923
- /**
1924
- * @internal
1925
- */
1926
- export const filterSensitiveLog = (obj: ListTagsForResourceRequest): any => ({
1927
- ...obj,
1928
- });
1929
- }
1930
-
1931
- export interface ListTagsForResourceResponse {
1932
- /**
1933
- * <p>An array of the tags for the specified EFS resource.</p>
1934
- */
1935
- Tags?: Tag[];
1936
-
1937
- /**
1938
- * <p>
1939
- * <code>NextToken</code> is present if the response payload is paginated. You can use <code>NextToken</code> in a subsequent request to fetch the next page of access point descriptions.</p>
1940
- */
1941
- NextToken?: string;
1942
- }
1943
-
1944
- export namespace ListTagsForResourceResponse {
1945
- /**
1946
- * @internal
1947
- */
1948
- export const filterSensitiveLog = (obj: ListTagsForResourceResponse): any => ({
1949
- ...obj,
1950
- });
1951
- }
1952
-
1953
- /**
1954
- * <p></p>
1955
- */
1956
- export interface ModifyMountTargetSecurityGroupsRequest {
1957
- /**
1958
- * <p>The ID of the mount target whose security groups you want to modify.</p>
1959
- */
1960
- MountTargetId: string | undefined;
1961
-
1962
- /**
1963
- * <p>An array of up to five VPC security group IDs.</p>
1964
- */
1965
- SecurityGroups?: string[];
1966
- }
1967
-
1968
- export namespace ModifyMountTargetSecurityGroupsRequest {
1969
- /**
1970
- * @internal
1971
- */
1972
- export const filterSensitiveLog = (obj: ModifyMountTargetSecurityGroupsRequest): any => ({
1973
- ...obj,
1974
- });
1975
- }
1976
-
1977
- export interface PutAccountPreferencesRequest {
1978
- /**
1979
- * <p>Specifies the EFS resource ID preference to set for the user's Amazon Web Services account, in the current Amazon Web Services Region,
1980
- * either <code>LONG_ID</code> (17 characters), or <code>SHORT_ID</code> (8 characters).</p>
1981
- */
1982
- ResourceIdType: ResourceIdType | string | undefined;
1983
- }
1984
-
1985
- export namespace PutAccountPreferencesRequest {
1986
- /**
1987
- * @internal
1988
- */
1989
- export const filterSensitiveLog = (obj: PutAccountPreferencesRequest): any => ({
1990
- ...obj,
1991
- });
1992
- }
1993
-
1994
- export interface PutAccountPreferencesResponse {
1995
- /**
1996
- * <p>Describes the resource type and its ID preference for the user's Amazon Web Services account, in the current Amazon Web Services Region.</p>
1997
- */
1998
- ResourceIdPreference?: ResourceIdPreference;
1999
- }
2000
-
2001
- export namespace PutAccountPreferencesResponse {
2002
- /**
2003
- * @internal
2004
- */
2005
- export const filterSensitiveLog = (obj: PutAccountPreferencesResponse): any => ({
2006
- ...obj,
2007
- });
2008
- }
2009
-
2010
- export interface PutBackupPolicyRequest {
2011
- /**
2012
- * <p>Specifies which EFS file system to update the backup policy for.</p>
2013
- */
2014
- FileSystemId: string | undefined;
2015
-
2016
- /**
2017
- * <p>The backup policy included in the <code>PutBackupPolicy</code> request.</p>
2018
- */
2019
- BackupPolicy: BackupPolicy | undefined;
2020
- }
2021
-
2022
- export namespace PutBackupPolicyRequest {
2023
- /**
2024
- * @internal
2025
- */
2026
- export const filterSensitiveLog = (obj: PutBackupPolicyRequest): any => ({
2027
- ...obj,
2028
- });
2029
- }
2030
-
2031
- export interface PutFileSystemPolicyRequest {
2032
- /**
2033
- * <p>The ID of the EFS file system that you want to create or update the <code>FileSystemPolicy</code> for.</p>
2034
- */
2035
- FileSystemId: string | undefined;
2036
-
2037
- /**
2038
- * <p>The <code>FileSystemPolicy</code> that you're creating. Accepts a JSON formatted policy definition.
2039
- * EFS file system policies have a 20,000 character limit.
2040
- * To find out more about the elements that make up a file system policy, see
2041
- * <a href="https://docs.aws.amazon.com/efs/latest/ug/access-control-overview.html#access-control-manage-access-intro-resource-policies">EFS Resource-based Policies</a>.
2042
- * </p>
2043
- */
2044
- Policy: string | undefined;
2045
-
2046
- /**
2047
- * <p>(Optional) A flag to indicate whether to bypass the <code>FileSystemPolicy</code> lockout safety check. The policy lockout safety check
2048
- * determines whether the policy in the request will prevent the principal making the request will be locked out from making future <code>PutFileSystemPolicy</code> requests on the file system.
2049
- * Set <code>BypassPolicyLockoutSafetyCheck</code> to <code>True</code> only when you intend to prevent
2050
- * the principal that is making the request from making a subsequent <code>PutFileSystemPolicy</code> request on the file system.
2051
- * The default value is False.
2052
- * </p>
2053
- */
2054
- BypassPolicyLockoutSafetyCheck?: boolean;
2055
- }
2056
-
2057
- export namespace PutFileSystemPolicyRequest {
2058
- /**
2059
- * @internal
2060
- */
2061
- export const filterSensitiveLog = (obj: PutFileSystemPolicyRequest): any => ({
2062
- ...obj,
2063
- });
2064
- }
2065
-
2066
- export interface PutLifecycleConfigurationRequest {
2067
- /**
2068
- * <p>The ID of the file system for which you are creating the
2069
- * <code>LifecycleConfiguration</code> object (String).</p>
2070
- */
2071
- FileSystemId: string | undefined;
2072
-
2073
- /**
2074
- * <p>An array of <code>LifecyclePolicy</code> objects that define the file system's
2075
- * <code>LifecycleConfiguration</code> object. A <code>LifecycleConfiguration</code> object
2076
- * tells lifecycle management when to transition files from the Standard storage class to the
2077
- * Infrequent Access storage class.</p>
2078
- */
2079
- LifecyclePolicies: LifecyclePolicy[] | undefined;
2080
- }
2081
-
2082
- export namespace PutLifecycleConfigurationRequest {
2083
- /**
2084
- * @internal
2085
- */
2086
- export const filterSensitiveLog = (obj: PutLifecycleConfigurationRequest): any => ({
2087
- ...obj,
2088
- });
2089
- }
2090
-
2091
- export interface TagResourceRequest {
2092
- /**
2093
- * <p>The ID specifying the EFS resource that you want to create a tag for.</p>
2094
- */
2095
- ResourceId: string | undefined;
2096
-
2097
- /**
2098
- * <p>An array of <code>Tag</code> objects to add. Each <code>Tag</code> object is a key-value
2099
- * pair.</p>
2100
- */
2101
- Tags: Tag[] | undefined;
2102
- }
2103
-
2104
- export namespace TagResourceRequest {
2105
- /**
2106
- * @internal
2107
- */
2108
- export const filterSensitiveLog = (obj: TagResourceRequest): any => ({
2109
- ...obj,
2110
- });
2111
- }
2112
-
2113
- export interface UntagResourceRequest {
2114
- /**
2115
- * <p>Specifies the EFS resource that you want to remove tags from.</p>
2116
- */
2117
- ResourceId: string | undefined;
2118
-
2119
- /**
2120
- * <p>The keys of the key-value tag pairs that you want to remove from the specified EFS
2121
- * resource.</p>
2122
- */
2123
- TagKeys: string[] | undefined;
2124
- }
2125
-
2126
- export namespace UntagResourceRequest {
2127
- /**
2128
- * @internal
2129
- */
2130
- export const filterSensitiveLog = (obj: UntagResourceRequest): any => ({
2131
- ...obj,
2132
- });
2133
- }
2134
-
2135
- /**
2136
- * <p>Returned if you don’t wait at least 24 hours before changing the throughput mode, or
2137
- * decreasing the Provisioned Throughput value.</p>
2138
- */
2139
- export interface TooManyRequests extends __SmithyException, $MetadataBearer {
2140
- name: "TooManyRequests";
2141
- $fault: "client";
2142
- ErrorCode: string | undefined;
2143
- Message?: string;
2144
- }
2145
-
2146
- export namespace TooManyRequests {
2147
- /**
2148
- * @internal
2149
- */
2150
- export const filterSensitiveLog = (obj: TooManyRequests): any => ({
2151
- ...obj,
2152
- });
2153
- }
2154
-
2155
- export interface UpdateFileSystemRequest {
2156
- /**
2157
- * <p>The ID of the file system that you want to update.</p>
2158
- */
2159
- FileSystemId: string | undefined;
2160
-
2161
- /**
2162
- * <p>(Optional) Updates the file system's throughput mode. If you're not
2163
- * updating your throughput mode, you don't need to provide this value in your
2164
- * request. If you are changing the <code>ThroughputMode</code> to <code>provisioned</code>,
2165
- * you must also set a value for <code>ProvisionedThroughputInMibps</code>.</p>
2166
- */
2167
- ThroughputMode?: ThroughputMode | string;
2168
-
2169
- /**
2170
- * <p>(Optional) Sets the amount of provisioned throughput, in MiB/s, for the file
2171
- * system. Valid values are 1-1024. If you are changing the throughput mode to provisioned, you must also
2172
- * provide the amount of provisioned throughput. Required if <code>ThroughputMode</code> is changed
2173
- * to <code>provisioned</code> on update.</p>
2174
- */
2175
- ProvisionedThroughputInMibps?: number;
2176
- }
2177
-
2178
- export namespace UpdateFileSystemRequest {
2179
- /**
2180
- * @internal
2181
- */
2182
- export const filterSensitiveLog = (obj: UpdateFileSystemRequest): any => ({
2183
- ...obj,
2184
- });
2185
- }