@aws-sdk/client-sagemaker 3.261.0 → 3.264.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 (47) hide show
  1. package/dist-cjs/commands/CreateExperimentCommand.js +3 -3
  2. package/dist-cjs/commands/ListAppImageConfigsCommand.js +2 -1
  3. package/dist-cjs/commands/ListAppsCommand.js +3 -3
  4. package/dist-cjs/commands/ListArtifactsCommand.js +1 -2
  5. package/dist-cjs/commands/UpdateEndpointCommand.js +3 -3
  6. package/dist-cjs/commands/UpdateEndpointWeightsAndCapacitiesCommand.js +3 -3
  7. package/dist-cjs/models/models_0.js +17 -18
  8. package/dist-cjs/models/models_1.js +21 -26
  9. package/dist-cjs/models/models_2.js +33 -26
  10. package/dist-cjs/models/models_3.js +26 -26
  11. package/dist-cjs/models/models_4.js +22 -1
  12. package/dist-cjs/protocols/Aws_json1_1.js +61 -0
  13. package/dist-es/commands/CreateExperimentCommand.js +1 -1
  14. package/dist-es/commands/ListAppImageConfigsCommand.js +2 -1
  15. package/dist-es/commands/ListAppsCommand.js +1 -1
  16. package/dist-es/commands/ListArtifactsCommand.js +1 -2
  17. package/dist-es/commands/UpdateEndpointCommand.js +1 -1
  18. package/dist-es/commands/UpdateEndpointWeightsAndCapacitiesCommand.js +1 -1
  19. package/dist-es/models/models_0.js +11 -12
  20. package/dist-es/models/models_1.js +12 -17
  21. package/dist-es/models/models_2.js +23 -16
  22. package/dist-es/models/models_3.js +16 -15
  23. package/dist-es/models/models_4.js +15 -0
  24. package/dist-es/protocols/Aws_json1_1.js +61 -0
  25. package/dist-types/commands/CreateExperimentCommand.d.ts +1 -1
  26. package/dist-types/commands/ListAppImageConfigsCommand.d.ts +2 -1
  27. package/dist-types/commands/ListAppsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListArtifactsCommand.d.ts +1 -2
  29. package/dist-types/commands/UpdateEndpointCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateEndpointWeightsAndCapacitiesCommand.d.ts +1 -1
  31. package/dist-types/models/models_0.d.ts +30 -41
  32. package/dist-types/models/models_1.d.ts +55 -76
  33. package/dist-types/models/models_2.d.ts +117 -110
  34. package/dist-types/models/models_3.d.ts +106 -109
  35. package/dist-types/models/models_4.d.ts +112 -3
  36. package/dist-types/ts3.4/commands/CreateExperimentCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/ListAppImageConfigsCommand.d.ts +2 -4
  38. package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +4 -2
  40. package/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/UpdateEndpointWeightsAndCapacitiesCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/models/models_0.d.ts +16 -20
  43. package/dist-types/ts3.4/models/models_1.d.ts +26 -34
  44. package/dist-types/ts3.4/models/models_2.d.ts +50 -47
  45. package/dist-types/ts3.4/models/models_3.d.ts +45 -38
  46. package/dist-types/ts3.4/models/models_4.d.ts +39 -0
  47. package/package.json +4 -4
@@ -12480,6 +12480,13 @@ const serializeAws_json1_1BatchTransformInput = (input, context) => {
12480
12480
  ...(input.StartTimeOffset != null && { StartTimeOffset: input.StartTimeOffset }),
12481
12481
  };
12482
12482
  };
