@aws-sdk/client-sagemaker 3.461.0 → 3.462.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 (181) hide show
  1. package/README.md +104 -0
  2. package/dist-cjs/SageMaker.js +26 -0
  3. package/dist-cjs/commands/CreateClusterCommand.js +51 -0
  4. package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
  5. package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
  7. package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
  8. package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
  9. package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
  10. package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
  11. package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
  12. package/dist-cjs/commands/ListClustersCommand.js +51 -0
  13. package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
  14. package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
  15. package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
  16. package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
  17. package/dist-cjs/commands/index.js +13 -0
  18. package/dist-cjs/models/models_0.js +62 -51
  19. package/dist-cjs/models/models_1.js +63 -30
  20. package/dist-cjs/models/models_2.js +37 -39
  21. package/dist-cjs/models/models_3.js +45 -44
  22. package/dist-cjs/models/models_4.js +45 -3
  23. package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
  24. package/dist-cjs/pagination/index.js +1 -0
  25. package/dist-cjs/protocols/Aws_json1_1.js +845 -13
  26. package/dist-es/SageMaker.js +26 -0
  27. package/dist-es/commands/CreateClusterCommand.js +47 -0
  28. package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
  29. package/dist-es/commands/CreateWorkforceCommand.js +1 -1
  30. package/dist-es/commands/DeleteClusterCommand.js +47 -0
  31. package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
  32. package/dist-es/commands/DescribeClusterCommand.js +47 -0
  33. package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
  34. package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
  35. package/dist-es/commands/ListClusterNodesCommand.js +47 -0
  36. package/dist-es/commands/ListClustersCommand.js +47 -0
  37. package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
  38. package/dist-es/commands/UpdateClusterCommand.js +47 -0
  39. package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
  40. package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
  41. package/dist-es/commands/index.js +13 -0
  42. package/dist-es/models/models_0.js +60 -50
  43. package/dist-es/models/models_1.js +62 -27
  44. package/dist-es/models/models_2.js +34 -38
  45. package/dist-es/models/models_3.js +43 -42
  46. package/dist-es/models/models_4.js +43 -1
  47. package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
  48. package/dist-es/pagination/index.js +1 -0
  49. package/dist-es/protocols/Aws_json1_1.js +807 -1
  50. package/dist-types/SageMaker.d.ts +91 -0
  51. package/dist-types/SageMakerClient.d.ts +15 -2
  52. package/dist-types/commands/AddTagsCommand.d.ts +1 -1
  53. package/dist-types/commands/CreateAppCommand.d.ts +2 -1
  54. package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
  55. package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
  56. package/dist-types/commands/CreateDomainCommand.d.ts +15 -8
  57. package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
  58. package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
  59. package/dist-types/commands/CreateModelCommand.d.ts +1 -1
  60. package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
  61. package/dist-types/commands/CreateSpaceCommand.d.ts +2 -0
  62. package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateTrainingJobCommand.d.ts +3 -0
  64. package/dist-types/commands/CreateUserProfileCommand.d.ts +9 -2
  65. package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
  66. package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
  67. package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
  68. package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
  69. package/dist-types/commands/DeleteAppCommand.d.ts +1 -1
  70. package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  71. package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
  72. package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
  73. package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
  74. package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
  75. package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
  76. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
  77. package/dist-types/commands/DescribeAppCommand.d.ts +1 -0
  78. package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
  79. package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
  80. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
  81. package/dist-types/commands/DescribeDomainCommand.d.ts +7 -0
  82. package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
  83. package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
  84. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
  85. package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
  86. package/dist-types/commands/DescribeSpaceCommand.d.ts +3 -0
  87. package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
  88. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +3 -0
  89. package/dist-types/commands/DescribeUserProfileCommand.d.ts +8 -1
  90. package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
  91. package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
  92. package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  93. package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  94. package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  95. package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
  96. package/dist-types/commands/ListClustersCommand.d.ts +87 -0
  97. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
  98. package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
  99. package/dist-types/commands/ListSpacesCommand.d.ts +1 -1
  100. package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
  101. package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +2 -2
  102. package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  103. package/dist-types/commands/ListTagsCommand.d.ts +1 -1
  104. package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
  105. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  106. package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
  107. package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
  108. package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
  109. package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
  110. package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
  111. package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
  112. package/dist-types/commands/SearchCommand.d.ts +16 -0
  113. package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
  114. package/dist-types/commands/UpdateDomainCommand.d.ts +11 -0
  115. package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
  116. package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
  117. package/dist-types/commands/UpdateSpaceCommand.d.ts +2 -0
  118. package/dist-types/commands/UpdateUserProfileCommand.d.ts +6 -0
  119. package/dist-types/commands/index.d.ts +13 -0
  120. package/dist-types/models/models_0.d.ts +409 -345
  121. package/dist-types/models/models_1.d.ts +708 -551
  122. package/dist-types/models/models_2.d.ts +5059 -5239
  123. package/dist-types/models/models_3.d.ts +4732 -4693
  124. package/dist-types/models/models_4.d.ts +1446 -4
  125. package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/index.d.ts +1 -0
  127. package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
  128. package/dist-types/ts3.4/SageMaker.d.ts +227 -0
  129. package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
  130. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
  131. package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +2 -4
  133. package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
  134. package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
  135. package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
  136. package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
  137. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  139. package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
  142. package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
  143. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
  144. package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
  145. package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
  146. package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +2 -4
  147. package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
  153. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
  154. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
  155. package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
  156. package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
  170. package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
  171. package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
  172. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  173. package/dist-types/ts3.4/models/models_0.d.ts +124 -111
  174. package/dist-types/ts3.4/models/models_1.d.ts +188 -151
  175. package/dist-types/ts3.4/models/models_2.d.ts +227 -288
  176. package/dist-types/ts3.4/models/models_3.d.ts +349 -344
  177. package/dist-types/ts3.4/models/models_4.d.ts +372 -15
  178. package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
  179. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  180. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
  181. package/package.json +2 -2
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_UpdateClusterCommand, se_UpdateClusterCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class UpdateClusterCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, UpdateClusterCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "UpdateClusterCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "UpdateCluster",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_UpdateClusterCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_UpdateClusterCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_UpdateInferenceComponentCommand, se_UpdateInferenceComponentCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class UpdateInferenceComponentCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, UpdateInferenceComponentCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "UpdateInferenceComponentCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "UpdateInferenceComponent",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_UpdateInferenceComponentCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_UpdateInferenceComponentCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_UpdateInferenceComponentRuntimeConfigCommand, se_UpdateInferenceComponentRuntimeConfigCommand, } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class UpdateInferenceComponentRuntimeConfigCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, UpdateInferenceComponentRuntimeConfigCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "UpdateInferenceComponentRuntimeConfigCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "UpdateInferenceComponentRuntimeConfig",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_UpdateInferenceComponentRuntimeConfigCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_UpdateInferenceComponentRuntimeConfigCommand(output, context);
46
+ }
47
+ }
@@ -9,6 +9,7 @@ export * from "./CreateAppImageConfigCommand";
9
9
  export * from "./CreateArtifactCommand";
