@aws-sdk/client-sagemaker 3.460.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 +3 -3
@@ -5090,6 +5090,8 @@ export interface AutoMLJobCompletionCriteria {
5090
5090
  * used by the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateHyperParameterTuningJob.html">CreateHyperParameterTuningJob</a> action.</p>
5091
5091
  * <p>For job V2s (jobs created by calling <code>CreateAutoMLJobV2</code>), this field
5092
5092
  * controls the runtime of the job candidate.</p>
5093
+ * <p>For <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TextClassificationJobConfig.html">TextGenerationJobConfig</a> problem types, the maximum time defaults to 72 hours
5094
+ * (259200 seconds).</p>
5093
5095
  */
5094
5096
  MaxRuntimePerTrainingJobInSeconds?: number;
5095
5097
  /**
@@ -5117,16 +5119,15 @@ export declare const AutoMLMode: {
5117
5119
  export type AutoMLMode = (typeof AutoMLMode)[keyof typeof AutoMLMode];
5118
5120
  /**
5119
5121
  * @public
5120
- * <p>Specifies a VPC that your training jobs and hosted models have access to. Control
5121
- * access to and from your training and model containers by configuring the VPC. For more
5122
- * information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html">Protect Endpoints by Using an Amazon Virtual Private Cloud</a> and <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html">Protect Training Jobs
5123
- * by Using an Amazon Virtual Private Cloud</a>. </p>
5122
+ * <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
5123
+ * have access to. You can control access to and from your resources by configuring a VPC.
5124
+ * For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to Resources in your Amazon VPC</a>. </p>
5124
5125
  */
5125
5126
  export interface VpcConfig {
5126
5127
  /**
5127
5128
  * @public
5128
- * <p>The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for
5129
- * the VPC that is specified in the <code>Subnets</code> field.</p>
5129
+ * <p>The VPC security group IDs, in the form <code>sg-xxxxxxxx</code>. Specify the security
5130
+ * groups for the VPC that is specified in the <code>Subnets</code> field.</p>
5130
5131
  */
5131
5132
  SecurityGroupIds: string[] | undefined;
5132
5133
  /**
@@ -5650,18 +5651,58 @@ export interface TextClassificationJobConfig {
5650
5651
  export interface TextGenerationJobConfig {
5651
5652
  /**
5652
5653
  * @public
5653
- * <p>How long a job is allowed to run, or how many candidates a job is allowed to
5654
- * generate.</p>
5654
+ * <p>How long a fine-tuning job is allowed to run. For <code>TextGenerationJobConfig</code>
5655
+ * problem types, the <code>MaxRuntimePerTrainingJobInSeconds</code> attribute of <code>AutoMLJobCompletionCriteria</code> defaults to 72h
5656
+ * (259200s).</p>
5655
5657
  */
5656
5658
  CompletionCriteria?: AutoMLJobCompletionCriteria;
5657
5659
  /**
5658
5660
  * @public
5659
5661
  * <p>The name of the base model to fine-tune. Autopilot supports fine-tuning a variety of large
5660
5662
  * language models. For information on the list of supported models, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-models.html#autopilot-llms-finetuning-supported-llms">Text generation models supporting fine-tuning in Autopilot</a>. If no
5661
- * <code>BaseModelName</code> is provided, the default model used is Falcon-7B-Instruct.
5662
- * </p>
5663
+ * <code>BaseModelName</code> is provided, the default model used is <b>Falcon7BInstruct</b>. </p>
5663
5664
  */
5664
5665
  BaseModelName?: string;
5666
+ /**
5667
+ * @public
5668
+ * <p>The hyperparameters used to configure and optimize the learning process of the base
5669
+ * model. You can set any combination of the following hyperparameters for all base models.
5670
+ * For more information on each supported hyperparameter, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-set-hyperparameters.html">Optimize
5671
+ * the learning process of your text generation models with hyperparameters</a>.</p>
5672
+ * <ul>
5673
+ * <li>
5674
+ * <p>
5675
+ * <code>"epochCount"</code>: The number of times the model goes through the entire
5676
+ * training dataset. Its value should be a string containing an integer value within the
5677
+ * range of "1" to "10".</p>
5678
+ * </li>
5679
+ * <li>
5680
+ * <p>
5681
+ * <code>"batchSize"</code>: The number of data samples used in each iteration of
5682
+ * training. Its value should be a string containing an integer value within the range
5683
+ * of "1" to "64".</p>
5684
+ * </li>
5685
+ * <li>
5686
+ * <p>
5687
+ * <code>"learningRate"</code>: The step size at which a model's parameters are
5688
+ * updated during training. Its value should be a string containing a floating-point
5689
+ * value within the range of "0" to "1".</p>
5690
+ * </li>
5691
+ * <li>
5692
+ * <p>
5693
+ * <code>"learningRateWarmupSteps"</code>: The number of training steps during which
5694
+ * the learning rate gradually increases before reaching its target or maximum value.
5695
+ * Its value should be a string containing an integer value within the range of "0" to
5696
+ * "250".</p>
5697
+ * </li>
5698
+ * </ul>
5699
+ * <p>Here is an example where all four hyperparameters are configured.</p>
5700
+ * <p>
5701
+ * <code>\{ "epochCount":"5", "learningRate":"0.5", "batchSize": "32",
5702
+ * "learningRateWarmupSteps": "10" \}</code>
5703
+ * </p>
5704
+ */
5705
+ TextGenerationHyperParameters?: Record<string, string>;
5665
5706
  }
5666
5707
  /**
5667
5708
  * @public
@@ -7578,6 +7619,319 @@ export interface ClarifyExplainerConfig {
7578
7619
  */
7579
7620
  ShapConfig: ClarifyShapConfig | undefined;
7580
7621
  }
