@aws-sdk/client-databrew 3.193.0 → 3.196.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 (208) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/DataBrewClient.js +11 -8
  3. package/dist-cjs/commands/BatchDeleteRecipeVersionCommand.js +10 -0
  4. package/dist-cjs/commands/CreateDatasetCommand.js +10 -0
  5. package/dist-cjs/commands/CreateProfileJobCommand.js +10 -0
  6. package/dist-cjs/commands/CreateProjectCommand.js +10 -0
  7. package/dist-cjs/commands/CreateRecipeCommand.js +10 -0
  8. package/dist-cjs/commands/CreateRecipeJobCommand.js +10 -0
  9. package/dist-cjs/commands/CreateRulesetCommand.js +10 -0
  10. package/dist-cjs/commands/CreateScheduleCommand.js +10 -0
  11. package/dist-cjs/commands/DeleteDatasetCommand.js +10 -0
  12. package/dist-cjs/commands/DeleteJobCommand.js +10 -0
  13. package/dist-cjs/commands/DeleteProjectCommand.js +10 -0
  14. package/dist-cjs/commands/DeleteRecipeVersionCommand.js +10 -0
  15. package/dist-cjs/commands/DeleteRulesetCommand.js +10 -0
  16. package/dist-cjs/commands/DeleteScheduleCommand.js +10 -0
  17. package/dist-cjs/commands/DescribeDatasetCommand.js +10 -0
  18. package/dist-cjs/commands/DescribeJobCommand.js +10 -0
  19. package/dist-cjs/commands/DescribeJobRunCommand.js +10 -0
  20. package/dist-cjs/commands/DescribeProjectCommand.js +10 -0
  21. package/dist-cjs/commands/DescribeRecipeCommand.js +10 -0
  22. package/dist-cjs/commands/DescribeRulesetCommand.js +10 -0
  23. package/dist-cjs/commands/DescribeScheduleCommand.js +10 -0
  24. package/dist-cjs/commands/ListDatasetsCommand.js +10 -0
  25. package/dist-cjs/commands/ListJobRunsCommand.js +10 -0
  26. package/dist-cjs/commands/ListJobsCommand.js +10 -0
  27. package/dist-cjs/commands/ListProjectsCommand.js +10 -0
  28. package/dist-cjs/commands/ListRecipeVersionsCommand.js +10 -0
  29. package/dist-cjs/commands/ListRecipesCommand.js +10 -0
  30. package/dist-cjs/commands/ListRulesetsCommand.js +10 -0
  31. package/dist-cjs/commands/ListSchedulesCommand.js +10 -0
  32. package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
  33. package/dist-cjs/commands/PublishRecipeCommand.js +10 -0
  34. package/dist-cjs/commands/SendProjectSessionActionCommand.js +10 -0
  35. package/dist-cjs/commands/StartJobRunCommand.js +10 -0
  36. package/dist-cjs/commands/StartProjectSessionCommand.js +10 -0
  37. package/dist-cjs/commands/StopJobRunCommand.js +10 -0
  38. package/dist-cjs/commands/TagResourceCommand.js +10 -0
  39. package/dist-cjs/commands/UntagResourceCommand.js +10 -0
  40. package/dist-cjs/commands/UpdateDatasetCommand.js +10 -0
  41. package/dist-cjs/commands/UpdateProfileJobCommand.js +10 -0
  42. package/dist-cjs/commands/UpdateProjectCommand.js +10 -0
  43. package/dist-cjs/commands/UpdateRecipeCommand.js +10 -0
  44. package/dist-cjs/commands/UpdateRecipeJobCommand.js +10 -0
  45. package/dist-cjs/commands/UpdateRulesetCommand.js +10 -0
  46. package/dist-cjs/commands/UpdateScheduleCommand.js +10 -0
  47. package/dist-cjs/endpoint/EndpointParameters.js +13 -0
  48. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  49. package/dist-cjs/endpoint/ruleset.js +318 -0
  50. package/dist-cjs/runtimeConfig.shared.js +3 -3
  51. package/dist-es/DataBrewClient.js +12 -9
  52. package/dist-es/commands/BatchDeleteRecipeVersionCommand.js +10 -0
  53. package/dist-es/commands/CreateDatasetCommand.js +10 -0
  54. package/dist-es/commands/CreateProfileJobCommand.js +10 -0
  55. package/dist-es/commands/CreateProjectCommand.js +10 -0
  56. package/dist-es/commands/CreateRecipeCommand.js +10 -0
  57. package/dist-es/commands/CreateRecipeJobCommand.js +10 -0
  58. package/dist-es/commands/CreateRulesetCommand.js +10 -0
  59. package/dist-es/commands/CreateScheduleCommand.js +10 -0
  60. package/dist-es/commands/DeleteDatasetCommand.js +10 -0
  61. package/dist-es/commands/DeleteJobCommand.js +10 -0
  62. package/dist-es/commands/DeleteProjectCommand.js +10 -0
  63. package/dist-es/commands/DeleteRecipeVersionCommand.js +10 -0
  64. package/dist-es/commands/DeleteRulesetCommand.js +10 -0
  65. package/dist-es/commands/DeleteScheduleCommand.js +10 -0
  66. package/dist-es/commands/DescribeDatasetCommand.js +10 -0
  67. package/dist-es/commands/DescribeJobCommand.js +10 -0
  68. package/dist-es/commands/DescribeJobRunCommand.js +10 -0
  69. package/dist-es/commands/DescribeProjectCommand.js +10 -0
  70. package/dist-es/commands/DescribeRecipeCommand.js +10 -0
  71. package/dist-es/commands/DescribeRulesetCommand.js +10 -0
  72. package/dist-es/commands/DescribeScheduleCommand.js +10 -0
  73. package/dist-es/commands/ListDatasetsCommand.js +10 -0
  74. package/dist-es/commands/ListJobRunsCommand.js +10 -0
  75. package/dist-es/commands/ListJobsCommand.js +10 -0
  76. package/dist-es/commands/ListProjectsCommand.js +10 -0
  77. package/dist-es/commands/ListRecipeVersionsCommand.js +10 -0
  78. package/dist-es/commands/ListRecipesCommand.js +10 -0
  79. package/dist-es/commands/ListRulesetsCommand.js +10 -0
  80. package/dist-es/commands/ListSchedulesCommand.js +10 -0
  81. package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
  82. package/dist-es/commands/PublishRecipeCommand.js +10 -0
  83. package/dist-es/commands/SendProjectSessionActionCommand.js +10 -0
  84. package/dist-es/commands/StartJobRunCommand.js +10 -0
  85. package/dist-es/commands/StartProjectSessionCommand.js +10 -0
  86. package/dist-es/commands/StopJobRunCommand.js +10 -0
  87. package/dist-es/commands/TagResourceCommand.js +10 -0
  88. package/dist-es/commands/UntagResourceCommand.js +10 -0
  89. package/dist-es/commands/UpdateDatasetCommand.js +10 -0
  90. package/dist-es/commands/UpdateProfileJobCommand.js +10 -0
  91. package/dist-es/commands/UpdateProjectCommand.js +10 -0
  92. package/dist-es/commands/UpdateRecipeCommand.js +10 -0
  93. package/dist-es/commands/UpdateRecipeJobCommand.js +10 -0
  94. package/dist-es/commands/UpdateRulesetCommand.js +10 -0
  95. package/dist-es/commands/UpdateScheduleCommand.js +10 -0
  96. package/dist-es/endpoint/EndpointParameters.js +8 -0
  97. package/dist-es/endpoint/endpointResolver.js +8 -0
  98. package/dist-es/endpoint/ruleset.js +315 -0
  99. package/dist-es/runtimeConfig.shared.js +2 -2
  100. package/dist-types/DataBrewClient.d.ts +6 -9
  101. package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +2 -0
  102. package/dist-types/commands/CreateDatasetCommand.d.ts +2 -0
  103. package/dist-types/commands/CreateProfileJobCommand.d.ts +2 -0
  104. package/dist-types/commands/CreateProjectCommand.d.ts +2 -0
  105. package/dist-types/commands/CreateRecipeCommand.d.ts +2 -0
  106. package/dist-types/commands/CreateRecipeJobCommand.d.ts +2 -0
  107. package/dist-types/commands/CreateRulesetCommand.d.ts +2 -0
  108. package/dist-types/commands/CreateScheduleCommand.d.ts +2 -0
  109. package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -0
  110. package/dist-types/commands/DeleteJobCommand.d.ts +2 -0
  111. package/dist-types/commands/DeleteProjectCommand.d.ts +2 -0
  112. package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +2 -0
  113. package/dist-types/commands/DeleteRulesetCommand.d.ts +2 -0
  114. package/dist-types/commands/DeleteScheduleCommand.d.ts +2 -0
  115. package/dist-types/commands/DescribeDatasetCommand.d.ts +2 -0
  116. package/dist-types/commands/DescribeJobCommand.d.ts +2 -0
  117. package/dist-types/commands/DescribeJobRunCommand.d.ts +2 -0
  118. package/dist-types/commands/DescribeProjectCommand.d.ts +2 -0
  119. package/dist-types/commands/DescribeRecipeCommand.d.ts +2 -0
  120. package/dist-types/commands/DescribeRulesetCommand.d.ts +2 -0
  121. package/dist-types/commands/DescribeScheduleCommand.d.ts +2 -0
  122. package/dist-types/commands/ListDatasetsCommand.d.ts +2 -0
  123. package/dist-types/commands/ListJobRunsCommand.d.ts +2 -0
  124. package/dist-types/commands/ListJobsCommand.d.ts +2 -0
  125. package/dist-types/commands/ListProjectsCommand.d.ts +2 -0
  126. package/dist-types/commands/ListRecipeVersionsCommand.d.ts +2 -0
  127. package/dist-types/commands/ListRecipesCommand.d.ts +2 -0
  128. package/dist-types/commands/ListRulesetsCommand.d.ts +2 -0
  129. package/dist-types/commands/ListSchedulesCommand.d.ts +2 -0
  130. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  131. package/dist-types/commands/PublishRecipeCommand.d.ts +2 -0
  132. package/dist-types/commands/SendProjectSessionActionCommand.d.ts +2 -0
  133. package/dist-types/commands/StartJobRunCommand.d.ts +2 -0
  134. package/dist-types/commands/StartProjectSessionCommand.d.ts +2 -0
  135. package/dist-types/commands/StopJobRunCommand.d.ts +2 -0
  136. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  137. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  138. package/dist-types/commands/UpdateDatasetCommand.d.ts +2 -0
  139. package/dist-types/commands/UpdateProfileJobCommand.d.ts +2 -0
  140. package/dist-types/commands/UpdateProjectCommand.d.ts +2 -0
  141. package/dist-types/commands/UpdateRecipeCommand.d.ts +2 -0
  142. package/dist-types/commands/UpdateRecipeJobCommand.d.ts +2 -0
  143. package/dist-types/commands/UpdateRulesetCommand.d.ts +2 -0
  144. package/dist-types/commands/UpdateScheduleCommand.d.ts +2 -0
  145. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  146. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  147. package/dist-types/endpoint/ruleset.d.ts +2 -0
  148. package/dist-types/runtimeConfig.browser.d.ts +4 -2
  149. package/dist-types/runtimeConfig.d.ts +4 -2
  150. package/dist-types/runtimeConfig.native.d.ts +4 -2
  151. package/dist-types/runtimeConfig.shared.d.ts +3 -1
  152. package/dist-types/ts3.4/DataBrewClient.d.ts +15 -8
  153. package/dist-types/ts3.4/commands/BatchDeleteRecipeVersionCommand.d.ts +2 -0
  154. package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +2 -0
  155. package/dist-types/ts3.4/commands/CreateProfileJobCommand.d.ts +2 -0
  156. package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +2 -0
  157. package/dist-types/ts3.4/commands/CreateRecipeCommand.d.ts +2 -0
  158. package/dist-types/ts3.4/commands/CreateRecipeJobCommand.d.ts +2 -0
  159. package/dist-types/ts3.4/commands/CreateRulesetCommand.d.ts +2 -0
  160. package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +2 -0
  161. package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +2 -0
  162. package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +2 -0
  163. package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +2 -0
  164. package/dist-types/ts3.4/commands/DeleteRecipeVersionCommand.d.ts +2 -0
  165. package/dist-types/ts3.4/commands/DeleteRulesetCommand.d.ts +2 -0
  166. package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +2 -0
  167. package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +2 -0
  168. package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +2 -0
  169. package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +2 -0
  170. package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +2 -0
  171. package/dist-types/ts3.4/commands/DescribeRecipeCommand.d.ts +2 -0
  172. package/dist-types/ts3.4/commands/DescribeRulesetCommand.d.ts +2 -0
  173. package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +2 -0
  174. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +2 -0
  175. package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +2 -0
  176. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +2 -0
  177. package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +2 -0
  178. package/dist-types/ts3.4/commands/ListRecipeVersionsCommand.d.ts +2 -0
  179. package/dist-types/ts3.4/commands/ListRecipesCommand.d.ts +2 -0
  180. package/dist-types/ts3.4/commands/ListRulesetsCommand.d.ts +2 -0
  181. package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +2 -0
  182. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
  183. package/dist-types/ts3.4/commands/PublishRecipeCommand.d.ts +2 -0
  184. package/dist-types/ts3.4/commands/SendProjectSessionActionCommand.d.ts +2 -0
  185. package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +2 -0
  186. package/dist-types/ts3.4/commands/StartProjectSessionCommand.d.ts +2 -0
  187. package/dist-types/ts3.4/commands/StopJobRunCommand.d.ts +2 -0
  188. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
  189. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
  190. package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +2 -0
  191. package/dist-types/ts3.4/commands/UpdateProfileJobCommand.d.ts +2 -0
  192. package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +2 -0
  193. package/dist-types/ts3.4/commands/UpdateRecipeCommand.d.ts +2 -0
  194. package/dist-types/ts3.4/commands/UpdateRecipeJobCommand.d.ts +2 -0
  195. package/dist-types/ts3.4/commands/UpdateRulesetCommand.d.ts +2 -0
  196. package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +2 -0
  197. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
  198. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  199. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  200. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
  201. package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
  202. package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
  203. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
  204. package/package.json +5 -3
  205. package/dist-cjs/endpoints.js +0 -169
  206. package/dist-es/endpoints.js +0 -165
  207. package/dist-types/endpoints.d.ts +0 -2
  208. package/dist-types/ts3.4/endpoints.d.ts +0 -2
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
25
26
  */