12483
+ const serializeAws_json1_1BestObjectiveNotImproving = (input, context) => {
12484
+ return {
12485
+ ...(input.MaxNumberOfTrainingJobsNotImproving != null && {
12486
+ MaxNumberOfTrainingJobsNotImproving: input.MaxNumberOfTrainingJobsNotImproving,
12487
+ }),
12488
+ };
12489
+ };
12483
12490
  const serializeAws_json1_1Bias = (input, context) => {
12484
12491
  return {
12485
12492
  ...(input.PostTrainingReport != null && {
@@ -12833,6 +12840,11 @@ const serializeAws_json1_1ContinuousParameterRangeSpecification = (input, contex
12833
12840
  ...(input.MinValue != null && { MinValue: input.MinValue }),
12834
12841
  };
12835
12842
  };
12843
+ const serializeAws_json1_1ConvergenceDetected = (input, context) => {
12844
+ return {
12845
+ ...(input.CompleteOnConvergence != null && { CompleteOnConvergence: input.CompleteOnConvergence }),
12846
+ };
12847
+ };
12836
12848
  const serializeAws_json1_1CreateActionRequest = (input, context) => {
12837
12849
  return {
12838
12850
  ...(input.ActionName != null && { ActionName: input.ActionName }),
@@ -17681,6 +17693,7 @@ const serializeAws_json1_1ResourceLimits = (input, context) => {
17681
17693
  return {
17682
17694
  ...(input.MaxNumberOfTrainingJobs != null && { MaxNumberOfTrainingJobs: input.MaxNumberOfTrainingJobs }),
17683
17695
  ...(input.MaxParallelTrainingJobs != null && { MaxParallelTrainingJobs: input.MaxParallelTrainingJobs }),
17696
+ ...(input.MaxRuntimeInSeconds != null && { MaxRuntimeInSeconds: input.MaxRuntimeInSeconds }),
17684
17697
  };
17685
17698
  };
17686
17699
  const serializeAws_json1_1ResourceSpec = (input, context) => {
@@ -18343,6 +18356,12 @@ const serializeAws_json1_1TrialComponentStatus = (input, context) => {
18343
18356
  };
18344
18357
  const serializeAws_json1_1TuningJobCompletionCriteria = (input, context) => {
18345
18358
  return {
18359
+ ...(input.BestObjectiveNotImproving != null && {
18360
+ BestObjectiveNotImproving: serializeAws_json1_1BestObjectiveNotImproving(input.BestObjectiveNotImproving, context),
18361
+ }),
18362
+ ...(input.ConvergenceDetected != null && {
18363
+ ConvergenceDetected: serializeAws_json1_1ConvergenceDetected(input.ConvergenceDetected, context),
18364
+ }),
18346
18365
  ...(input.TargetObjectiveMetricValue != null && {
18347
18366
  TargetObjectiveMetricValue: __serializeFloat(input.TargetObjectiveMetricValue),
18348
18367
  }),
@@ -19537,6 +19556,11 @@ const deserializeAws_json1_1BatchTransformInput = (output, context) => {
19537
19556
  StartTimeOffset: __expectString(output.StartTimeOffset),
19538
19557
  };
19539
19558
  };
19559
+ const deserializeAws_json1_1BestObjectiveNotImproving = (output, context) => {
19560
+ return {
19561
+ MaxNumberOfTrainingJobsNotImproving: __expectInt32(output.MaxNumberOfTrainingJobsNotImproving),
19562
+ };
19563
+ };
19540
19564
  const deserializeAws_json1_1Bias = (output, context) => {
19541
19565
  return {
19542
19566
  PostTrainingReport: output.PostTrainingReport != null
@@ -20100,6 +20124,11 @@ const deserializeAws_json1_1ContinuousParameterRangeSpecification = (output, con
20100
20124
  MinValue: __expectString(output.MinValue),
20101
20125
  };
20102
20126
  };
20127
+ const deserializeAws_json1_1ConvergenceDetected = (output, context) => {
20128
+ return {
20129
+ CompleteOnConvergence: __expectString(output.CompleteOnConvergence),
20130
+ };
20131
+ };
20103
20132
  const deserializeAws_json1_1CreateActionResponse = (output, context) => {
20104
20133
  return {
20105
20134
  ActionArn: __expectString(output.ActionArn),
@@ -21251,6 +21280,9 @@ const deserializeAws_json1_1DescribeHyperParameterTuningJobResponse = (output, c
21251
21280
  BestTrainingJob: output.BestTrainingJob != null
21252
21281
  ? deserializeAws_json1_1HyperParameterTrainingJobSummary(output.BestTrainingJob, context)
21253
21282
  : undefined,
21283
+ ConsumedResources: output.ConsumedResources != null
21284
+ ? deserializeAws_json1_1HyperParameterTuningJobConsumedResources(output.ConsumedResources, context)
21285
+ : undefined,
21254
21286
  CreationTime: output.CreationTime != null
21255
21287
  ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.CreationTime)))
21256
21288
  : undefined,
@@ -21282,6 +21314,9 @@ const deserializeAws_json1_1DescribeHyperParameterTuningJobResponse = (output, c
21282
21314
  TrainingJobStatusCounters: output.TrainingJobStatusCounters != null
21283
21315
  ? deserializeAws_json1_1TrainingJobStatusCounters(output.TrainingJobStatusCounters, context)
21284
21316
  : undefined,
21317
+ TuningJobCompletionDetails: output.TuningJobCompletionDetails != null
21318
+ ? deserializeAws_json1_1HyperParameterTuningJobCompletionDetails(output.TuningJobCompletionDetails, context)
21319
+ : undefined,
21285
21320
  WarmStartConfig: output.WarmStartConfig != null
21286
21321
  ? deserializeAws_json1_1HyperParameterTuningJobWarmStartConfig(output.WarmStartConfig, context)
21287
21322
  : undefined,
@@ -23373,6 +23408,14 @@ const deserializeAws_json1_1HyperParameterTuningInstanceConfigs = (output, conte
23373
23408
  });
23374
23409
  return retVal;
23375
23410
  };
23411
+ const deserializeAws_json1_1HyperParameterTuningJobCompletionDetails = (output, context) => {
23412
+ return {
23413
+ ConvergenceDetectedTime: output.ConvergenceDetectedTime != null
23414
+ ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.ConvergenceDetectedTime)))
23415
+ : undefined,
23416
+ NumberOfTrainingJobsObjectiveNotImproving: __expectInt32(output.NumberOfTrainingJobsObjectiveNotImproving),
23417
+ };
23418
+ };
23376
23419
  const deserializeAws_json1_1HyperParameterTuningJobConfig = (output, context) => {
23377
23420
  return {
23378
23421
  HyperParameterTuningJobObjective: output.HyperParameterTuningJobObjective != null
@@ -23393,6 +23436,11 @@ const deserializeAws_json1_1HyperParameterTuningJobConfig = (output, context) =>
23393
23436
  : undefined,
23394
23437
  };
23395
23438
  };
23439
+ const deserializeAws_json1_1HyperParameterTuningJobConsumedResources = (output, context) => {
23440
+ return {
23441
+ RuntimeInSeconds: __expectInt32(output.RuntimeInSeconds),
23442
+ };
23443
+ };
23396
23444
  const deserializeAws_json1_1HyperParameterTuningJobObjective = (output, context) => {
23397
23445
  return {
23398
23446
  MetricName: __expectString(output.MetricName),
@@ -23415,6 +23463,9 @@ const deserializeAws_json1_1HyperParameterTuningJobSearchEntity = (output, conte
23415
23463
  BestTrainingJob: output.BestTrainingJob != null
23416
23464
  ? deserializeAws_json1_1HyperParameterTrainingJobSummary(output.BestTrainingJob, context)
23417
23465
  : undefined,
23466
+ ConsumedResources: output.ConsumedResources != null
23467
+ ? deserializeAws_json1_1HyperParameterTuningJobConsumedResources(output.ConsumedResources, context)
23468
+ : undefined,
23418
23469
  CreationTime: output.CreationTime != null
23419
23470
  ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.CreationTime)))
23420
23471
  : undefined,
@@ -23447,6 +23498,9 @@ const deserializeAws_json1_1HyperParameterTuningJobSearchEntity = (output, conte
23447
23498
  TrainingJobStatusCounters: output.TrainingJobStatusCounters != null
23448
23499
  ? deserializeAws_json1_1TrainingJobStatusCounters(output.TrainingJobStatusCounters, context)
23449
23500
  : undefined,
23501
+ TuningJobCompletionDetails: output.TuningJobCompletionDetails != null
23502
+ ? deserializeAws_json1_1HyperParameterTuningJobCompletionDetails(output.TuningJobCompletionDetails, context)
23503
+ : undefined,
23450
23504
  WarmStartConfig: output.WarmStartConfig != null
23451
23505
  ? deserializeAws_json1_1HyperParameterTuningJobWarmStartConfig(output.WarmStartConfig, context)
23452
23506
  : undefined,
@@ -26957,6 +27011,7 @@ const deserializeAws_json1_1ResourceLimits = (output, context) => {
26957
27011
  return {
26958
27012
  MaxNumberOfTrainingJobs: __expectInt32(output.MaxNumberOfTrainingJobs),
26959
27013
  MaxParallelTrainingJobs: __expectInt32(output.MaxParallelTrainingJobs),
27014
+ MaxRuntimeInSeconds: __expectInt32(output.MaxRuntimeInSeconds),
26960
27015
  };
26961
27016
  };
26962
27017
  const deserializeAws_json1_1ResourceNotFound = (output, context) => {
@@ -28010,6 +28065,12 @@ const deserializeAws_json1_1TrialSummary = (output, context) => {
28010
28065
  };
28011
28066
  const deserializeAws_json1_1TuningJobCompletionCriteria = (output, context) => {
28012
28067
  return {
28068
+ BestObjectiveNotImproving: output.BestObjectiveNotImproving != null
28069
+ ? deserializeAws_json1_1BestObjectiveNotImproving(output.BestObjectiveNotImproving, context)
28070
+ : undefined,
28071
+ ConvergenceDetected: output.ConvergenceDetected != null
28072
+ ? deserializeAws_json1_1ConvergenceDetected(output.ConvergenceDetected, context)
28073
+ : undefined,
28013
28074
  TargetObjectiveMetricValue: __limitedParseFloat32(output.TargetObjectiveMetricValue),
28014
28075
  };
28015
28076
  };
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { CreateExperimentRequest, CreateExperimentResponse } from "../models/models_0";
4
+ import { CreateExperimentRequest, CreateExperimentResponse } from "../models/models_1";
5
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
6
  export interface CreateExperimentCommandInput extends CreateExperimentRequest {
7
7
  }
@@ -1,7 +1,8 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { ListAppImageConfigsRequest, ListAppImageConfigsResponse } from "../models/models_2";
4
+ import { ListAppImageConfigsRequest } from "../models/models_2";
5
+ import { ListAppImageConfigsResponse } from "../models/models_3";
5
6
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
7
  export interface ListAppImageConfigsCommandInput extends ListAppImageConfigsRequest {
7
8
  }
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { ListAppsRequest, ListAppsResponse } from "../models/models_2";
4
+ import { ListAppsRequest, ListAppsResponse } from "../models/models_3";
5
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
6
  export interface ListAppsCommandInput extends ListAppsRequest {
7
7
  }
@@ -1,8 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { ListArtifactsRequest } from "../models/models_2";
5
- import { ListArtifactsResponse } from "../models/models_3";
4
+ import { ListArtifactsRequest, ListArtifactsResponse } from "../models/models_3";
6
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
7
6
  export interface ListArtifactsCommandInput extends ListArtifactsRequest {
8
7
  }
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { UpdateEndpointInput, UpdateEndpointOutput } from "../models/models_3";
4
+ import { UpdateEndpointInput, UpdateEndpointOutput } from "../models/models_4";
5
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
6
  export interface UpdateEndpointCommandInput extends UpdateEndpointInput {
7
7
  }
@@ -1,7 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { UpdateEndpointWeightsAndCapacitiesInput, UpdateEndpointWeightsAndCapacitiesOutput } from "../models/models_3";
4
+ import { UpdateEndpointWeightsAndCapacitiesInput, UpdateEndpointWeightsAndCapacitiesOutput } from "../models/models_4";
5
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
6
  export interface UpdateEndpointWeightsAndCapacitiesCommandInput extends UpdateEndpointWeightsAndCapacitiesInput {
7
7
  }
@@ -4675,6 +4675,15 @@ export interface BatchTransformInput {
4675
4675
  */
4676
4676
  EndTimeOffset?: string;
4677
4677
  }
4678
+ /**
4679
+ * <p>A structure that keeps track of which training jobs launched by your hyperparameter tuning job are not improving model performance as evaluated against an objective function.</p>
4680
+ */
4681
+ export interface BestObjectiveNotImproving {
4682
+ /**
4683
+ * <p>The number of training jobs that have failed to improve model performance by 1% or greater over prior training jobs as evaluated against an objective function.</p>
4684
+ */
4685
+ MaxNumberOfTrainingJobsNotImproving?: number;
4686
+ }
4678
4687
  /**
4679
4688
  * <p>Details about the metrics source.</p>
4680
4689
  */
@@ -5605,6 +5614,10 @@ export interface CompilationJobSummary {
5605
5614
  */
5606
5615
  CompilationJobStatus: CompilationJobStatus | string | undefined;
5607
5616
  }
5617
+ export declare enum CompleteOnConvergence {
5618
+ DISABLED = "Disabled",
5619
+ ENABLED = "Enabled"
5620
+ }
5608
5621
  export declare enum ConditionOutcome {
5609
5622
  FALSE = "False",
5610
5623
  TRUE = "True"
@@ -5914,6 +5927,15 @@ export interface ContinuousParameterRangeSpecification {
5914
5927
  */
5915
5928
  MaxValue: string | undefined;
5916
5929
  }
5930
+ /**
5931
+ * <p>A flag to indicating that automatic model tuning (AMT) has detected model convergence, defined as a lack of significant improvement (1% or less) against an objective metric.</p>
5932
+ */
5933
+ export interface ConvergenceDetected {
5934
+ /**
5935
+ * <p>A flag to stop a tuning job once AMT has detected that the job has converged.</p>
5936
+ */
5937
+ CompleteOnConvergence?: CompleteOnConvergence | string;
5938
+ }
5917
5939
  /**
5918
5940
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
5919
5941
  */
@@ -8584,39 +8606,6 @@ export interface CreateEndpointConfigOutput {
8584
8606
  */
8585
8607
  EndpointConfigArn: string | undefined;
8586
8608
  }
8587
- export interface CreateExperimentRequest {
8588
- /**
8589
- * <p>The name of the experiment. The name must be unique in your Amazon Web Services account and is not
8590
- * case-sensitive.</p>
8591
- */
8592
- ExperimentName: string | undefined;
8593
- /**
8594
- * <p>The name of the experiment as displayed. The name doesn't need to be unique. If you don't
8595
- * specify <code>DisplayName</code>, the value in <code>ExperimentName</code> is
8596
- * displayed.</p>
8597
- */
8598
- DisplayName?: string;
8599
- /**
8600
- * <p>The description of the experiment.</p>
8601
- */
8602
- Description?: string;
8603
- /**
8604
- * <p>A list of tags to associate with the experiment. You can use <a>Search</a> API
8605
- * to search on the tags.</p>
8606
- */
8607
- Tags?: Tag[];
8608
- }
8609
- export interface CreateExperimentResponse {
8610
- /**
8611
- * <p>The Amazon Resource Name (ARN) of the experiment.</p>
8612
- */
8613
- ExperimentArn?: string;
8614
- }
8615
- export declare enum FeatureType {
8616
- FRACTIONAL = "Fractional",
8617
- INTEGRAL = "Integral",
8618
- STRING = "String"
8619
- }
8620
8609
  /**
8621
8610
  * @internal
8622
8611
  */
@@ -8977,6 +8966,10 @@ export declare const MonitoringDatasetFormatFilterSensitiveLog: (obj: Monitoring
8977
8966
  * @internal
8978
8967
  */
8979
8968
  export declare const BatchTransformInputFilterSensitiveLog: (obj: BatchTransformInput) => any;
8969
+ /**
8970
+ * @internal
8971
+ */
8972
+ export declare const BestObjectiveNotImprovingFilterSensitiveLog: (obj: BestObjectiveNotImproving) => any;
8980
8973
  /**
8981
8974
  * @internal
8982
8975
  */
@@ -9133,6 +9126,10 @@ export declare const ContinuousParameterRangeFilterSensitiveLog: (obj: Continuou
9133
9126
  * @internal
9134
9127
  */
9135
9128
  export declare const ContinuousParameterRangeSpecificationFilterSensitiveLog: (obj: ContinuousParameterRangeSpecification) => any;
9129
+ /**
9130
+ * @internal
9131
+ */
9132
+ export declare const ConvergenceDetectedFilterSensitiveLog: (obj: ConvergenceDetected) => any;
9136
9133
  /**
9137
9134
  * @internal
9138
9135
  */
@@ -9445,11 +9442,3 @@ export declare const CreateEndpointConfigInputFilterSensitiveLog: (obj: CreateEn
9445
9442
  * @internal
9446
9443
  */
9447
9444
  export declare const CreateEndpointConfigOutputFilterSensitiveLog: (obj: CreateEndpointConfigOutput) => any;
9448
- /**
9449
- * @internal
9450
- */
9451
- export declare const CreateExperimentRequestFilterSensitiveLog: (obj: CreateExperimentRequest) => any;
9452
- /**
9453
- * @internal
9454
- */
9455
- export declare const CreateExperimentResponseFilterSensitiveLog: (obj: CreateExperimentResponse) => any;
@@ -1,5 +1,38 @@
1
1
  import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
- import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppSpecification, AppType, ArtifactSource, AthenaDatasetDefinition, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, Bias, CaptureContentTypeHeader, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, ContentClassifier, ContinuousParameterRange, DeviceSelectionConfig, EdgeDeploymentConfig, EndpointInput, FeatureType, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, OutputDataConfig, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariantInstanceType, ResourceConfig, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserSettings, VpcConfig } from "./models_0";
2
+ import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppSpecification, AppType, ArtifactSource, AthenaDatasetDefinition, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BestObjectiveNotImproving, Bias, CaptureContentTypeHeader, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, ContentClassifier, ContinuousParameterRange, ConvergenceDetected, EndpointInput, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, OutputDataConfig, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariantInstanceType, ResourceConfig, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserSettings, VpcConfig } from "./models_0";
3
+ export interface CreateExperimentRequest {
4
+ /**
5
+ * <p>The name of the experiment. The name must be unique in your Amazon Web Services account and is not
6
+ * case-sensitive.</p>
7
+ */
8
+ ExperimentName: string | undefined;
9
+ /**
10
+ * <p>The name of the experiment as displayed. The name doesn't need to be unique. If you don't
11
+ * specify <code>DisplayName</code>, the value in <code>ExperimentName</code> is
12
+ * displayed.</p>
13
+ */
14
+ DisplayName?: string;
15
+ /**
16
+ * <p>The description of the experiment.</p>
17
+ */
18
+ Description?: string;
19
+ /**
20
+ * <p>A list of tags to associate with the experiment. You can use <a>Search</a> API
21
+ * to search on the tags.</p>
22
+ */
23
+ Tags?: Tag[];
24
+ }
25
+ export interface CreateExperimentResponse {
26
+ /**
27
+ * <p>The Amazon Resource Name (ARN) of the experiment.</p>
28
+ */
29
+ ExperimentArn?: string;
30
+ }
31
+ export declare enum FeatureType {
32
+ FRACTIONAL = "Fractional",
33
+ INTEGRAL = "Integral",
34
+ STRING = "String"
35
+ }
3
36
  /**
4
37
  * <p>A list of features. You must include <code>FeatureName</code> and
5
38
  * <code>FeatureType</code>. Valid feature <code>FeatureType</code>s are
@@ -1239,26 +1272,24 @@ export interface ParameterRanges {
1239
1272
  CategoricalParameterRanges?: CategoricalParameterRange[];
1240
1273
  }
1241
1274
  /**
1242
- * <p>Specifies the maximum number of
1243
- * training
1244
- * jobs and parallel training jobs that a hyperparameter tuning job can
1245
- * launch.</p>
1275
+ * <p>Specifies the maximum number of training jobs and parallel training jobs that a
1276
+ * hyperparameter tuning job can launch.</p>
1246
1277
  */
1247
1278
  export interface ResourceLimits {
1248
1279
  /**
1249
- * <p>The
1250
- * maximum
1251
- * number of training jobs that a hyperparameter tuning job can
1280
+ * <p>The maximum number of training jobs that a hyperparameter tuning job can
1252
1281
  * launch.</p>
1253
1282
  */
1254
1283
  MaxNumberOfTrainingJobs?: number;
1255
1284
  /**
1256
- * <p>The
1257
- * maximum
1258
- * number of concurrent training jobs that a hyperparameter tuning job can
1285
+ * <p>The maximum number of concurrent training jobs that a hyperparameter tuning job can
1259
1286
  * launch.</p>
1260
1287
  */
1261
1288
  MaxParallelTrainingJobs: number | undefined;
1289
+ /**
1290
+ * <p>The maximum time in seconds that a training job launched by a hyperparameter tuning job can run.</p>
1291
+ */
1292
+ MaxRuntimeInSeconds?: number;
1262
1293
  }
1263
1294
  export declare enum HyperParameterTuningJobStrategyType {
1264
1295
  BAYESIAN = "Bayesian",
@@ -1352,7 +1383,15 @@ export interface TuningJobCompletionCriteria {
1352
1383
  /**
1353
1384
  * <p>The value of the objective metric.</p>
1354
1385
  */
1355
- TargetObjectiveMetricValue: number | undefined;
1386
+ TargetObjectiveMetricValue?: number;
1387
+ /**
1388
+ * <p>A flag to stop your hyperparameter tuning job if model performance fails to improve as evaluated against an objective function.</p>
1389
+ */
1390
+ BestObjectiveNotImproving?: BestObjectiveNotImproving;
1391
+ /**
1392
+ * <p>A flag to top your hyperparameter tuning job if automatic model tuning (AMT) has detected that your model has converged as evaluated against your objective function.</p>
1393
+ */
1394
+ ConvergenceDetected?: ConvergenceDetected;
1356
1395
  }
1357
1396
  /**
1358
1397
  * <p>Configures a hyperparameter tuning job.</p>
@@ -8282,66 +8321,14 @@ export interface DeployedImage {
8282
8321
  */
8283
8322
  ResolutionTime?: Date;
8284
8323
  }
8285
- export declare enum StageStatus {
8286
- Creating = "CREATING",
8287
- Deployed = "DEPLOYED",
8288
- Failed = "FAILED",
8289
- InProgress = "INPROGRESS",
8290
- ReadyToDeploy = "READYTODEPLOY",
8291
- Starting = "STARTING",
8292
- Stopped = "STOPPED",
8293
- Stopping = "STOPPING"
8294
- }
8295
8324
  /**
8296
- * <p>Contains information summarizing the deployment stage results.</p>
8325
+ * @internal
8297
8326
  */
8298
- export interface EdgeDeploymentStatus {
8299
- /**
8300
- * <p>The general status of the current stage.</p>
8301
- */
8302
- StageStatus: StageStatus | string | undefined;
8303
- /**
8304
- * <p>The number of edge devices with the successful deployment in the current stage.</p>
8305
- */
8306
- EdgeDeploymentSuccessInStage: number | undefined;
8307
- /**
8308
- * <p>The number of edge devices yet to pick up the deployment in current stage, or in progress.</p>
8309
- */
8310
- EdgeDeploymentPendingInStage: number | undefined;
8311
- /**
8312
- * <p>The number of edge devices that failed the deployment in current stage.</p>
8313
- */
8314
- EdgeDeploymentFailedInStage: number | undefined;
8315
- /**
8316
- * <p>A detailed message about deployment status in current stage.</p>
8317
- */
8318
- EdgeDeploymentStatusMessage?: string;
8319
- /**
8320
- * <p>The time when the deployment API started.</p>
8321
- */
8322
- EdgeDeploymentStageStartTime?: Date;
8323
- }
8327
+ export declare const CreateExperimentRequestFilterSensitiveLog: (obj: CreateExperimentRequest) => any;
8324
8328
  /**
8325
- * <p>Contains information summarizing the deployment stage results.</p>
8329
+ * @internal
8326
8330
  */
8327
- export interface DeploymentStageStatusSummary {
8328
- /**
8329
- * <p>The name of the stage.</p>
8330
- */
8331
- StageName: string | undefined;
8332
- /**
8333
- * <p>Configuration of the devices in the stage.</p>
8334
- */
8335
- DeviceSelectionConfig: DeviceSelectionConfig | undefined;
8336
- /**
8337
- * <p>Configuration of the deployment details.</p>
8338
- */
8339
- DeploymentConfig: EdgeDeploymentConfig | undefined;
8340
- /**
8341
- * <p>General status of the current state.</p>
8342
- */
8343
- DeploymentStatus: EdgeDeploymentStatus | undefined;
8344
- }
8331
+ export declare const CreateExperimentResponseFilterSensitiveLog: (obj: CreateExperimentResponse) => any;
8345
8332
  /**
8346
8333
  * @internal
8347
8334
  */
@@ -9402,11 +9389,3 @@ export declare const DeleteWorkteamResponseFilterSensitiveLog: (obj: DeleteWorkt
9402
9389
  * @internal
9403
9390
  */
9404
9391
  export declare const DeployedImageFilterSensitiveLog: (obj: DeployedImage) => any;
9405
- /**
9406
- * @internal
9407
- */
9408
- export declare const EdgeDeploymentStatusFilterSensitiveLog: (obj: EdgeDeploymentStatus) => any;
9409
- /**
9410
- * @internal
9411
- */
9412
- export declare const DeploymentStageStatusSummaryFilterSensitiveLog: (obj: DeploymentStageStatusSummary) => any;