7622
+ /**
7623
+ * @public
7624
+ * @enum
7625
+ */
7626
+ export declare const ClusterInstanceType: {
7627
+ readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
7628
+ readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
7629
+ readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
7630
+ readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
7631
+ readonly ML_C5N_LARGE: "ml.c5n.large";
7632
+ readonly ML_C5_12XLARGE: "ml.c5.12xlarge";
7633
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
7634
+ readonly ML_C5_24XLARGE: "ml.c5.24xlarge";
7635
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
7636
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
7637
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
7638
+ readonly ML_C5_LARGE: "ml.c5.large";
7639
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
7640
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
7641
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
7642
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
7643
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
7644
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
7645
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
7646
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
7647
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
7648
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
7649
+ readonly ML_M5_16XLARGE: "ml.m5.16xlarge";
7650
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
7651
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
7652
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
7653
+ readonly ML_M5_8XLARGE: "ml.m5.8xlarge";
7654
+ readonly ML_M5_LARGE: "ml.m5.large";
7655
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
7656
+ readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
7657
+ readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
7658
+ readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
7659
+ readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
7660
+ readonly ML_T3_LARGE: "ml.t3.large";
7661
+ readonly ML_T3_MEDIUM: "ml.t3.medium";
7662
+ readonly ML_T3_XLARGE: "ml.t3.xlarge";
7663
+ readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
7664
+ readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
7665
+ };
7666
+ /**
7667
+ * @public
7668
+ */
7669
+ export type ClusterInstanceType = (typeof ClusterInstanceType)[keyof typeof ClusterInstanceType];
7670
+ /**
7671
+ * @public
7672
+ * <p>The LifeCycle configuration for a SageMaker HyperPod cluster.</p>
7673
+ */
7674
+ export interface ClusterLifeCycleConfig {
7675
+ /**
7676
+ * @public
7677
+ * <p>An Amazon S3 bucket path where your LifeCycle scripts are stored.</p>
7678
+ */
7679
+ SourceS3Uri: string | undefined;
7680
+ /**
7681
+ * @public
7682
+ * <p>The directory of the LifeCycle script under <code>SourceS3Uri</code>. This LifeCycle
7683
+ * script runs during cluster creation.</p>
7684
+ */
7685
+ OnCreate: string | undefined;
7686
+ }
7687
+ /**
7688
+ * @public
7689
+ * <p>Details of an instance group in a SageMaker HyperPod cluster.</p>
7690
+ */
7691
+ export interface ClusterInstanceGroupDetails {
7692
+ /**
7693
+ * @public
7694
+ * <p>The number of instances that are currently in the instance group of a
7695
+ * SageMaker HyperPod cluster.</p>
7696
+ */
7697
+ CurrentCount?: number;
7698
+ /**
7699
+ * @public
7700
+ * <p>The number of instances you specified to add to the instance group of a SageMaker HyperPod cluster.</p>
7701
+ */
7702
+ TargetCount?: number;
7703
+ /**
7704
+ * @public
7705
+ * <p>The name of the instance group of a SageMaker HyperPod cluster.</p>
7706
+ */
7707
+ InstanceGroupName?: string;
7708
+ /**
7709
+ * @public
7710
+ * <p>The instance type of the instance group of a SageMaker HyperPod cluster.</p>
7711
+ */
7712
+ InstanceType?: ClusterInstanceType;
7713
+ /**
7714
+ * @public
7715
+ * <p>Details of LifeCycle configuration for the instance group.</p>
7716
+ */
7717
+ LifeCycleConfig?: ClusterLifeCycleConfig;
7718
+ /**
7719
+ * @public
7720
+ * <p>The execution role for the instance group to assume.</p>
7721
+ */
7722
+ ExecutionRole?: string;
7723
+ /**
7724
+ * @public
7725
+ * <p>The number you specified to <code>TreadsPerCore</code> in <code>CreateCluster</code> for
7726
+ * enabling or disabling multithreading. For instance types that support multithreading, you
7727
+ * can specify 1 for disabling multithreading and 2 for enabling multithreading. For more
7728
+ * information, see the reference table of <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html">CPU cores and threads per CPU core per instance type</a> in the <i>Amazon Elastic Compute Cloud
7729
+ * User Guide</i>.</p>
7730
+ */
7731
+ ThreadsPerCore?: number;
7732
+ }
7733
+ /**
7734
+ * @public
7735
+ * <p>The specifications of an instance group that you need to define.</p>
7736
+ */
7737
+ export interface ClusterInstanceGroupSpecification {
7738
+ /**
7739
+ * @public
7740
+ * <p>Specifies the number of instances to add to the instance group of a SageMaker HyperPod cluster.</p>
7741
+ */
7742
+ InstanceCount: number | undefined;
7743
+ /**
7744
+ * @public
7745
+ * <p>Specifies the name of the instance group.</p>
7746
+ */
7747
+ InstanceGroupName: string | undefined;
7748
+ /**
7749
+ * @public
7750
+ * <p>Specifies the instance type of the instance group.</p>
7751
+ */
7752
+ InstanceType: ClusterInstanceType | undefined;
7753
+ /**
7754
+ * @public
7755
+ * <p>Specifies the LifeCycle configuration for the instance group.</p>
7756
+ */
7757
+ LifeCycleConfig: ClusterLifeCycleConfig | undefined;
7758
+ /**
7759
+ * @public
7760
+ * <p>Specifies an IAM execution role to be assumed by the instance group.</p>
7761
+ */
7762
+ ExecutionRole: string | undefined;
7763
+ /**
7764
+ * @public
7765
+ * <p>Specifies the value for <b>Threads per core</b>. For instance types that
7766
+ * support multithreading, you can specify <code>1</code> for disabling multithreading and
7767
+ * <code>2</code> for enabling multithreading. For instance types that doesn't support
7768
+ * multithreading, specify <code>1</code>. For more information, see the reference table of
7769
+ * <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html">CPU cores and threads per CPU core per instance type</a> in the <i>Amazon Elastic Compute Cloud
7770
+ * User Guide</i>.</p>
7771
+ */
7772
+ ThreadsPerCore?: number;
7773
+ }
7774
+ /**
7775
+ * @public
7776
+ * @enum
7777
+ */
7778
+ export declare const ClusterInstanceStatus: {
7779
+ readonly FAILURE: "Failure";
7780
+ readonly PENDING: "Pending";
7781
+ readonly RUNNING: "Running";
7782
+ readonly SHUTTING_DOWN: "ShuttingDown";
7783
+ readonly SYSTEM_UPDATING: "SystemUpdating";
7784
+ };
7785
+ /**
7786
+ * @public
7787
+ */
7788
+ export type ClusterInstanceStatus = (typeof ClusterInstanceStatus)[keyof typeof ClusterInstanceStatus];
7789
+ /**
7790
+ * @public
7791
+ * <p>Details of an instance in a SageMaker HyperPod cluster.</p>
7792
+ */
7793
+ export interface ClusterInstanceStatusDetails {
7794
+ /**
7795
+ * @public
7796
+ * <p>The status of an instance in a SageMaker HyperPod cluster.</p>
7797
+ */
7798
+ Status: ClusterInstanceStatus | undefined;
7799
+ /**
7800
+ * @public
7801
+ * <p>The message from an instance in a SageMaker HyperPod cluster.</p>
7802
+ */
7803
+ Message?: string;
7804
+ }
7805
+ /**
7806
+ * @public
7807
+ * <p>Details of an instance (also called a <i>node</i> interchangeably) in a
7808
+ * SageMaker HyperPod cluster.</p>
7809
+ */
7810
+ export interface ClusterNodeDetails {
7811
+ /**
7812
+ * @public
7813
+ * <p>The instance group name in which the instance is.</p>
7814
+ */
7815
+ InstanceGroupName?: string;
7816
+ /**
7817
+ * @public
7818
+ * <p>The ID of the instance.</p>
7819
+ */
7820
+ InstanceId?: string;
7821
+ /**
7822
+ * @public
7823
+ * <p>The status of the instance.</p>
7824
+ */
7825
+ InstanceStatus?: ClusterInstanceStatusDetails;
7826
+ /**
7827
+ * @public
7828
+ * <p>The type of the instance.</p>
7829
+ */
7830
+ InstanceType?: ClusterInstanceType;
7831
+ /**
7832
+ * @public
7833
+ * <p>The time when the instance is launched.</p>
7834
+ */
7835
+ LaunchTime?: Date;
7836
+ /**
7837
+ * @public
7838
+ * <p>The LifeCycle configuration applied to the instance.</p>
7839
+ */
7840
+ LifeCycleConfig?: ClusterLifeCycleConfig;
7841
+ /**
7842
+ * @public
7843
+ * <p>The number of threads per CPU core you specified under
7844
+ * <code>CreateCluster</code>.</p>
7845
+ */
7846
+ ThreadsPerCore?: number;
7847
+ }
7848
+ /**
7849
+ * @public
7850
+ * <p>Lists a summary of the properties of an instance (also called a
7851
+ * <i>node</i> interchangeably) of a SageMaker HyperPod cluster.</p>
7852
+ */
7853
+ export interface ClusterNodeSummary {
7854
+ /**
7855
+ * @public
7856
+ * <p>The name of the instance group in which the instance is.</p>
7857
+ */
7858
+ InstanceGroupName: string | undefined;
7859
+ /**
7860
+ * @public
7861
+ * <p>The ID of the instance.</p>
7862
+ */
7863
+ InstanceId: string | undefined;
7864
+ /**
7865
+ * @public
7866
+ * <p>The type of the instance.</p>
7867
+ */
7868
+ InstanceType: ClusterInstanceType | undefined;
7869
+ /**
7870
+ * @public
7871
+ * <p>The time when the instance is launched.</p>
7872
+ */
7873
+ LaunchTime: Date | undefined;
7874
+ /**
7875
+ * @public
7876
+ * <p>The status of the instance.</p>
7877
+ */
7878
+ InstanceStatus: ClusterInstanceStatusDetails | undefined;
7879
+ }
7880
+ /**
7881
+ * @public
7882
+ * @enum
7883
+ */
7884
+ export declare const ClusterSortBy: {
7885
+ readonly CREATION_TIME: "CREATION_TIME";
7886
+ readonly NAME: "NAME";
7887
+ };
7888
+ /**
7889
+ * @public
7890
+ */
7891
+ export type ClusterSortBy = (typeof ClusterSortBy)[keyof typeof ClusterSortBy];
7892
+ /**
7893
+ * @public
7894
+ * @enum
7895
+ */
7896
+ export declare const ClusterStatus: {
7897
+ readonly CREATING: "Creating";
7898
+ readonly DELETING: "Deleting";
7899
+ readonly FAILED: "Failed";
7900
+ readonly INSERVICE: "InService";
7901
+ readonly ROLLINGBACK: "RollingBack";
7902
+ readonly SYSTEMUPDATING: "SystemUpdating";
7903
+ readonly UPDATING: "Updating";
7904
+ };
7905
+ /**
7906
+ * @public
7907
+ */
7908
+ export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
7909
+ /**
7910
+ * @public
7911
+ * <p>Lists a summary of the properties of a SageMaker HyperPod cluster.</p>
7912
+ */
7913
+ export interface ClusterSummary {
7914
+ /**
7915
+ * @public
7916
+ * <p>The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.</p>
7917
+ */
7918
+ ClusterArn: string | undefined;
7919
+ /**
7920
+ * @public
7921
+ * <p>The name of the SageMaker HyperPod cluster.</p>
7922
+ */
7923
+ ClusterName: string | undefined;
7924
+ /**
7925
+ * @public
7926
+ * <p>The time when the SageMaker HyperPod cluster is created.</p>
7927
+ */
7928
+ CreationTime: Date | undefined;
7929
+ /**
7930
+ * @public
7931
+ * <p>The status of the SageMaker HyperPod cluster.</p>
7932
+ */
7933
+ ClusterStatus: ClusterStatus | undefined;
7934
+ }
7581
7935
  /**
7582
7936
  * @public
7583
7937
  * <p>A Git repository that SageMaker automatically displays to users for cloning in the JupyterServer application.</p>
@@ -8946,6 +9300,11 @@ export interface ResourceSpec {
8946
9300
  * <p>The ARN of the image version created on the instance.</p>
8947
9301
  */