10
10
  export * from "./CreateAutoMLJobCommand";
11
11
  export * from "./CreateAutoMLJobV2Command";
12
+ export * from "./CreateClusterCommand";
12
13
  export * from "./CreateCodeRepositoryCommand";
13
14
  export * from "./CreateCompilationJobCommand";
14
15
  export * from "./CreateContextCommand";
@@ -28,6 +29,7 @@ export * from "./CreateHumanTaskUiCommand";
28
29
  export * from "./CreateHyperParameterTuningJobCommand";
29
30
  export * from "./CreateImageCommand";
30
31
  export * from "./CreateImageVersionCommand";
32
+ export * from "./CreateInferenceComponentCommand";
31
33
  export * from "./CreateInferenceExperimentCommand";
32
34
  export * from "./CreateInferenceRecommendationsJobCommand";
33
35
  export * from "./CreateLabelingJobCommand";
@@ -62,6 +64,7 @@ export * from "./DeleteAppCommand";
62
64
  export * from "./DeleteAppImageConfigCommand";
63
65
  export * from "./DeleteArtifactCommand";
64
66
  export * from "./DeleteAssociationCommand";
67
+ export * from "./DeleteClusterCommand";
65
68
  export * from "./DeleteCodeRepositoryCommand";
66
69
  export * from "./DeleteContextCommand";
67
70
  export * from "./DeleteDataQualityJobDefinitionCommand";
@@ -79,6 +82,7 @@ export * from "./DeleteHubContentCommand";
79
82
  export * from "./DeleteHumanTaskUiCommand";
80
83
  export * from "./DeleteImageCommand";