26
27
  export declare class DeleteJobCommand extends $Command<DeleteJobCommandInput, DeleteJobCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DeleteJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteJobCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met
25
26
  */
26
27
  export declare class DeleteProjectCommand extends $Command<DeleteProjectCommandInput, DeleteProjectCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DeleteProjectCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteProjectCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DeleteRecipeVersionCommandOutput extends DeleteRecipeVersionRes
25
26
  */
26
27
  export declare class DeleteRecipeVersionCommand extends $Command<DeleteRecipeVersionCommandInput, DeleteRecipeVersionCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DeleteRecipeVersionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteRecipeVersionCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DeleteRulesetCommandOutput extends DeleteRulesetResponse, __Met
25
26
  */
26
27
  export declare class DeleteRulesetCommand extends $Command<DeleteRulesetCommandInput, DeleteRulesetCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DeleteRulesetCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteRulesetCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleResponse, __M
25
26
  */
26
27
  export declare class DeleteScheduleCommand extends $Command<DeleteScheduleCommandInput, DeleteScheduleCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DeleteScheduleCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteScheduleCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
25
26
  */
26
27
  export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DescribeDatasetCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DescribeDatasetCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DescribeJobCommandOutput extends DescribeJobResponse, __Metadat
25
26
  */
26
27
  export declare class DescribeJobCommand extends $Command<DescribeJobCommandInput, DescribeJobCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DescribeJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DescribeJobCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