8948
9302
  SageMakerImageVersionArn?: string;
9303
+ /**
9304
+ * @public
9305
+ * <p>The SageMakerImageVersionAlias.</p>
9306
+ */
9307
+ SageMakerImageVersionAlias?: string;
8949
9308
  /**
8950
9309
  * @public
8951
9310
  * <p>The instance type that the image version runs on.</p>
@@ -9340,6 +9699,46 @@ export interface CreateAutoMLJobV2Response {
9340
9699
  */
9341
9700
  AutoMLJobArn: string | undefined;
9342
9701
  }
9702
+ /**
9703
+ * @public
9704
+ */
9705
+ export interface CreateClusterRequest {
9706
+ /**
9707
+ * @public
9708
+ * <p>The name for the new SageMaker HyperPod cluster.</p>
9709
+ */
9710
+ ClusterName: string | undefined;
9711
+ /**
9712
+ * @public
9713
+ * <p>The instance groups to be created in the SageMaker HyperPod cluster.</p>
9714
+ */
9715
+ InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
9716
+ /**
9717
+ * @public
9718
+ * <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
9719
+ * have access to. You can control access to and from your resources by configuring a VPC.
9720
+ * For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to Resources in your Amazon VPC</a>. </p>
9721
+ */
9722
+ VpcConfig?: VpcConfig;
9723
+ /**
9724
+ * @public
9725
+ * <p>Custom tags for managing the SageMaker HyperPod cluster as an Amazon Web Services resource. You can
9726
+ * add tags to your cluster in the same way you add them in other Amazon Web Services services
9727
+ * that support tagging. To learn more about tagging Amazon Web Services resources in general,
9728
+ * see <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html">Tagging Amazon Web Services Resources User Guide</a>.</p>
9729
+ */
9730
+ Tags?: Tag[];
9731
+ }
9732
+ /**
9733
+ * @public
9734
+ */
9735
+ export interface CreateClusterResponse {
9736
+ /**
9737
+ * @public
9738
+ * <p>The Amazon Resource Name (ARN) of the cluster.</p>
9739
+ */
9740
+ ClusterArn: string | undefined;
9741
+ }
9343
9742
  /**
9344
9743
  * @public
9345
9744
  */
