@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,9 +1,11 @@
1
1
  import {
2
- EndpointsInputConfig,
3
- EndpointsResolvedConfig,
4
2
  RegionInputConfig,
5
3
  RegionResolvedConfig,
6
4
  } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
7
9
  import {
8
10
  HostHeaderInputConfig,
9
11
  HostHeaderResolvedConfig,
@@ -37,7 +39,6 @@ import {
37
39
  Logger as __Logger,
38
40
  Provider as __Provider,
39
41
  Provider,
40
- RegionInfoProvider,
41
42
  StreamCollector as __StreamCollector,
42
43
  UrlParser as __UrlParser,
43
44
  UserAgent as __UserAgent,
@@ -218,6 +219,11 @@ import {
218
219
  UpdateScheduleCommandInput,
219
220
  UpdateScheduleCommandOutput,
220
221
  } from "./commands/UpdateScheduleCommand";
222
+ import {
223
+ ClientInputEndpointParameters,
224
+ ClientResolvedEndpointParameters,
225
+ EndpointParameters,
226
+ } from "./endpoint/EndpointParameters";
221
227
  export declare type ServiceInputTypes =
222
228
  | BatchDeleteRecipeVersionCommandInput
223
229
  | CreateDatasetCommandInput
@@ -329,7 +335,6 @@ export interface ClientDefaults
329
335
  serviceId?: string;
330
336
  region?: string | __Provider<string>;
331
337
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
332
- regionInfoProvider?: RegionInfoProvider;
333
338
  defaultUserAgentProvider?: Provider<__UserAgent>;
334
339
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
335
340
  }
@@ -338,21 +343,23 @@ declare type DataBrewClientConfigType = Partial<
338
343
  > &
339
344
  ClientDefaults &
340
345
  RegionInputConfig &
341
- EndpointsInputConfig &
346
+ EndpointInputConfig<EndpointParameters> &
342
347
  RetryInputConfig &
343
348
  HostHeaderInputConfig &
344
349
  AwsAuthInputConfig &
345
- UserAgentInputConfig;
350
+ UserAgentInputConfig &
351
+ ClientInputEndpointParameters;
346
352
  export interface DataBrewClientConfig extends DataBrewClientConfigType {}
347
353
  declare type DataBrewClientResolvedConfigType =
348
354
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
349
355
  Required<ClientDefaults> &
350
356
  RegionResolvedConfig &
351
- EndpointsResolvedConfig &
357
+ EndpointResolvedConfig<EndpointParameters> &
352
358
  RetryResolvedConfig &
353
359
  HostHeaderResolvedConfig &
354
360
  AwsAuthResolvedConfig &
355
- UserAgentResolvedConfig;
361
+ UserAgentResolvedConfig &
362
+ ClientResolvedEndpointParameters;
356
363
  export interface DataBrewClientResolvedConfig
357
364
  extends DataBrewClientResolvedConfigType {}
358
365
  export declare class DataBrewClient extends __Client<
@@ -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 {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class BatchDeleteRecipeVersionCommand extends $Command<
25
26
  DataBrewClientResolvedConfig
26
27
  > {
27
28
  readonly input: BatchDeleteRecipeVersionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: BatchDeleteRecipeVersionCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class CreateDatasetCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: CreateDatasetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: CreateDatasetCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class CreateProfileJobCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: CreateProfileJobCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: CreateProfileJobCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class CreateProjectCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: CreateProjectCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: CreateProjectCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class CreateRecipeCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: CreateRecipeCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: CreateRecipeCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class CreateRecipeJobCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: CreateRecipeJobCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: CreateRecipeJobCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class CreateRulesetCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: CreateRulesetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: CreateRulesetCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class CreateScheduleCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: CreateScheduleCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: CreateScheduleCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DeleteDatasetCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DeleteDatasetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DeleteDatasetCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class DeleteJobCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: DeleteJobCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: DeleteJobCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DeleteProjectCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DeleteProjectCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DeleteProjectCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class DeleteRecipeVersionCommand extends $Command<
25
26
  DataBrewClientResolvedConfig
26
27
  > {
27
28
  readonly input: DeleteRecipeVersionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteRecipeVersionCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DeleteRulesetCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DeleteRulesetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DeleteRulesetCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DeleteScheduleCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DeleteScheduleCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DeleteScheduleCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DescribeDatasetCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DescribeDatasetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DescribeDatasetCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class DescribeJobCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: DescribeJobCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: DescribeJobCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DescribeJobRunCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DescribeJobRunCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DescribeJobRunCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DescribeProjectCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DescribeProjectCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DescribeProjectCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DescribeRecipeCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DescribeRecipeCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DescribeRecipeCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DescribeRulesetCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DescribeRulesetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DescribeRulesetCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DescribeScheduleCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: DescribeScheduleCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DescribeScheduleCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListDatasetsCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListDatasetsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListDatasetsCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListJobRunsCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListJobRunsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListJobRunsCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListJobsCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListJobsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListJobsCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListProjectsCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListProjectsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListProjectsCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class ListRecipeVersionsCommand extends $Command<
25
26
  DataBrewClientResolvedConfig
26
27
  > {
27
28
  readonly input: ListRecipeVersionsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListRecipeVersionsCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListRecipesCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListRecipesCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListRecipesCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListRulesetsCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListRulesetsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListRulesetsCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class ListSchedulesCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: ListSchedulesCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: ListSchedulesCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
25
26
  DataBrewClientResolvedConfig
26
27
  > {
27
28
  readonly input: ListTagsForResourceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListTagsForResourceCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class PublishRecipeCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: PublishRecipeCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: PublishRecipeCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class SendProjectSessionActionCommand extends $Command<
25
26
  DataBrewClientResolvedConfig
26
27
  > {
27
28
  readonly input: SendProjectSessionActionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: SendProjectSessionActionCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class StartJobRunCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: StartJobRunCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: StartJobRunCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class StartProjectSessionCommand extends $Command<
25
26
  DataBrewClientResolvedConfig
26
27
  > {
27
28
  readonly input: StartProjectSessionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: StartProjectSessionCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class StopJobRunCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: StopJobRunCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: StopJobRunCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class TagResourceCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: TagResourceCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: TagResourceCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class UntagResourceCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: UntagResourceCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: UntagResourceCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class UpdateDatasetCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: UpdateDatasetCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: UpdateDatasetCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class UpdateProfileJobCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: UpdateProfileJobCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: UpdateProfileJobCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class UpdateProjectCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: UpdateProjectCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: UpdateProjectCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class UpdateRecipeCommand extends $Command<
21
22
  DataBrewClientResolvedConfig
22
23
  > {
23
24
  readonly input: UpdateRecipeCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: UpdateRecipeCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -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 {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class UpdateRecipeJobCommand extends $Command<
24
25
  DataBrewClientResolvedConfig
25
26
  > {
26
27
  readonly input: UpdateRecipeJobCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: UpdateRecipeJobCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,