25
26
  */
26
27
  export declare class DescribeJobRunCommand extends $Command<DescribeJobRunCommandInput, DescribeJobRunCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DescribeJobRunCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DescribeJobRunCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DescribeProjectCommandOutput extends DescribeProjectResponse, _
25
26
  */
26
27
  export declare class DescribeProjectCommand extends $Command<DescribeProjectCommandInput, DescribeProjectCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DescribeProjectCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DescribeProjectCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -26,6 +27,7 @@ export interface DescribeRecipeCommandOutput extends DescribeRecipeResponse, __M
26
27
  */
27
28
  export declare class DescribeRecipeCommand extends $Command<DescribeRecipeCommandInput, DescribeRecipeCommandOutput, DataBrewClientResolvedConfig> {
28
29
  readonly input: DescribeRecipeCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: DescribeRecipeCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DescribeRulesetCommandOutput extends DescribeRulesetResponse, _
25
26
  */
26
27
  export declare class DescribeRulesetCommand extends $Command<DescribeRulesetCommandInput, DescribeRulesetCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DescribeRulesetCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DescribeRulesetCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse,
25
26
  */
26
27
  export declare class DescribeScheduleCommand extends $Command<DescribeScheduleCommandInput, DescribeScheduleCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: DescribeScheduleCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DescribeScheduleCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
25
26
  */
26
27
  export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: ListDatasetsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListDatasetsCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
25
26
  */
26
27
  export declare class ListJobRunsCommand extends $Command<ListJobRunsCommandInput, ListJobRunsCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: ListJobRunsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListJobRunsCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
25
26
  */
26
27
  export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: ListJobsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListJobsCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
25
26
  */
26
27
  export declare class ListProjectsCommand extends $Command<ListProjectsCommandInput, ListProjectsCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: ListProjectsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListProjectsCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -26,6 +27,7 @@ export interface ListRecipeVersionsCommandOutput extends ListRecipeVersionsRespo
26
27
  */
27
28
  export declare class ListRecipeVersionsCommand extends $Command<ListRecipeVersionsCommandInput, ListRecipeVersionsCommandOutput, DataBrewClientResolvedConfig> {
28
29
  readonly input: ListRecipeVersionsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListRecipeVersionsCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface ListRecipesCommandOutput extends ListRecipesResponse, __Metadat
25
26
  */
26
27
  export declare class ListRecipesCommand extends $Command<ListRecipesCommandInput, ListRecipesCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: ListRecipesCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListRecipesCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -26,6 +27,7 @@ export interface ListRulesetsCommandOutput extends ListRulesetsResponse, __Metad
26
27
  */
27
28
  export declare class ListRulesetsCommand extends $Command<ListRulesetsCommandInput, ListRulesetsCommandOutput, DataBrewClientResolvedConfig> {
28
29
  readonly input: ListRulesetsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListRulesetsCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface ListSchedulesCommandOutput extends ListSchedulesResponse, __Met
25
26
  */
26
27
  export declare class ListSchedulesCommand extends $Command<ListSchedulesCommandInput, ListSchedulesCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: ListSchedulesCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListSchedulesCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
26
  */
26
27
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: ListTagsForResourceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListTagsForResourceCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface PublishRecipeCommandOutput extends PublishRecipeResponse, __Met
25
26
  */
26
27
  export declare class PublishRecipeCommand extends $Command<PublishRecipeCommandInput, PublishRecipeCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: PublishRecipeCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: PublishRecipeCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -26,6 +27,7 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio
26
27
  */
27
28
  export declare class SendProjectSessionActionCommand extends $Command<SendProjectSessionActionCommandInput, SendProjectSessionActionCommandOutput, DataBrewClientResolvedConfig> {
28
29
  readonly input: SendProjectSessionActionCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: SendProjectSessionActionCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
25
26
  */
26
27
  export declare class StartJobRunCommand extends $Command<StartJobRunCommandInput, StartJobRunCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: StartJobRunCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: StartJobRunCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -26,6 +27,7 @@ export interface StartProjectSessionCommandOutput extends StartProjectSessionRes
26
27
  */
27
28
  export declare class StartProjectSessionCommand extends $Command<StartProjectSessionCommandInput, StartProjectSessionCommandOutput, DataBrewClientResolvedConfig> {
28
29
  readonly input: StartProjectSessionCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: StartProjectSessionCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface StopJobRunCommandOutput extends StopJobRunResponse, __MetadataB
25
26
  */
26
27
  export declare class StopJobRunCommand extends $Command<StopJobRunCommandInput, StopJobRunCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: StopJobRunCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: StopJobRunCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -26,6 +27,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
27
  */
27
28
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DataBrewClientResolvedConfig> {
28
29
  readonly input: TagResourceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: TagResourceCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
26
  */
26
27
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: UntagResourceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: UntagResourceCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
25
26
  */
26
27
  export declare class UpdateDatasetCommand extends $Command<UpdateDatasetCommandInput, UpdateDatasetCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: UpdateDatasetCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: UpdateDatasetCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
25
26
  */
26
27
  export declare class UpdateProfileJobCommand extends $Command<UpdateProfileJobCommandInput, UpdateProfileJobCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: UpdateProfileJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: UpdateProfileJobCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
25
26
  */
26
27
  export declare class UpdateProjectCommand extends $Command<UpdateProjectCommandInput, UpdateProjectCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: UpdateProjectCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: UpdateProjectCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -26,6 +27,7 @@ export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __Metad
26
27
  */
27
28
  export declare class UpdateRecipeCommand extends $Command<UpdateRecipeCommandInput, UpdateRecipeCommandOutput, DataBrewClientResolvedConfig> {
28
29
  readonly input: UpdateRecipeCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: UpdateRecipeCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _
25
26
  */
26
27
  export declare class UpdateRecipeJobCommand extends $Command<UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: UpdateRecipeJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: UpdateRecipeJobCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface UpdateRulesetCommandOutput extends UpdateRulesetResponse, __Met
25
26
  */
26
27
  export declare class UpdateRulesetCommand extends $Command<UpdateRulesetCommandInput, UpdateRulesetCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: UpdateRulesetCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: UpdateRulesetCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient";
@@ -25,6 +26,7 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleResponse, __M
25
26
  */
26
27
  export declare class UpdateScheduleCommand extends $Command<UpdateScheduleCommandInput, UpdateScheduleCommandOutput, DataBrewClientResolvedConfig> {
27
28
  readonly input: UpdateScheduleCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: UpdateScheduleCommandInput);
29
31
  /**
30
32
  * @internal
@@ -0,0 +1,19 @@
1
+ import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
2
+ export interface ClientInputEndpointParameters {
3
+ region?: string | Provider<string>;
4
+ useDualstackEndpoint?: boolean | Provider<boolean>;
5
+ useFipsEndpoint?: boolean | Provider<boolean>;
6
+ endpoint?: string | Provider<string>;
7
+ }
8
+ export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
9
+ defaultSigningName: string;
10
+ };
11
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export interface EndpointParameters extends __EndpointParameters {
15
+ Region?: string;
16
+ UseDualStack?: boolean;
17
+ UseFIPS?: boolean;
18
+ Endpoint?: string;
19
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: DataBrewClientConfig) => {
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
29
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
30
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
31
33
  tls?: boolean | undefined;
32
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
35
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: DataBrewClientConfig) => {
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
29
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
30
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
31
33
  tls?: boolean | undefined;
32
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
35
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: DataBrewClientConfig) => {
23
23
  serviceId: string;
24
24
  region: string | import("@aws-sdk/types").Provider<any>;
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
26
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
27
  defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
29
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
30
32
  tls?: boolean | undefined;
31
33
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
34
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -6,8 +6,10 @@ import { DataBrewClientConfig } from "./DataBrewClient";
6
6
  export declare const getRuntimeConfig: (config: DataBrewClientConfig) => {
7
7
  apiVersion: string;
8
8
  disableHostPrefix: boolean;
9
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
10
+ logger?: __Logger | undefined;
11
+ }) => import("@aws-sdk/types").EndpointV2;
9
12
  logger: __Logger;
10
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
11
13
  serviceId: string;
12
14
  urlParser: import("@aws-sdk/types").UrlParser;
13
15
  };