81
84
  export * from "./DeleteImageVersionCommand";
85
+ export * from "./DeleteInferenceComponentCommand";
82
86
  export * from "./DeleteInferenceExperimentCommand";
83
87
  export * from "./DeleteModelBiasJobDefinitionCommand";
84
88
  export * from "./DeleteModelCardCommand";
@@ -109,6 +113,8 @@ export * from "./DescribeAppImageConfigCommand";
109
113
  export * from "./DescribeArtifactCommand";
110
114
  export * from "./DescribeAutoMLJobCommand";
111
115
  export * from "./DescribeAutoMLJobV2Command";
116
+ export * from "./DescribeClusterCommand";
117
+ export * from "./DescribeClusterNodeCommand";
112
118
  export * from "./DescribeCodeRepositoryCommand";
113
119
  export * from "./DescribeCompilationJobCommand";
114
120
  export * from "./DescribeContextCommand";
@@ -130,6 +136,7 @@ export * from "./DescribeHumanTaskUiCommand";
130
136
  export * from "./DescribeHyperParameterTuningJobCommand";
131
137
  export * from "./DescribeImageCommand";
132
138
  export * from "./DescribeImageVersionCommand";
139
+ export * from "./DescribeInferenceComponentCommand";
133
140
  export * from "./DescribeInferenceExperimentCommand";
134
141
  export * from "./DescribeInferenceRecommendationsJobCommand";
135
142
  export * from "./DescribeLabelingJobCommand";
@@ -179,6 +186,8 @@ export * from "./ListArtifactsCommand";
179
186
  export * from "./ListAssociationsCommand";
180
187
  export * from "./ListAutoMLJobsCommand";
181
188
  export * from "./ListCandidatesForAutoMLJobCommand";
189
+ export * from "./ListClusterNodesCommand";
190
+ export * from "./ListClustersCommand";
182
191
  export * from "./ListCodeRepositoriesCommand";
183
192
  export * from "./ListCompilationJobsCommand";
184
193
  export * from "./ListContextsCommand";
@@ -200,6 +209,7 @@ export * from "./ListHumanTaskUisCommand";
200
209
  export * from "./ListHyperParameterTuningJobsCommand";
201
210
  export * from "./ListImageVersionsCommand";
202
211
  export * from "./ListImagesCommand";
212
+ export * from "./ListInferenceComponentsCommand";
203
213
  export * from "./ListInferenceExperimentsCommand";
204
214
  export * from "./ListInferenceRecommendationsJobStepsCommand";
205
215
  export * from "./ListInferenceRecommendationsJobsCommand";
@@ -272,6 +282,7 @@ export * from "./StopTransformJobCommand";
272
282
  export * from "./UpdateActionCommand";
273
283
  export * from "./UpdateAppImageConfigCommand";
274
284
  export * from "./UpdateArtifactCommand";
285
+ export * from "./UpdateClusterCommand";
275
286
  export * from "./UpdateCodeRepositoryCommand";
276
287
  export * from "./UpdateContextCommand";
277
288
  export * from "./UpdateDeviceFleetCommand";
@@ -285,6 +296,8 @@ export * from "./UpdateFeatureMetadataCommand";
285
296
  export * from "./UpdateHubCommand";
286
297
  export * from "./UpdateImageCommand";
287
298
  export * from "./UpdateImageVersionCommand";
299
+ export * from "./UpdateInferenceComponentCommand";
300
+ export * from "./UpdateInferenceComponentRuntimeConfigCommand";
288
301
  export * from "./UpdateInferenceExperimentCommand";
289
302
  export * from "./UpdateModelCardCommand";
290
303
  export * from "./UpdateModelPackageCommand";
@@ -796,6 +796,66 @@ export const ClarifyTextLanguage = {
796
796
  URDU: "ur",
797
797
  YORUBA: "yo",
798
798
  };