@@ -10286,338 +10685,3 @@ export interface CreateContextResponse {
10286
10685
  */
10287
10686
  ContextArn?: string;
10288
10687
  }
10289
- /**
10290
- * @public
10291
- * <p>Information about the container that a data quality monitoring job runs.</p>
10292
- */
10293
- export interface DataQualityAppSpecification {
10294
- /**
10295
- * @public
10296
- * <p>The container image that the data quality monitoring job runs.</p>
10297
- */
10298
- ImageUri: string | undefined;
10299
- /**
10300
- * @public
10301
- * <p>The entrypoint for a container used to run a monitoring job.</p>
10302
- */
10303
- ContainerEntrypoint?: string[];
10304
- /**
10305
- * @public
10306
- * <p>The arguments to send to the container that the monitoring job runs.</p>
10307
- */
10308
- ContainerArguments?: string[];
10309
- /**
10310
- * @public
10311
- * <p>An Amazon S3 URI to a script that is called per row prior to running analysis. It can
10312
- * base64 decode the payload and convert it into a flattened JSON so that the built-in container can use
10313
- * the converted data. Applicable only for the built-in (first party) containers.</p>
10314
- */
10315
- RecordPreprocessorSourceUri?: string;
10316
- /**
10317
- * @public
10318
- * <p>An Amazon S3 URI to a script that is called after analysis has been performed. Applicable
10319
- * only for the built-in (first party) containers.</p>
10320
- */
10321
- PostAnalyticsProcessorSourceUri?: string;
10322
- /**
10323
- * @public
10324
- * <p>Sets the environment variables in the container that the monitoring job runs.</p>
10325
- */
10326
- Environment?: Record<string, string>;
10327
- }
10328
- /**
10329
- * @public
10330
- * <p>The constraints resource for a monitoring job.</p>
10331
- */
10332
- export interface MonitoringConstraintsResource {
10333
- /**
10334
- * @public
10335
- * <p>The Amazon S3 URI for the constraints resource.</p>
10336
- */
10337
- S3Uri?: string;
10338
- }
10339
- /**
10340
- * @public
10341
- * <p>The statistics resource for a monitoring job.</p>
10342
- */
10343
- export interface MonitoringStatisticsResource {
10344
- /**
10345
- * @public
10346
- * <p>The Amazon S3 URI for the statistics resource.</p>
10347
- */
10348
- S3Uri?: string;
10349
- }
10350
- /**
10351
- * @public
10352
- * <p>Configuration for monitoring constraints and monitoring statistics. These baseline resources are
10353
- * compared against the results of the current job from the series of jobs scheduled to collect data
10354
- * periodically.</p>
10355
- */
10356
- export interface DataQualityBaselineConfig {
10357
- /**
10358
- * @public
10359
- * <p>The name of the job that performs baselining for the data quality monitoring job.</p>
10360
- */
10361
- BaseliningJobName?: string;
10362
- /**
10363
- * @public
10364
- * <p>The constraints resource for a monitoring job.</p>
10365
- */
10366
- ConstraintsResource?: MonitoringConstraintsResource;
10367
- /**
10368
- * @public
10369
- * <p>The statistics resource for a monitoring job.</p>
10370
- */
10371
- StatisticsResource?: MonitoringStatisticsResource;
10372
- }
10373
- /**
10374
- * @public
10375
- * <p>Input object for the endpoint</p>
10376
- */
10377
- export interface EndpointInput {
10378
- /**
10379
- * @public
10380
- * <p>An endpoint in customer's account which has enabled <code>DataCaptureConfig</code>
10381
- * enabled.</p>
10382
- */
10383
- EndpointName: string | undefined;
10384
- /**
10385
- * @public
10386
- * <p>Path to the filesystem where the endpoint data is available to the container.</p>
10387
- */
10388
- LocalPath: string | undefined;
10389
- /**
10390
- * @public
10391
- * <p>Whether the <code>Pipe</code> or <code>File</code> is used as the input mode for
10392
- * transferring data for the monitoring job. <code>Pipe</code> mode is recommended for large
10393
- * datasets. <code>File</code> mode is useful for small files that fit in memory. Defaults to
10394
- * <code>File</code>.</p>
10395
- */
10396
- S3InputMode?: ProcessingS3InputMode;
10397
- /**
10398
- * @public
10399
- * <p>Whether input data distributed in Amazon S3 is fully replicated or sharded by an
10400
- * Amazon S3 key. Defaults to <code>FullyReplicated</code>
10401
- * </p>
10402
- */
10403
- S3DataDistributionType?: ProcessingS3DataDistributionType;
10404
- /**
10405
- * @public
10406
- * <p>The attributes of the input data that are the input features.</p>
10407
- */
10408
- FeaturesAttribute?: string;
10409
- /**
10410
- * @public
10411
- * <p>The attribute of the input data that represents the ground truth label.</p>
10412
- */
10413
- InferenceAttribute?: string;
10414
- /**
10415
- * @public
10416
- * <p>In a classification problem, the attribute that represents the class probability.</p>
10417
- */
10418
- ProbabilityAttribute?: string;
10419
- /**
10420
- * @public
10421
- * <p>The threshold for the class probability to be evaluated as a positive result.</p>
10422
- */
10423
- ProbabilityThresholdAttribute?: number;
10424
- /**
10425
- * @public
10426
- * <p>If specified, monitoring jobs substract this time from the start time. For information
10427
- * about using offsets for scheduling monitoring jobs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html">Schedule Model
10428
- * Quality Monitoring Jobs</a>.</p>
10429
- */
10430
- StartTimeOffset?: string;
10431
- /**
10432
- * @public
10433
- * <p>If specified, monitoring jobs substract this time from the end time. For information
10434
- * about using offsets for scheduling monitoring jobs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html">Schedule Model
10435
- * Quality Monitoring Jobs</a>.</p>
10436
- */
10437
- EndTimeOffset?: string;
10438
- /**
10439
- * @public
10440
- * <p>The attributes of the input data to exclude from the analysis.</p>
10441
- */
10442
- ExcludeFeaturesAttribute?: string;
10443
- }
10444
- /**
10445
- * @public
10446
- * <p>The input for the data quality monitoring job. Currently endpoints are supported for
10447
- * input.</p>
10448
- */
10449
- export interface DataQualityJobInput {
10450
- /**
10451
- * @public
10452
- * <p>Input object for the endpoint</p>
10453
- */
10454
- EndpointInput?: EndpointInput;
10455
- /**
10456
- * @public
10457
- * <p>Input object for the batch transform job.</p>
10458
- */
10459
- BatchTransformInput?: BatchTransformInput;
10460
- }
10461
- /**
10462
- * @public
10463
- * @enum
10464
- */
10465
- export declare const ProcessingS3UploadMode: {
10466
- readonly CONTINUOUS: "Continuous";
10467
- readonly END_OF_JOB: "EndOfJob";
10468
- };
10469
- /**
10470
- * @public
10471
- */
10472
- export type ProcessingS3UploadMode = (typeof ProcessingS3UploadMode)[keyof typeof ProcessingS3UploadMode];
10473
- /**
10474
- * @public
10475
- * <p>Information about where and how you want to store the results of a monitoring
10476
- * job.</p>
10477
- */
10478
- export interface MonitoringS3Output {
10479
- /**
10480
- * @public
10481
- * <p>A URI that identifies the Amazon S3 storage location where Amazon SageMaker
10482
- * saves the results of a monitoring job.</p>
10483
- */
10484
- S3Uri: string | undefined;
10485
- /**
10486
- * @public
10487
- * <p>The local path to the Amazon S3 storage location where Amazon SageMaker
10488
- * saves the results of a monitoring job. LocalPath is an absolute path for the output
10489
- * data.</p>
10490
- */
10491
- LocalPath: string | undefined;
10492
- /**
10493
- * @public
10494
- * <p>Whether to upload the results of the monitoring job continuously or after the job
10495
- * completes.</p>
10496
- */
10497
- S3UploadMode?: ProcessingS3UploadMode;
10498
- }
10499
- /**
10500
- * @public
10501
- * <p>The output object for a monitoring job.</p>
10502
- */
10503
- export interface MonitoringOutput {
10504
- /**
10505
- * @public
10506
- * <p>The Amazon S3 storage location where the results of a monitoring job are
10507
- * saved.</p>
10508
- */
10509
- S3Output: MonitoringS3Output | undefined;
10510
- }
10511
- /**
10512
- * @public
10513
- * <p>The output configuration for monitoring jobs.</p>
10514
- */
10515
- export interface MonitoringOutputConfig {
10516
- /**
10517
- * @public
10518
- * <p>Monitoring outputs for monitoring jobs. This is where the output of the periodic
10519
- * monitoring jobs is uploaded.</p>
10520
- */
10521
- MonitoringOutputs: MonitoringOutput[] | undefined;
10522
- /**
10523
- * @public
10524
- * <p>The Key Management Service (KMS) key that Amazon SageMaker uses to
10525
- * encrypt the model artifacts at rest using Amazon S3 server-side encryption.</p>
10526
- */
10527
- KmsKeyId?: string;
10528
- }
10529
- /**
10530
- * @public
10531
- * @enum
10532
- */
10533
- export declare const ProcessingInstanceType: {
10534
- readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
10535
- readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
10536
- readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
10537
- readonly ML_C4_XLARGE: "ml.c4.xlarge";
10538
- readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
10539
- readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
10540
- readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
10541
- readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
10542
- readonly ML_C5_XLARGE: "ml.c5.xlarge";
10543
- readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
10544
- readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
10545
- readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
10546
- readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
10547
- readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
10548
- readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
10549
- readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
10550
- readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
10551
- readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
10552
- readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
10553
- readonly ML_M4_XLARGE: "ml.m4.xlarge";
10554
- readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
10555
- readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
10556
- readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
10557
- readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
10558
- readonly ML_M5_LARGE: "ml.m5.large";
10559
- readonly ML_M5_XLARGE: "ml.m5.xlarge";
10560
- readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
10561
- readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
10562
- readonly ML_P2_XLARGE: "ml.p2.xlarge";
10563
- readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
10564
- readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
10565
- readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
10566
- readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
10567
- readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
10568
- readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
10569
- readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
10570
- readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
10571
- readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
10572
- readonly ML_R5_LARGE: "ml.r5.large";
10573
- readonly ML_R5_XLARGE: "ml.r5.xlarge";
10574
- readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
10575
- readonly ML_T3_LARGE: "ml.t3.large";
10576
- readonly ML_T3_MEDIUM: "ml.t3.medium";
10577
- readonly ML_T3_XLARGE: "ml.t3.xlarge";
10578
- };
10579
- /**
10580
- * @public
10581
- */
10582
- export type ProcessingInstanceType = (typeof ProcessingInstanceType)[keyof typeof ProcessingInstanceType];
10583
- /**
10584
- * @public
10585
- * <p>Configuration for the cluster used to run model monitoring jobs.</p>
10586
- */
10587
- export interface MonitoringClusterConfig {
10588
- /**
10589
- * @public
10590
- * <p>The number of ML compute instances to use in the model monitoring job. For distributed
10591
- * processing jobs, specify a value greater than 1. The default value is 1.</p>
10592
- */
10593
- InstanceCount: number | undefined;
10594
- /**
10595
- * @public
10596
- * <p>The ML compute instance type for the processing job.</p>
10597
- */
10598
- InstanceType: ProcessingInstanceType | undefined;
10599
- /**
10600
- * @public
10601
- * <p>The size of the ML storage volume, in gigabytes, that you want to provision. You must
10602
- * specify sufficient ML storage for your scenario.</p>
10603
- */
10604
- VolumeSizeInGB: number | undefined;
10605
- /**
10606
- * @public
10607
- * <p>The Key Management Service (KMS) key that Amazon SageMaker uses to
10608
- * encrypt data on the storage volume attached to the ML compute instance(s) that run the
10609
- * model monitoring job.</p>
10610
- */
10611
- VolumeKmsKeyId?: string;
10612
- }
10613
- /**
10614
- * @public
10615
- * <p>Identifies the resources to deploy for a monitoring job.</p>
10616
- */
10617
- export interface MonitoringResources {
10618
- /**
10619
- * @public
10620
- * <p>The configuration for the cluster resources used to run the processing job.</p>
10621
- */
10622
- ClusterConfig: MonitoringClusterConfig | undefined;
10623
- }