@aws-sdk/client-sagemaker 3.917.0 → 3.919.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 (40) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +71 -0
  3. package/dist-es/SageMaker.js +4 -0
  4. package/dist-es/commands/DeleteProcessingJobCommand.js +22 -0
  5. package/dist-es/commands/DeleteTrainingJobCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_3.js +1 -0
  8. package/dist-es/protocols/Aws_json1_1.js +32 -0
  9. package/dist-types/SageMaker.d.ts +14 -0
  10. package/dist-types/SageMakerClient.d.ts +4 -2
  11. package/dist-types/commands/DeleteProcessingJobCommand.d.ts +78 -0
  12. package/dist-types/commands/DeleteTrainingJobCommand.d.ts +78 -0
  13. package/dist-types/commands/DescribeClusterEventCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +2 -2
  15. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +1 -1
  16. package/dist-types/commands/GetScalingConfigurationRecommendationCommand.d.ts +1 -2
  17. package/dist-types/commands/ListTrainingJobsCommand.d.ts +2 -2
  18. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +2 -2
  19. package/dist-types/commands/ListTrialsCommand.d.ts +2 -1
  20. package/dist-types/commands/SearchCommand.d.ts +4 -4
  21. package/dist-types/commands/index.d.ts +2 -0
  22. package/dist-types/models/models_2.d.ts +21 -26
  23. package/dist-types/models/models_3.d.ts +27 -47
  24. package/dist-types/models/models_4.d.ts +47 -52
  25. package/dist-types/models/models_5.d.ts +51 -0
  26. package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
  27. package/dist-types/ts3.4/SageMaker.d.ts +34 -0
  28. package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
  29. package/dist-types/ts3.4/commands/DeleteProcessingJobCommand.d.ts +46 -0
  30. package/dist-types/ts3.4/commands/DeleteTrainingJobCommand.d.ts +46 -0
  31. package/dist-types/ts3.4/commands/DescribeClusterEventCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/GetScalingConfigurationRecommendationCommand.d.ts +4 -2
  33. package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +2 -1
  34. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  35. package/dist-types/ts3.4/models/models_2.d.ts +6 -8
  36. package/dist-types/ts3.4/models/models_3.d.ts +9 -11
  37. package/dist-types/ts3.4/models/models_4.d.ts +11 -14
  38. package/dist-types/ts3.4/models/models_5.d.ts +12 -0
  39. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
  40. package/package.json +3 -3