799
+ export const ClusterInstanceType = {
800
+ ML_C5N_18XLARGE: "ml.c5n.18xlarge",
801
+ ML_C5N_2XLARGE: "ml.c5n.2xlarge",
802
+ ML_C5N_4XLARGE: "ml.c5n.4xlarge",
803
+ ML_C5N_9XLARGE: "ml.c5n.9xlarge",
804
+ ML_C5N_LARGE: "ml.c5n.large",
805
+ ML_C5_12XLARGE: "ml.c5.12xlarge",
806
+ ML_C5_18XLARGE: "ml.c5.18xlarge",
807
+ ML_C5_24XLARGE: "ml.c5.24xlarge",
808
+ ML_C5_2XLARGE: "ml.c5.2xlarge",
809
+ ML_C5_4XLARGE: "ml.c5.4xlarge",
810
+ ML_C5_9XLARGE: "ml.c5.9xlarge",
811
+ ML_C5_LARGE: "ml.c5.large",
812
+ ML_C5_XLARGE: "ml.c5.xlarge",
813
+ ML_G5_12XLARGE: "ml.g5.12xlarge",
814
+ ML_G5_16XLARGE: "ml.g5.16xlarge",
815
+ ML_G5_24XLARGE: "ml.g5.24xlarge",
816
+ ML_G5_2XLARGE: "ml.g5.2xlarge",
817
+ ML_G5_48XLARGE: "ml.g5.48xlarge",
818
+ ML_G5_4XLARGE: "ml.g5.4xlarge",
819
+ ML_G5_8XLARGE: "ml.g5.8xlarge",
820
+ ML_G5_XLARGE: "ml.g5.xlarge",
821
+ ML_M5_12XLARGE: "ml.m5.12xlarge",
822
+ ML_M5_16XLARGE: "ml.m5.16xlarge",
823
+ ML_M5_24XLARGE: "ml.m5.24xlarge",
824
+ ML_M5_2XLARGE: "ml.m5.2xlarge",
825
+ ML_M5_4XLARGE: "ml.m5.4xlarge",
826
+ ML_M5_8XLARGE: "ml.m5.8xlarge",
827
+ ML_M5_LARGE: "ml.m5.large",
828
+ ML_M5_XLARGE: "ml.m5.xlarge",
829
+ ML_P4DE_24XLARGE: "ml.p4de.24xlarge",
830
+ ML_P4D_24XLARGE: "ml.p4d.24xlarge",
831
+ ML_P5_48XLARGE: "ml.p5.48xlarge",
832
+ ML_T3_2XLARGE: "ml.t3.2xlarge",
833
+ ML_T3_LARGE: "ml.t3.large",
834
+ ML_T3_MEDIUM: "ml.t3.medium",
835
+ ML_T3_XLARGE: "ml.t3.xlarge",
836
+ ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge",
837
+ ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
838
+ };
839
+ export const ClusterInstanceStatus = {
840
+ FAILURE: "Failure",
841
+ PENDING: "Pending",
842
+ RUNNING: "Running",
843
+ SHUTTING_DOWN: "ShuttingDown",
844
+ SYSTEM_UPDATING: "SystemUpdating",
845
+ };
846
+ export const ClusterSortBy = {
847
+ CREATION_TIME: "CREATION_TIME",
848
+ NAME: "NAME",
849
+ };
850
+ export const ClusterStatus = {
851
+ CREATING: "Creating",
852
+ DELETING: "Deleting",
853
+ FAILED: "Failed",
854
+ INSERVICE: "InService",
855
+ ROLLINGBACK: "RollingBack",
856
+ SYSTEMUPDATING: "SystemUpdating",
857
+ UPDATING: "Updating",
858
+ };
799
859
  export const CodeRepositorySortBy = {
800
860
  CREATION_TIME: "CreationTime",
801
861
  LAST_MODIFIED_TIME: "LastModifiedTime",
@@ -964,53 +1024,3 @@ export const Framework = {
964
1024
  TFLITE: "TFLITE",
965
1025
  XGBOOST: "XGBOOST",
966
1026
  };
967
- export const ProcessingS3UploadMode = {
968
- CONTINUOUS: "Continuous",
969
- END_OF_JOB: "EndOfJob",
970
- };
971
- export const ProcessingInstanceType = {
972
- ML_C4_2XLARGE: "ml.c4.2xlarge",
973
- ML_C4_4XLARGE: "ml.c4.4xlarge",
974
- ML_C4_8XLARGE: "ml.c4.8xlarge",
975
- ML_C4_XLARGE: "ml.c4.xlarge",
976
- ML_C5_18XLARGE: "ml.c5.18xlarge",
977
- ML_C5_2XLARGE: "ml.c5.2xlarge",
978
- ML_C5_4XLARGE: "ml.c5.4xlarge",
979
- ML_C5_9XLARGE: "ml.c5.9xlarge",
980
- ML_C5_XLARGE: "ml.c5.xlarge",
981
- ML_G4DN_12XLARGE: "ml.g4dn.12xlarge",
982
- ML_G4DN_16XLARGE: "ml.g4dn.16xlarge",
983
- ML_G4DN_2XLARGE: "ml.g4dn.2xlarge",
984
- ML_G4DN_4XLARGE: "ml.g4dn.4xlarge",
985
- ML_G4DN_8XLARGE: "ml.g4dn.8xlarge",
986
- ML_G4DN_XLARGE: "ml.g4dn.xlarge",
987
- ML_M4_10XLARGE: "ml.m4.10xlarge",
988
- ML_M4_16XLARGE: "ml.m4.16xlarge",
989
- ML_M4_2XLARGE: "ml.m4.2xlarge",
990
- ML_M4_4XLARGE: "ml.m4.4xlarge",
991
- ML_M4_XLARGE: "ml.m4.xlarge",
992
- ML_M5_12XLARGE: "ml.m5.12xlarge",
993
- ML_M5_24XLARGE: "ml.m5.24xlarge",
994
- ML_M5_2XLARGE: "ml.m5.2xlarge",
995
- ML_M5_4XLARGE: "ml.m5.4xlarge",
996
- ML_M5_LARGE: "ml.m5.large",
997
- ML_M5_XLARGE: "ml.m5.xlarge",
998
- ML_P2_16XLARGE: "ml.p2.16xlarge",
999
- ML_P2_8XLARGE: "ml.p2.8xlarge",
1000
- ML_P2_XLARGE: "ml.p2.xlarge",
1001
- ML_P3_16XLARGE: "ml.p3.16xlarge",
1002
- ML_P3_2XLARGE: "ml.p3.2xlarge",
1003
- ML_P3_8XLARGE: "ml.p3.8xlarge",
1004
- ML_R5_12XLARGE: "ml.r5.12xlarge",
1005
- ML_R5_16XLARGE: "ml.r5.16xlarge",
1006
- ML_R5_24XLARGE: "ml.r5.24xlarge",
1007
- ML_R5_2XLARGE: "ml.r5.2xlarge",
1008
- ML_R5_4XLARGE: "ml.r5.4xlarge",
1009
- ML_R5_8XLARGE: "ml.r5.8xlarge",
1010
- ML_R5_LARGE: "ml.r5.large",
1011
- ML_R5_XLARGE: "ml.r5.xlarge",
1012
- ML_T3_2XLARGE: "ml.t3.2xlarge",
1013
- ML_T3_LARGE: "ml.t3.large",
1014
- ML_T3_MEDIUM: "ml.t3.medium",
1015
- ML_T3_XLARGE: "ml.t3.xlarge",
1016
- };
@@ -1,4 +1,54 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ export const ProcessingS3UploadMode = {
3
+ CONTINUOUS: "Continuous",
4
+ END_OF_JOB: "EndOfJob",
5
+ };
6
+ export const ProcessingInstanceType = {
7
+ ML_C4_2XLARGE: "ml.c4.2xlarge",
8
+ ML_C4_4XLARGE: "ml.c4.4xlarge",
9
+ ML_C4_8XLARGE: "ml.c4.8xlarge",
10
+ ML_C4_XLARGE: "ml.c4.xlarge",
11
+ ML_C5_18XLARGE: "ml.c5.18xlarge",
12
+ ML_C5_2XLARGE: "ml.c5.2xlarge",
13
+ ML_C5_4XLARGE: "ml.c5.4xlarge",
14
+ ML_C5_9XLARGE: "ml.c5.9xlarge",
15
+ ML_C5_XLARGE: "ml.c5.xlarge",
16
+ ML_G4DN_12XLARGE: "ml.g4dn.12xlarge",
17
+ ML_G4DN_16XLARGE: "ml.g4dn.16xlarge",
18
+ ML_G4DN_2XLARGE: "ml.g4dn.2xlarge",
19
+ ML_G4DN_4XLARGE: "ml.g4dn.4xlarge",
20
+ ML_G4DN_8XLARGE: "ml.g4dn.8xlarge",
21
+ ML_G4DN_XLARGE: "ml.g4dn.xlarge",
22
+ ML_M4_10XLARGE: "ml.m4.10xlarge",
23
+ ML_M4_16XLARGE: "ml.m4.16xlarge",
24
+ ML_M4_2XLARGE: "ml.m4.2xlarge",
25
+ ML_M4_4XLARGE: "ml.m4.4xlarge",
26
+ ML_M4_XLARGE: "ml.m4.xlarge",
27
+ ML_M5_12XLARGE: "ml.m5.12xlarge",
28
+ ML_M5_24XLARGE: "ml.m5.24xlarge",
29
+ ML_M5_2XLARGE: "ml.m5.2xlarge",
30
+ ML_M5_4XLARGE: "ml.m5.4xlarge",
31
+ ML_M5_LARGE: "ml.m5.large",
32
+ ML_M5_XLARGE: "ml.m5.xlarge",
33
+ ML_P2_16XLARGE: "ml.p2.16xlarge",
34
+ ML_P2_8XLARGE: "ml.p2.8xlarge",
35
+ ML_P2_XLARGE: "ml.p2.xlarge",
36
+ ML_P3_16XLARGE: "ml.p3.16xlarge",
37
+ ML_P3_2XLARGE: "ml.p3.2xlarge",
38
+ ML_P3_8XLARGE: "ml.p3.8xlarge",
39
+ ML_R5_12XLARGE: "ml.r5.12xlarge",
40
+ ML_R5_16XLARGE: "ml.r5.16xlarge",
41
+ ML_R5_24XLARGE: "ml.r5.24xlarge",
42
+ ML_R5_2XLARGE: "ml.r5.2xlarge",
43
+ ML_R5_4XLARGE: "ml.r5.4xlarge",
44
+ ML_R5_8XLARGE: "ml.r5.8xlarge",
45
+ ML_R5_LARGE: "ml.r5.large",
46
+ ML_R5_XLARGE: "ml.r5.xlarge",
47
+ ML_T3_2XLARGE: "ml.t3.2xlarge",
48
+ ML_T3_LARGE: "ml.t3.large",
49
+ ML_T3_MEDIUM: "ml.t3.medium",
50
+ ML_T3_XLARGE: "ml.t3.xlarge",
51
+ };
2
52
  export const EdgePresetDeploymentType = {
3
53
  GreengrassV2Component: "GreengrassV2Component",
4
54
  };
@@ -14,6 +64,10 @@ export const NotebookOutputOption = {
14
64
  Allowed: "Allowed",
15
65
  Disabled: "Disabled",
16
66
  };
67
+ export const StudioWebPortal = {
68
+ Disabled: "DISABLED",
69
+ Enabled: "ENABLED",
70
+ };
17
71
  export const ExecutionRoleIdentityConfig = {
18
72
  DISABLED: "DISABLED",
19
73
  USER_PROFILE_NAME: "USER_PROFILE_NAME",
@@ -35,6 +89,14 @@ export const ProductionVariantAcceleratorType = {
35
89
  ML_EIA2_MEDIUM: "ml.eia2.medium",
36
90
  ML_EIA2_XLARGE: "ml.eia2.xlarge",
37
91
  };
92
+ export const ManagedInstanceScalingStatus = {
93
+ DISABLED: "DISABLED",
94
+ ENABLED: "ENABLED",
95
+ };
96
+ export const RoutingStrategy = {
97
+ LEAST_OUTSTANDING_REQUESTS: "LEAST_OUTSTANDING_REQUESTS",
98
+ RANDOM: "RANDOM",
99
+ };
38
100
  export const FeatureType = {
39
101
  FRACTIONAL: "Fractional",
40
102
  INTEGRAL: "Integral",
@@ -279,34 +341,7 @@ export const TrialComponentPrimaryStatus = {
279
341
  STOPPED: "Stopped",
280
342
  STOPPING: "Stopping",
281
343
  };
282
- export const CrossAccountFilterOption = {
283
- CROSS_ACCOUNT: "CrossAccount",
284
- SAME_ACCOUNT: "SameAccount",
285
- };
286
- export const Statistic = {
287
- AVERAGE: "Average",
288
- MAXIMUM: "Maximum",
289
- MINIMUM: "Minimum",
290
- SAMPLE_COUNT: "SampleCount",
291
- SUM: "Sum",
292
- };
293
- export const RuleEvaluationStatus = {
294
- ERROR: "Error",
295
- IN_PROGRESS: "InProgress",
296
- ISSUES_FOUND: "IssuesFound",
297
- NO_ISSUES_FOUND: "NoIssuesFound",
298
- STOPPED: "Stopped",
299
- STOPPING: "Stopping",
300
- };
301
344
  export const CreateModelCardRequestFilterSensitiveLog = (obj) => ({
302
345
  ...obj,
303
346
  ...(obj.Content && { Content: SENSITIVE_STRING }),
304
347
  });
305
- export const OidcConfigFilterSensitiveLog = (obj) => ({
306
- ...obj,
307
- ...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
308
- });
309
- export const CreateWorkforceRequestFilterSensitiveLog = (obj) => ({
310
- ...obj,
311
- ...(obj.OidcConfig && { OidcConfig: OidcConfigFilterSensitiveLog(obj.OidcConfig) }),
312
- });
@@ -1,4 +1,23 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ export const CrossAccountFilterOption = {
3
+ CROSS_ACCOUNT: "CrossAccount",
4
+ SAME_ACCOUNT: "SameAccount",
5
+ };
6
+ export const Statistic = {
7
+ AVERAGE: "Average",
8
+ MAXIMUM: "Maximum",
9
+ MINIMUM: "Minimum",
10
+ SAMPLE_COUNT: "SampleCount",
11
+ SUM: "Sum",
12
+ };
13
+ export const RuleEvaluationStatus = {
14
+ ERROR: "Error",
15
+ IN_PROGRESS: "InProgress",
16
+ ISSUES_FOUND: "IssuesFound",
17
+ NO_ISSUES_FOUND: "NoIssuesFound",
18
+ STOPPED: "Stopped",
19
+ STOPPING: "Stopping",
20
+ };
2
21
  export const RetentionType = {
3
22
  Delete: "Delete",
4
23
  Retain: "Retain",
@@ -135,6 +154,13 @@ export const ImageVersionStatus = {
135
154
  DELETE_FAILED: "DELETE_FAILED",
136
155
  DELETING: "DELETING",
137
156
  };
157
+ export const InferenceComponentStatus = {
158
+ CREATING: "Creating",
159
+ DELETING: "Deleting",
160
+ FAILED: "Failed",
161
+ IN_SERVICE: "InService",
162
+ UPDATING: "Updating",
163
+ };
138
164
  export const ModelVariantStatus = {
139
165
  CREATING: "Creating",
140
166
  DELETED: "Deleted",
@@ -301,44 +327,14 @@ export const UserProfileStatus = {
301
327
  Update_Failed: "Update_Failed",
302
328
  Updating: "Updating",
303
329
  };
304
- export const WorkforceStatus = {
305
- ACTIVE: "Active",
306
- DELETING: "Deleting",
307
- FAILED: "Failed",
308
- INITIALIZING: "Initializing",
309
- UPDATING: "Updating",
310
- };
311
- export const DeviceDeploymentStatus = {
312
- Deployed: "DEPLOYED",
313
- Failed: "FAILED",
314
- InProgress: "INPROGRESS",
315
- ReadyToDeploy: "READYTODEPLOY",
316
- Stopped: "STOPPED",
317
- Stopping: "STOPPING",
318
- };
319
- export const Direction = {
320
- ASCENDANTS: "Ascendants",
321
- BOTH: "Both",
322
- DESCENDANTS: "Descendants",
323
- };
324
- export var MetricSpecification;
325
- (function (MetricSpecification) {
326
- MetricSpecification.visit = (value, visitor) => {
327
- if (value.Predefined !== undefined)
328
- return visitor.Predefined(value.Predefined);
329
- if (value.Customized !== undefined)
330
- return visitor.Customized(value.Customized);
331
- return visitor._(value.$unknown[0], value.$unknown[1]);
332
- };
333
- })(MetricSpecification || (MetricSpecification = {}));
334
- export var ScalingPolicy;
335
- (function (ScalingPolicy) {
336
- ScalingPolicy.visit = (value, visitor) => {
337
- if (value.TargetTracking !== undefined)
338
- return visitor.TargetTracking(value.TargetTracking);
339
- return visitor._(value.$unknown[0], value.$unknown[1]);
340
- };
341
- })(ScalingPolicy || (ScalingPolicy = {}));
330
+ export const OidcConfigFilterSensitiveLog = (obj) => ({
331
+ ...obj,
332
+ ...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
333
+ });
334
+ export const CreateWorkforceRequestFilterSensitiveLog = (obj) => ({
335
+ ...obj,
336
+ ...(obj.OidcConfig && { OidcConfig: OidcConfigFilterSensitiveLog(obj.OidcConfig) }),
337
+ });
342
338
  export const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
343
339
  ...obj,
344
340
  ...(obj.Content && { Content: SENSITIVE_STRING }),
@@ -1,3 +1,41 @@
1
+ export const WorkforceStatus = {
2
+ ACTIVE: "Active",
3
+ DELETING: "Deleting",
4
+ FAILED: "Failed",
5
+ INITIALIZING: "Initializing",
6
+ UPDATING: "Updating",
7
+ };
8
+ export const DeviceDeploymentStatus = {
9
+ Deployed: "DEPLOYED",
10
+ Failed: "FAILED",
11
+ InProgress: "INPROGRESS",
12
+ ReadyToDeploy: "READYTODEPLOY",
13
+ Stopped: "STOPPED",
14
+ Stopping: "STOPPING",
15
+ };
16
+ export const Direction = {
17
+ ASCENDANTS: "Ascendants",
18
+ BOTH: "Both",
19
+ DESCENDANTS: "Descendants",
20
+ };
21
+ export var MetricSpecification;
22
+ (function (MetricSpecification) {
23
+ MetricSpecification.visit = (value, visitor) => {
24
+ if (value.Predefined !== undefined)
25
+ return visitor.Predefined(value.Predefined);
26
+ if (value.Customized !== undefined)
27
+ return visitor.Customized(value.Customized);
28
+ return visitor._(value.$unknown[0], value.$unknown[1]);
29
+ };
30
+ })(MetricSpecification || (MetricSpecification = {}));
31
+ export var ScalingPolicy;
32
+ (function (ScalingPolicy) {
33
+ ScalingPolicy.visit = (value, visitor) => {
34
+ if (value.TargetTracking !== undefined)
35
+ return visitor.TargetTracking(value.TargetTracking);
36
+ return visitor._(value.$unknown[0], value.$unknown[1]);
37
+ };
38
+ })(ScalingPolicy || (ScalingPolicy = {}));
1
39
  export const EndpointConfigSortKey = {
2
40
  CreationTime: "CreationTime",
3
41
  Name: "Name",
@@ -84,6 +122,11 @@ export const ImageVersionSortOrder = {
84
122
  ASCENDING: "ASCENDING",
85
123
  DESCENDING: "DESCENDING",
86
124
  };
125
+ export const InferenceComponentSortKey = {
126
+ CreationTime: "CreationTime",
127
+ Name: "Name",
128
+ Status: "Status",
129
+ };
87
130
  export const InferenceExperimentStopDesiredState = {
88
131
  CANCELLED: "Cancelled",
89
132
  COMPLETED: "Completed",
@@ -279,45 +322,3 @@ export const ProjectSortOrder = {
279
322
  ASCENDING: "Ascending",
280
323
  DESCENDING: "Descending",
281
324
  };
282
- export const ResourceCatalogSortBy = {
283
- CREATION_TIME: "CreationTime",
284
- };
285
- export const ResourceCatalogSortOrder = {
286
- ASCENDING: "Ascending",
287
- DESCENDING: "Descending",
288
- };
289
- export const SpaceSortKey = {
290
- CreationTime: "CreationTime",
291
- LastModifiedTime: "LastModifiedTime",
292
- };
293
- export const StudioLifecycleConfigSortKey = {
294
- CreationTime: "CreationTime",
295
- LastModifiedTime: "LastModifiedTime",
296
- Name: "Name",
297
- };
298
- export const TrainingJobSortByOptions = {
299
- CreationTime: "CreationTime",
300
- FinalObjectiveMetricValue: "FinalObjectiveMetricValue",
301
- Name: "Name",
302
- Status: "Status",
303
- };
304
- export const SortTrialComponentsBy = {
305
- CREATION_TIME: "CreationTime",
306
- NAME: "Name",
307
- };
308
- export const SortTrialsBy = {
309
- CREATION_TIME: "CreationTime",
310
- NAME: "Name",
311
- };
312
- export const UserProfileSortKey = {
313
- CreationTime: "CreationTime",
314
- LastModifiedTime: "LastModifiedTime",
315
- };
316
- export const ListWorkforcesSortByOptions = {
317
- CreateDate: "CreateDate",
318
- Name: "Name",
319
- };
320
- export const ListWorkteamsSortByOptions = {
321
- CreateDate: "CreateDate",
322
- Name: "Name",
323
- };