@@ -0,0 +1,78 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteTrainingJobRequest } from "../models/models_2";
4
+ import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteTrainingJobCommand}.
14
+ */
15
+ export interface DeleteTrainingJobCommandInput extends DeleteTrainingJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteTrainingJobCommand}.
21
+ */
22
+ export interface DeleteTrainingJobCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const DeleteTrainingJobCommand_base: {
25
+ new (input: DeleteTrainingJobCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTrainingJobCommandInput, DeleteTrainingJobCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteTrainingJobCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTrainingJobCommandInput, DeleteTrainingJobCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a training job. After SageMaker deletes a training job, all of the metadata for the training job is lost. You can delete only training jobs that are in a terminal state (<code>Stopped</code>, <code>Failed</code>, or <code>Completed</code>) and don't retain an <code>Available</code> <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-warm-pools.html">managed warm pool</a>. You cannot delete a job that is in the <code>InProgress</code> or <code>Stopping</code> state. After deleting the job, you can reuse its name to create another training job.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SageMakerClient, DeleteTrainingJobCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
35
+ * // const { SageMakerClient, DeleteTrainingJobCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
36
+ * // import type { SageMakerClientConfig } from "@aws-sdk/client-sagemaker";
37
+ * const config = {}; // type is SageMakerClientConfig
38
+ * const client = new SageMakerClient(config);
39
+ * const input = { // DeleteTrainingJobRequest
40
+ * TrainingJobName: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new DeleteTrainingJobCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param DeleteTrainingJobCommandInput - {@link DeleteTrainingJobCommandInput}
49
+ * @returns {@link DeleteTrainingJobCommandOutput}
50
+ * @see {@link DeleteTrainingJobCommandInput} for command's `input` shape.
51
+ * @see {@link DeleteTrainingJobCommandOutput} for command's `response` shape.
52
+ * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
53
+ *
54
+ * @throws {@link ResourceInUse} (client fault)
55
+ * <p>Resource being accessed is in use.</p>
56
+ *
57
+ * @throws {@link ResourceNotFound} (client fault)
58
+ * <p>Resource being access is not found.</p>
59
+ *
60
+ * @throws {@link SageMakerServiceException}
61
+ * <p>Base exception class for all service exceptions from SageMaker service.</p>
62
+ *
63
+ *
64
+ * @public
65
+ */
66
+ export declare class DeleteTrainingJobCommand extends DeleteTrainingJobCommand_base {
67
+ /** @internal type navigation helper, not in runtime. */
68
+ protected static __types: {
69
+ api: {
70
+ input: DeleteTrainingJobRequest;
71
+ output: {};
72
+ };
73
+ sdk: {
74
+ input: DeleteTrainingJobCommandInput;
75
+ output: DeleteTrainingJobCommandOutput;
76
+ };
77
+ };
78
+ }
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeClusterEventRequest, DescribeClusterEventResponse } from "../models/models_2";
3
+ import { DescribeClusterEventRequest, DescribeClusterEventResponse } from "../models/models_3";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -451,7 +451,7 @@ declare const DescribeHyperParameterTuningJobCommand_base: {
451
451
  * // CreationTime: new Date("TIMESTAMP"), // required
452
452
  * // TrainingStartTime: new Date("TIMESTAMP"),
453
453
  * // TrainingEndTime: new Date("TIMESTAMP"),
454
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped", // required
454
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting", // required
455
455
  * // TunedHyperParameters: { // required
456
456
  * // "<keys>": "STRING_VALUE",
457
457
  * // },
@@ -471,7 +471,7 @@ declare const DescribeHyperParameterTuningJobCommand_base: {
471
471
  * // CreationTime: new Date("TIMESTAMP"), // required
472
472
  * // TrainingStartTime: new Date("TIMESTAMP"),
473
473
  * // TrainingEndTime: new Date("TIMESTAMP"),
474
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped", // required
474
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting", // required
475
475
  * // TunedHyperParameters: { // required
476
476
  * // "<keys>": "STRING_VALUE",
477
477
  * // },
@@ -50,7 +50,7 @@ declare const DescribeTrainingJobCommand_base: {
50
50
  * // ModelArtifacts: { // ModelArtifacts
51
51
  * // S3ModelArtifacts: "STRING_VALUE", // required
52
52
  * // },
53
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped", // required
53
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting", // required
54
54
  * // SecondaryStatus: "Starting" || "LaunchingMLInstances" || "PreparingTrainingStack" || "Downloading" || "DownloadingTrainingImage" || "Training" || "Uploading" || "Stopping" || "Stopped" || "MaxRuntimeExceeded" || "Completed" || "Failed" || "Interrupted" || "MaxWaitTimeExceeded" || "Updating" || "Restarting" || "Pending", // required
55
55
  * // FailureReason: "STRING_VALUE",
56
56
  * // HyperParameters: { // HyperParameters
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetScalingConfigurationRecommendationRequest } from "../models/models_3";
4
- import { GetScalingConfigurationRecommendationResponse } from "../models/models_4";
3
+ import { GetScalingConfigurationRecommendationRequest, GetScalingConfigurationRecommendationResponse } from "../models/models_4";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -44,7 +44,7 @@ declare const ListTrainingJobsCommand_base: {
44
44
  * LastModifiedTimeAfter: new Date("TIMESTAMP"),
45
45
  * LastModifiedTimeBefore: new Date("TIMESTAMP"),
46
46
  * NameContains: "STRING_VALUE",
47
- * StatusEquals: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped",
47
+ * StatusEquals: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting",
48
48
  * SortBy: "Name" || "CreationTime" || "Status",
49
49
  * SortOrder: "Ascending" || "Descending",
50
50
  * WarmPoolStatusEquals: "Available" || "Terminated" || "Reused" || "InUse",
@@ -60,7 +60,7 @@ declare const ListTrainingJobsCommand_base: {
60
60
  * // CreationTime: new Date("TIMESTAMP"), // required
61
61
  * // TrainingEndTime: new Date("TIMESTAMP"),
62
62
  * // LastModifiedTime: new Date("TIMESTAMP"),
63
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped", // required
63
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting", // required
64
64
  * // SecondaryStatus: "Starting" || "LaunchingMLInstances" || "PreparingTrainingStack" || "Downloading" || "DownloadingTrainingImage" || "Training" || "Uploading" || "Stopping" || "Stopped" || "MaxRuntimeExceeded" || "Completed" || "Failed" || "Interrupted" || "MaxWaitTimeExceeded" || "Updating" || "Restarting" || "Pending",
65
65
  * // WarmPoolStatus: { // WarmPoolStatus
66
66
  * // Status: "Available" || "Terminated" || "Reused" || "InUse", // required
@@ -40,7 +40,7 @@ declare const ListTrainingJobsForHyperParameterTuningJobCommand_base: {
40
40
  * HyperParameterTuningJobName: "STRING_VALUE", // required
41
41
  * NextToken: "STRING_VALUE",
42
42
  * MaxResults: Number("int"),
43
- * StatusEquals: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped",
43
+ * StatusEquals: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting",
44
44
  * SortBy: "Name" || "CreationTime" || "Status" || "FinalObjectiveMetricValue",
45
45
  * SortOrder: "Ascending" || "Descending",
46
46
  * };
@@ -56,7 +56,7 @@ declare const ListTrainingJobsForHyperParameterTuningJobCommand_base: {
56
56
  * // CreationTime: new Date("TIMESTAMP"), // required
57
57
  * // TrainingStartTime: new Date("TIMESTAMP"),
58
58
  * // TrainingEndTime: new Date("TIMESTAMP"),
59
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped", // required
59
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting", // required
60
60
  * // TunedHyperParameters: { // HyperParameters // required
61
61
  * // "<keys>": "STRING_VALUE",
62
62
  * // },
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListTrialsRequest, ListTrialsResponse } from "../models/models_4";
3
+ import { ListTrialsRequest } from "../models/models_4";
4
+ import { ListTrialsResponse } from "../models/models_5";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @public
@@ -107,7 +107,7 @@ declare const SearchCommand_base: {
107
107
  * // ModelArtifacts: { // ModelArtifacts
108
108
  * // S3ModelArtifacts: "STRING_VALUE", // required
109
109
  * // },
110
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped",
110
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting",
111
111
  * // SecondaryStatus: "Starting" || "LaunchingMLInstances" || "PreparingTrainingStack" || "Downloading" || "DownloadingTrainingImage" || "Training" || "Uploading" || "Stopping" || "Stopped" || "MaxRuntimeExceeded" || "Completed" || "Failed" || "Interrupted" || "MaxWaitTimeExceeded" || "Updating" || "Restarting" || "Pending",
112
112
  * // FailureReason: "STRING_VALUE",
113
113
  * // HyperParameters: { // HyperParameters
@@ -482,7 +482,7 @@ declare const SearchCommand_base: {
482
482
  * // ModelArtifacts: {
483
483
  * // S3ModelArtifacts: "STRING_VALUE", // required
484
484
  * // },
485
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped",
485
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting",
486
486
  * // SecondaryStatus: "Starting" || "LaunchingMLInstances" || "PreparingTrainingStack" || "Downloading" || "DownloadingTrainingImage" || "Training" || "Uploading" || "Stopping" || "Stopped" || "MaxRuntimeExceeded" || "Completed" || "Failed" || "Interrupted" || "MaxWaitTimeExceeded" || "Updating" || "Restarting" || "Pending",
487
487
  * // FailureReason: "STRING_VALUE",
488
488
  * // HyperParameters: {
@@ -1856,7 +1856,7 @@ declare const SearchCommand_base: {
1856
1856
  * // CreationTime: new Date("TIMESTAMP"), // required
1857
1857
  * // TrainingStartTime: new Date("TIMESTAMP"),
1858
1858
  * // TrainingEndTime: new Date("TIMESTAMP"),
1859
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped", // required
1859
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting", // required
1860
1860
  * // TunedHyperParameters: "<HyperParameters>", // required
1861
1861
  * // FailureReason: "STRING_VALUE",
1862
1862
  * // FinalHyperParameterTuningJobObjectiveMetric: { // FinalHyperParameterTuningJobObjectiveMetric
@@ -1874,7 +1874,7 @@ declare const SearchCommand_base: {
1874
1874
  * // CreationTime: new Date("TIMESTAMP"), // required
1875
1875
  * // TrainingStartTime: new Date("TIMESTAMP"),
1876
1876
  * // TrainingEndTime: new Date("TIMESTAMP"),
1877
- * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped", // required
1877
+ * // TrainingJobStatus: "InProgress" || "Completed" || "Failed" || "Stopping" || "Stopped" || "Deleting", // required
1878
1878
  * // TunedHyperParameters: "<HyperParameters>", // required
1879
1879
  * // FailureReason: "STRING_VALUE",
1880
1880
  * // FinalHyperParameterTuningJobObjectiveMetric: {
@@ -117,10 +117,12 @@ export * from "./DeleteNotebookInstanceLifecycleConfigCommand";
117
117
  export * from "./DeleteOptimizationJobCommand";
118
118
  export * from "./DeletePartnerAppCommand";
119
119
  export * from "./DeletePipelineCommand";
120
+ export * from "./DeleteProcessingJobCommand";
120
121
  export * from "./DeleteProjectCommand";
121
122
  export * from "./DeleteSpaceCommand";
122
123
  export * from "./DeleteStudioLifecycleConfigCommand";
123
124
  export * from "./DeleteTagsCommand";
125
+ export * from "./DeleteTrainingJobCommand";
124
126
  export * from "./DeleteTrialCommand";
125
127
  export * from "./DeleteTrialComponentCommand";
126
128
  export * from "./DeleteUserProfileCommand";
@@ -1,4 +1,4 @@
1
- import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppSpecification, AppStatus, AppType, ArtifactSource, AthenaDatasetDefinition, AutoMLCandidate, AutoMLChannel, AutoMLComputeConfig, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, Bias, CaptureStatus, CfnCreateTemplateProvider, Channel, CheckpointConfig, ClusterAutoScalingConfigOutput, ClusterEventDetail, ClusterInstanceGroupDetails, ClusterNodeProvisioningMode, ClusterNodeRecovery, ClusterOrchestrator, CodeEditorAppImageConfig, FeatureStatus, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
1
+ import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppSpecification, AppStatus, AppType, ArtifactSource, AthenaDatasetDefinition, AutoMLCandidate, AutoMLChannel, AutoMLComputeConfig, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, Bias, CaptureStatus, CfnCreateTemplateProvider, Channel, CheckpointConfig, ClusterAutoScalingConfigOutput, ClusterInstanceGroupDetails, ClusterNodeProvisioningMode, ClusterNodeRecovery, ClusterOrchestrator, CodeEditorAppImageConfig, FeatureStatus, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
2
  import { _InstanceType, ClusterRestrictedInstanceGroupDetails, ClusterStatus, ClusterTieredStorageConfig, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, DeviceSelectionConfig, EdgeDeploymentConfig, EndpointInput, HubContentType, IPAddressType, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, ProcessingInstanceType, ProcessingS3UploadMode, RetryStrategy, TrainingSpecification, UserSettings } from "./models_1";
3
3
  /**
4
4
  * @public
@@ -4931,6 +4931,16 @@ export interface DeletePipelineResponse {
4931
4931
  */
4932
4932
  PipelineArn?: string | undefined;
4933
4933
  }
4934
+ /**
4935
+ * @public
4936
+ */
4937
+ export interface DeleteProcessingJobRequest {
4938
+ /**
4939
+ * <p>The name of the processing job to delete.</p>
4940
+ * @public
4941
+ */
4942
+ ProcessingJobName: string | undefined;
4943
+ }
4934
4944
  /**
4935
4945
  * @public
4936
4946
  */
@@ -4986,6 +4996,16 @@ export interface DeleteTagsInput {
4986
4996
  */
4987
4997
  export interface DeleteTagsOutput {
4988
4998
  }
4999
+ /**
5000
+ * @public
5001
+ */
5002
+ export interface DeleteTrainingJobRequest {
5003
+ /**
5004
+ * <p>The name of the training job to delete.</p>
5005
+ * @public
5006
+ */
5007
+ TrainingJobName: string | undefined;
5008
+ }
4989
5009
  /**
4990
5010
  * @public
4991
5011
  */
@@ -6001,31 +6021,6 @@ export interface DescribeClusterResponse {
6001
6021
  */
6002
6022
  AutoScaling?: ClusterAutoScalingConfigOutput | undefined;
6003
6023
  }
6004
- /**
6005
- * @public
6006
- */
6007
- export interface DescribeClusterEventRequest {
6008
- /**
6009
- * <p>The unique identifier (UUID) of the event to describe. This ID can be obtained from the <code>ListClusterEvents</code> operation.</p>
6010
- * @public
6011
- */
6012
- EventId: string | undefined;
6013
- /**
6014
- * <p>The name or Amazon Resource Name (ARN) of the HyperPod cluster associated with the event.</p>
6015
- * @public
6016
- */
6017
- ClusterName: string | undefined;
6018
- }
6019
- /**
6020
- * @public
6021
- */
6022
- export interface DescribeClusterEventResponse {
6023
- /**
6024
- * <p>Detailed information about the requested cluster event, including event metadata for various resource types such as <code>Cluster</code>, <code>InstanceGroup</code>, <code>Instance</code>, and their associated attributes.</p>
6025
- * @public
6026
- */
6027
- EventDetails?: ClusterEventDetail | undefined;
6028
- }
6029
6024
  /**
6030
6025
  * @internal
6031
6026
  */
@@ -1,6 +1,31 @@
1
- import { ActivationState, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSpecification, AmazonQSettings, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoRollbackConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CapacityReservationPreference, CfnTemplateProviderDetail, Channel, CheckpointConfig, ClusterNodeDetails, InferenceSpecification, ModelApprovalStatus, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VolumeAttachmentStatus, VpcConfig } from "./models_0";
1
+ import { ActivationState, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSpecification, AmazonQSettings, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoRollbackConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CapacityReservationPreference, CfnTemplateProviderDetail, Channel, CheckpointConfig, ClusterEventDetail, ClusterNodeDetails, InferenceSpecification, ModelApprovalStatus, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VolumeAttachmentStatus, VpcConfig } from "./models_0";
2
2
  import { _InstanceType, CognitoConfig, CompilationJobStatus, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DockerSettings, DomainSettings, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExecutionRoleIdentityConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, GitConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, IPAddressType, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MetadataProperties, ModelInfrastructureConfig, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, SchedulerConfig, SchedulerResourceStatus, ShadowModeConfig, TagPropagation, ThroughputMode, TrustedIdentityPropagationSettings, UnifiedStudioSettings, UserSettings, VendorGuidance } from "./models_1";
3
3
  import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeployedImage, DeploymentRecommendation, DeploymentStageStatusSummary, DerivedInformation, DirectInternetAccess, DriftCheckBaselines, ExperimentConfig, InferenceExecutionConfig, InfraCheckConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OptimizationConfig, OptimizationJobDeploymentInstanceType, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, OwnershipSettings, ParallelismConfiguration, PartnerAppAuthType, PartnerAppConfig, PartnerAppMaintenanceConfig, PartnerAppType, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, RemoteDebugConfig, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrackingServerSize, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType } from "./models_2";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface DescribeClusterEventRequest {
8
+ /**
9
+ * <p>The unique identifier (UUID) of the event to describe. This ID can be obtained from the <code>ListClusterEvents</code> operation.</p>
10
+ * @public
11
+ */
12
+ EventId: string | undefined;
13
+ /**
14
+ * <p>The name or Amazon Resource Name (ARN) of the HyperPod cluster associated with the event.</p>
15
+ * @public
16
+ */
17
+ ClusterName: string | undefined;
18
+ }
19
+ /**
20
+ * @public
21
+ */
22
+ export interface DescribeClusterEventResponse {
23
+ /**
24
+ * <p>Detailed information about the requested cluster event, including event metadata for various resource types such as <code>Cluster</code>, <code>InstanceGroup</code>, <code>Instance</code>, and their associated attributes.</p>
25
+ * @public
26
+ */
27
+ EventDetails?: ClusterEventDetail | undefined;
28
+ }
4
29
  /**
5
30
  * @public
6
31
  */
@@ -2288,6 +2313,7 @@ export interface FinalHyperParameterTuningJobObjectiveMetric {
2288
2313
  */
2289
2314
  export declare const TrainingJobStatus: {
2290
2315
  readonly COMPLETED: "Completed";
2316
+ readonly DELETING: "Deleting";
2291
2317
  readonly FAILED: "Failed";
2292
2318
  readonly IN_PROGRESS: "InProgress";
2293
2319
  readonly STOPPED: "Stopped";
@@ -8897,52 +8923,6 @@ export interface ScalingPolicyObjective {
8897
8923
  */
8898
8924
  MaxInvocationsPerMinute?: number | undefined;
8899
8925
  }
8900
- /**
8901
- * @public
8902
- */
8903
- export interface GetScalingConfigurationRecommendationRequest {
8904
- /**
8905
- * <p>The name of a previously completed Inference Recommender job.</p>
8906
- * @public
8907
- */
8908
- InferenceRecommendationsJobName: string | undefined;
8909
- /**
8910
- * <p>The recommendation ID of a previously completed inference recommendation. This ID should come from one of the recommendations returned by the job specified in the <code>InferenceRecommendationsJobName</code> field.</p> <p>Specify either this field or the <code>EndpointName</code> field.</p>
8911
- * @public
8912
- */
8913
- RecommendationId?: string | undefined;
8914
- /**
8915
- * <p>The name of an endpoint benchmarked during a previously completed inference recommendation job. This name should come from one of the recommendations returned by the job specified in the <code>InferenceRecommendationsJobName</code> field.</p> <p>Specify either this field or the <code>RecommendationId</code> field.</p>
8916
- * @public
8917
- */
8918
- EndpointName?: string | undefined;
8919
- /**
8920
- * <p>The percentage of how much utilization you want an instance to use before autoscaling. The default value is 50%.</p>
8921
- * @public
8922
- */
8923
- TargetCpuUtilizationPerCore?: number | undefined;
8924
- /**
8925
- * <p>An object where you specify the anticipated traffic pattern for an endpoint.</p>
8926
- * @public
8927
- */
8928
- ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
8929
- }
8930
- /**
8931
- * <p>The metric for a scaling policy.</p>
8932
- * @public
8933
- */
8934
- export interface ScalingPolicyMetric {
8935
- /**
8936
- * <p>The number of invocations sent to a model, normalized by <code>InstanceCount</code> in each ProductionVariant. <code>1/numberOfInstances</code> is sent as the value on each request, where <code>numberOfInstances</code> is the number of active instances for the ProductionVariant behind the endpoint at the time of the request.</p>
8937
- * @public
8938
- */
8939
- InvocationsPerInstance?: number | undefined;
8940
- /**
8941
- * <p>The interval of time taken by a model to respond as viewed from SageMaker. This interval includes the local communication times taken to send the request and to fetch the response from the container of a model and the time taken to complete the inference in the container.</p>
8942
- * @public
8943
- */
8944
- ModelLatency?: number | undefined;
8945
- }
8946
8926
  /**
8947
8927
  * @internal
8948
8928
  */
@@ -1,7 +1,53 @@
1
1
  import { ActionSummary, AlgorithmSortBy, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppType, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, ClarifyCheckStepMetadata, ClusterEventResourceType, ClusterEventSummary, ClusterNodeSummary, FeatureStatus, ModelApprovalStatus, ModelPackageStatus, OutputParameter, Tag, UserContext } from "./models_0";
2
2
  import { _InstanceType, ClusterSchedulerConfigSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ComputeQuotaSummary, ConditionStepMetadata, ContextSummary, HubContentType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, RecommendationJobType, ResourceLimits, SchedulerResourceStatus } from "./models_1";
3
3
  import { CrossAccountFilterOption, ModelCardStatus, ModelLifeCycle, MonitoringType, OptimizationJobDeploymentInstanceType, PartnerAppType, SharingType, SpaceStorageSettings, StudioLifecycleConfigAppType, TrialComponentStatus } from "./models_2";
4
- import { DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigStepMetadata, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointStepMetadata, EndpointSummary, EventSortBy, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FlowDefinitionSummary, HubContentStatus, HubContentSupportStatus, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, OptimizationJobStatus, PartnerAppStatus, PipelineExecutionStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ReservedCapacitySummary, SageMakerResourceName, ScalingPolicyMetric, ScalingPolicyObjective, ScheduleStatus, SecondaryStatus, SpaceStatus, SubscribedWorkteam, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrainingPlanStatus, TransformJobStatus, TrialComponentSource, TrialSource, WarmPoolResourceStatus, WarmPoolStatus } from "./models_3";
4
+ import { DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigStepMetadata, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointStepMetadata, EndpointSummary, EventSortBy, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FlowDefinitionSummary, HubContentStatus, HubContentSupportStatus, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, OptimizationJobStatus, PartnerAppStatus, PipelineExecutionStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ReservedCapacitySummary, SageMakerResourceName, ScalingPolicyObjective, ScheduleStatus, SecondaryStatus, SpaceStatus, SubscribedWorkteam, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrainingPlanStatus, TransformJobStatus, TrialComponentSource, WarmPoolResourceStatus, WarmPoolStatus } from "./models_3";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface GetScalingConfigurationRecommendationRequest {
9
+ /**
10
+ * <p>The name of a previously completed Inference Recommender job.</p>
11
+ * @public
12
+ */
13
+ InferenceRecommendationsJobName: string | undefined;
14
+ /**
15
+ * <p>The recommendation ID of a previously completed inference recommendation. This ID should come from one of the recommendations returned by the job specified in the <code>InferenceRecommendationsJobName</code> field.</p> <p>Specify either this field or the <code>EndpointName</code> field.</p>
16
+ * @public
17
+ */
18
+ RecommendationId?: string | undefined;
19
+ /**
20
+ * <p>The name of an endpoint benchmarked during a previously completed inference recommendation job. This name should come from one of the recommendations returned by the job specified in the <code>InferenceRecommendationsJobName</code> field.</p> <p>Specify either this field or the <code>RecommendationId</code> field.</p>
21
+ * @public
22
+ */
23
+ EndpointName?: string | undefined;
24
+ /**
25
+ * <p>The percentage of how much utilization you want an instance to use before autoscaling. The default value is 50%.</p>
26
+ * @public
27
+ */
28
+ TargetCpuUtilizationPerCore?: number | undefined;
29
+ /**
30
+ * <p>An object where you specify the anticipated traffic pattern for an endpoint.</p>
31
+ * @public
32
+ */
33
+ ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
34
+ }
35
+ /**
36
+ * <p>The metric for a scaling policy.</p>
37
+ * @public
38
+ */
39
+ export interface ScalingPolicyMetric {
40
+ /**
41
+ * <p>The number of invocations sent to a model, normalized by <code>InstanceCount</code> in each ProductionVariant. <code>1/numberOfInstances</code> is sent as the value on each request, where <code>numberOfInstances</code> is the number of active instances for the ProductionVariant behind the endpoint at the time of the request.</p>
42
+ * @public
43
+ */
44
+ InvocationsPerInstance?: number | undefined;
45
+ /**
46
+ * <p>The interval of time taken by a model to respond as viewed from SageMaker. This interval includes the local communication times taken to send the request and to fetch the response from the container of a model and the time taken to complete the inference in the container.</p>
47
+ * @public
48
+ */
49
+ ModelLatency?: number | undefined;
50
+ }
5
51
  /**
6
52
  * @public
7
53
  */
@@ -8165,54 +8211,3 @@ export interface ListTrialsRequest {
8165
8211
  */
8166
8212
  NextToken?: string | undefined;
8167
8213
  }
8168
- /**
8169
- * <p>A summary of the properties of a trial. To get the complete set of properties, call the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeTrial.html">DescribeTrial</a> API and provide the <code>TrialName</code>.</p>
8170
- * @public
8171
- */
8172
- export interface TrialSummary {
8173
- /**
8174
- * <p>The Amazon Resource Name (ARN) of the trial.</p>
8175
- * @public
8176
- */
8177
- TrialArn?: string | undefined;
8178
- /**
8179
- * <p>The name of the trial.</p>
8180
- * @public
8181
- */
8182
- TrialName?: string | undefined;
8183
- /**
8184
- * <p>The name of the trial as displayed. If <code>DisplayName</code> isn't specified, <code>TrialName</code> is displayed.</p>
8185
- * @public
8186
- */
8187
- DisplayName?: string | undefined;
8188
- /**
8189
- * <p>The source of the trial.</p>
8190
- * @public
8191
- */
8192
- TrialSource?: TrialSource | undefined;
8193
- /**
8194
- * <p>When the trial was created.</p>
8195
- * @public
8196
- */
8197
- CreationTime?: Date | undefined;
8198
- /**
8199
- * <p>When the trial was last modified.</p>
8200
- * @public
8201
- */
8202
- LastModifiedTime?: Date | undefined;
8203
- }
8204
- /**
8205
- * @public
8206
- */
8207
- export interface ListTrialsResponse {
8208
- /**
8209
- * <p>A list of the summaries of your trials.</p>
8210
- * @public
8211
- */
8212
- TrialSummaries?: TrialSummary[] | undefined;
8213
- /**
8214
- * <p>A token for getting the next set of trials, if there are any.</p>
8215
- * @public
8216
- */
8217
- NextToken?: string | undefined;
8218
- }
@@ -3,6 +3,57 @@ import { _InstanceType, ClusterRestrictedInstanceGroupSpecification, ClusterTier
3
3
  import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, DriftCheckBaselines, ExperimentConfig, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PartnerAppConfig, PartnerAppMaintenanceConfig, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, TensorBoardOutputConfig, TrackingServerSize, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType, WorkforceVpcConfigRequest } from "./models_2";
4
4
  import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, EndpointStatus, Experiment, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, HubContentSupportStatus, InferenceComponentDeploymentConfig, MetricData, ModelArtifacts, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ReservedCapacityInstanceType, ReservedCapacityType, SageMakerResourceName, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, TemplateProviderDetail, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_3";
5
5
  import { GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, MonitoringAlertSummary, Parameter, ResourceType, SortOrder } from "./models_4";
6
+ /**
7
+ * <p>A summary of the properties of a trial. To get the complete set of properties, call the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeTrial.html">DescribeTrial</a> API and provide the <code>TrialName</code>.</p>
8
+ * @public
9
+ */
10
+ export interface TrialSummary {
11
+ /**
12
+ * <p>The Amazon Resource Name (ARN) of the trial.</p>
13
+ * @public
14
+ */
15
+ TrialArn?: string | undefined;
16
+ /**
17
+ * <p>The name of the trial.</p>
18
+ * @public
19
+ */
20
+ TrialName?: string | undefined;
21
+ /**
22
+ * <p>The name of the trial as displayed. If <code>DisplayName</code> isn't specified, <code>TrialName</code> is displayed.</p>
23
+ * @public
24
+ */
25
+ DisplayName?: string | undefined;
26
+ /**
27
+ * <p>The source of the trial.</p>
28
+ * @public
29
+ */
30
+ TrialSource?: TrialSource | undefined;
31
+ /**
32
+ * <p>When the trial was created.</p>
33
+ * @public
34
+ */
35
+ CreationTime?: Date | undefined;
36
+ /**
37
+ * <p>When the trial was last modified.</p>
38
+ * @public
39
+ */
40
+ LastModifiedTime?: Date | undefined;
41
+ }
42
+ /**
43
+ * @public
44
+ */
45
+ export interface ListTrialsResponse {
46
+ /**
47
+ * <p>A list of the summaries of your trials.</p>
48
+ * @public
49
+ */
50
+ TrialSummaries?: TrialSummary[] | undefined;
51
+ /**
52
+ * <p>A token for getting the next set of trials, if there are any.</p>
53
+ * @public
54
+ */
55
+ NextToken?: string | undefined;
56
+ }
6
57
  /**
7
58
  * @public
8
59
  */
@@ -119,10 +119,12 @@ import { DeleteNotebookInstanceLifecycleConfigCommandInput, DeleteNotebookInstan
119
119
  import { DeleteOptimizationJobCommandInput, DeleteOptimizationJobCommandOutput } from "../commands/DeleteOptimizationJobCommand";
120
120
  import { DeletePartnerAppCommandInput, DeletePartnerAppCommandOutput } from "../commands/DeletePartnerAppCommand";
121
121
  import { DeletePipelineCommandInput, DeletePipelineCommandOutput } from "../commands/DeletePipelineCommand";
122
+ import { DeleteProcessingJobCommandInput, DeleteProcessingJobCommandOutput } from "../commands/DeleteProcessingJobCommand";
122
123
  import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
123
124
  import { DeleteSpaceCommandInput, DeleteSpaceCommandOutput } from "../commands/DeleteSpaceCommand";
124
125
  import { DeleteStudioLifecycleConfigCommandInput, DeleteStudioLifecycleConfigCommandOutput } from "../commands/DeleteStudioLifecycleConfigCommand";
125
126
  import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "../commands/DeleteTagsCommand";
127
+ import { DeleteTrainingJobCommandInput, DeleteTrainingJobCommandOutput } from "../commands/DeleteTrainingJobCommand";
126
128
  import { DeleteTrialCommandInput, DeleteTrialCommandOutput } from "../commands/DeleteTrialCommand";
127
129
  import { DeleteTrialComponentCommandInput, DeleteTrialComponentCommandOutput } from "../commands/DeleteTrialComponentCommand";
128
130
  import { DeleteUserProfileCommandInput, DeleteUserProfileCommandOutput } from "../commands/DeleteUserProfileCommand";
@@ -845,6 +847,10 @@ export declare const se_DeletePartnerAppCommand: (input: DeletePartnerAppCommand
845
847
  * serializeAws_json1_1DeletePipelineCommand
846
848
  */
847
849
  export declare const se_DeletePipelineCommand: (input: DeletePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
850
+ /**
851
+ * serializeAws_json1_1DeleteProcessingJobCommand
852
+ */
853
+ export declare const se_DeleteProcessingJobCommand: (input: DeleteProcessingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
848
854
  /**
849
855
  * serializeAws_json1_1DeleteProjectCommand
850
856
  */
@@ -861,6 +867,10 @@ export declare const se_DeleteStudioLifecycleConfigCommand: (input: DeleteStudio
861
867
  * serializeAws_json1_1DeleteTagsCommand
862
868
  */
863
869
  export declare const se_DeleteTagsCommand: (input: DeleteTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
870
+ /**
871
+ * serializeAws_json1_1DeleteTrainingJobCommand
872
+ */
873
+ export declare const se_DeleteTrainingJobCommand: (input: DeleteTrainingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
864
874
  /**
865
875
  * serializeAws_json1_1DeleteTrialCommand
866
876
  */
@@ -2321,6 +2331,10 @@ export declare const de_DeletePartnerAppCommand: (output: __HttpResponse, contex
2321
2331
  * deserializeAws_json1_1DeletePipelineCommand
2322
2332
  */
2323
2333
  export declare const de_DeletePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePipelineCommandOutput>;
2334
+ /**
2335
+ * deserializeAws_json1_1DeleteProcessingJobCommand
2336
+ */
2337
+ export declare const de_DeleteProcessingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProcessingJobCommandOutput>;
2324
2338
  /**
2325
2339
  * deserializeAws_json1_1DeleteProjectCommand
2326
2340
  */
@@ -2337,6 +2351,10 @@ export declare const de_DeleteStudioLifecycleConfigCommand: (output: __HttpRespo
2337
2351
  * deserializeAws_json1_1DeleteTagsCommand
2338
2352
  */
2339
2353
  export declare const de_DeleteTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTagsCommandOutput>;
2354
+ /**
2355
+ * deserializeAws_json1_1DeleteTrainingJobCommand
2356
+ */
2357
+ export declare const de_DeleteTrainingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrainingJobCommandOutput>;
2340
2358
  /**
2341
2359
  * deserializeAws_json1_1DeleteTrialCommand
2342
2360
  */