You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-sagemaker): Amazon SageMaker Automatic Model Tuning now supports specifying multiple alternate EC2 instance types to make tuning jobs more robust when the preferred instance type is not available due to insufficient capacity.
Copy file name to clipboardExpand all lines: clients/client-sagemaker/src/SageMaker.ts
+28-29Lines changed: 28 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -1291,8 +1291,7 @@ export class SageMaker extends SageMakerClient {
1291
1291
* jobs, models, labeling jobs, work teams, endpoint configurations, and
1292
1292
* endpoints.</p>
1293
1293
* <p>Each tag consists of a key and an optional value. Tag keys must be unique per
1294
-
* resource. For more information about tags, see For more information, see <a href="https://aws.amazon.com/answers/account-management/aws-tagging-strategies/">Amazon Web Services
1295
-
* Tagging Strategies</a>.</p>
1294
+
* resource. For more information about tags, see For more information, see <a href="https://aws.amazon.com/answers/account-management/aws-tagging-strategies/">Amazon Web Services Tagging Strategies</a>.</p>
1296
1295
* <note>
1297
1296
* <p>Tags that you add to a hyperparameter tuning job by calling this API are also
1298
1297
* added to any training jobs that the hyperparameter tuning job launches after you
@@ -1435,8 +1434,7 @@ export class SageMaker extends SageMakerClient {
1435
1434
}
1436
1435
1437
1436
/**
1438
-
* <p>Create a machine learning algorithm that you can use in SageMaker and list in the Amazon Web Services
1439
-
* Marketplace.</p>
1437
+
* <p>Create a machine learning algorithm that you can use in SageMaker and list in the Amazon Web Services Marketplace.</p>
1440
1438
*/
1441
1439
publiccreateAlgorithm(
1442
1440
args: CreateAlgorithmCommandInput,
@@ -1607,8 +1605,8 @@ export class SageMaker extends SageMakerClient {
1607
1605
* notebooks you create. The Git repository is a resource in your SageMaker account, so it can
1608
1606
* be associated with more than one notebook instance, and it persists independently from
1609
1607
* the lifecycle of any notebook instances it is associated with.</p>
1610
-
* <p>The repository can be hosted either in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a> or in any
1611
-
* other Git repository.</p>
1608
+
* <p>The repository can be hosted either in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
1609
+
* or in any other Git repository.</p>
1612
1610
*/
1613
1611
publiccreateCodeRepository(
1614
1612
args: CreateCodeRepositoryCommandInput,
@@ -1988,7 +1986,8 @@ export class SageMaker extends SageMakerClient {
1988
1986
* operations are being performed on the endpoint. To update an endpoint, you must
1989
1987
* create a new <code>EndpointConfig</code>.</p>
1990
1988
* </note>
1991
-
* <p>The endpoint name must be unique within an Amazon Web Services Region in your Amazon Web Services account. </p>
1989
+
* <p>The endpoint name must be unique within an Amazon Web Services Region in your
1990
+
* Amazon Web Services account. </p>
1992
1991
* <p>When it receives the request, SageMaker creates the endpoint, launches the resources (ML
1993
1992
* compute instances), and deploys the model(s) on them. </p>
1994
1993
*
@@ -2010,11 +2009,12 @@ export class SageMaker extends SageMakerClient {
2010
2009
* check the status of an endpoint, use the <a>DescribeEndpoint</a>
2011
2010
* API.</p>
2012
2011
* <p>If any of the models hosted at this endpoint get model data from an Amazon S3 location,
2013
-
* SageMaker uses Amazon Web Services Security Token Service to download model artifacts from the S3 path you
2014
-
* provided. Amazon Web Services STS is activated in your IAM user account by default. If you previously
2015
-
* deactivated Amazon Web Services STS for a region, you need to reactivate Amazon Web Services STS for that region. For
2016
-
* more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html">Activating and
2017
-
* Deactivating Amazon Web Services STS in an Amazon Web Services Region</a> in the <i>Amazon Web Services Identity and Access Management User
2012
+
* SageMaker uses Amazon Web Services Security Token Service to download model artifacts from the
2013
+
* S3 path you provided. Amazon Web Services STS is activated in your IAM user account by
2014
+
* default. If you previously deactivated Amazon Web Services STS for a region, you need to
2015
+
* reactivate Amazon Web Services STS for that region. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html">Activating and
2016
+
* Deactivating Amazon Web Services STS in an Amazon Web Services Region</a> in the
2017
+
* <i>Amazon Web Services Identity and Access Management User
2018
2018
* Guide</i>.</p>
2019
2019
* <note>
2020
2020
* <p> To add the IAM role policies for using this API operation, go to the <a href="https://console.aws.amazon.com/iam/">IAM console</a>, and choose
@@ -2509,17 +2509,15 @@ export class SageMaker extends SageMakerClient {
2509
2509
* <code>CreateEndpoint</code> API. SageMaker then deploys all of the containers that you
2510
2510
* defined for the model in the hosting environment. </p>
2511
2511
* <p>For an example that calls this method when deploying a model to SageMaker hosting services,
2512
-
* see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html#realtime-endpoints-deployment-create-model">Create a Model (Amazon Web Services SDK for Python (Boto
2513
-
* 3)).</a>
2512
+
* see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html#realtime-endpoints-deployment-create-model">Create a Model (Amazon Web Services SDK for Python (Boto 3)).</a>
2514
2513
* </p>
2515
2514
* <p>To run a batch transform using your model, you start a job with the
2516
2515
* <code>CreateTransformJob</code> API. SageMaker uses your model and your dataset to get
2517
2516
* inferences which are then saved to a specified S3 location.</p>
2518
2517
* <p>In the request, you also provide an IAM role that SageMaker can assume to access model
2519
2518
* artifacts and docker image for deployment on ML compute hosting instances or for batch
2520
2519
* transform jobs. In addition, you also use the IAM role to manage permissions the
2521
-
* inference code needs. For example, if the inference code access any other Amazon Web Services resources,
2522
-
* you grant necessary permissions via this role.</p>
2520
+
* inference code needs. For example, if the inference code access any other Amazon Web Services resources, you grant necessary permissions via this role.</p>
* jobs, models, labeling jobs, work teams, endpoint configurations, and
31
31
* endpoints.</p>
32
32
* <p>Each tag consists of a key and an optional value. Tag keys must be unique per
33
-
* resource. For more information about tags, see For more information, see <a href="https://aws.amazon.com/answers/account-management/aws-tagging-strategies/">Amazon Web Services
34
-
* Tagging Strategies</a>.</p>
33
+
* resource. For more information about tags, see For more information, see <a href="https://aws.amazon.com/answers/account-management/aws-tagging-strategies/">Amazon Web Services Tagging Strategies</a>.</p>
35
34
* <note>
36
35
* <p>Tags that you add to a hyperparameter tuning job by calling this API are also
37
36
* added to any training jobs that the hyperparameter tuning job launches after you
* notebooks you create. The Git repository is a resource in your SageMaker account, so it can
34
34
* be associated with more than one notebook instance, and it persists independently from
35
35
* the lifecycle of any notebook instances it is associated with.</p>
36
-
* <p>The repository can be hosted either in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a> or in any
37
-
* other Git repository.</p>
36
+
* <p>The repository can be hosted either in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
37
+
* or in any other Git repository.</p>
38
38
* @example
39
39
* Use a bare-bones client and the command you need to make an API call.
* check the status of an endpoint, use the <a>DescribeEndpoint</a>
64
65
* API.</p>
65
66
* <p>If any of the models hosted at this endpoint get model data from an Amazon S3 location,
66
-
* SageMaker uses Amazon Web Services Security Token Service to download model artifacts from the S3 path you
67
-
* provided. Amazon Web Services STS is activated in your IAM user account by default. If you previously
68
-
* deactivated Amazon Web Services STS for a region, you need to reactivate Amazon Web Services STS for that region. For
69
-
* more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html">Activating and
70
-
* Deactivating Amazon Web Services STS in an Amazon Web Services Region</a> in the <i>Amazon Web Services Identity and Access Management User
67
+
* SageMaker uses Amazon Web Services Security Token Service to download model artifacts from the
68
+
* S3 path you provided. Amazon Web Services STS is activated in your IAM user account by
69
+
* default. If you previously deactivated Amazon Web Services STS for a region, you need to
70
+
* reactivate Amazon Web Services STS for that region. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html">Activating and
71
+
* Deactivating Amazon Web Services STS in an Amazon Web Services Region</a> in the
72
+
* <i>Amazon Web Services Identity and Access Management User
71
73
* Guide</i>.</p>
72
74
* <note>
73
75
* <p> To add the IAM role policies for using this API operation, go to the <a href="https://console.aws.amazon.com/iam/">IAM console</a>, and choose
* <code>CreateEndpoint</code> API. SageMaker then deploys all of the containers that you
40
40
* defined for the model in the hosting environment. </p>
41
41
* <p>For an example that calls this method when deploying a model to SageMaker hosting services,
42
-
* see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html#realtime-endpoints-deployment-create-model">Create a Model (Amazon Web Services SDK for Python (Boto
43
-
* 3)).</a>
42
+
* see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html#realtime-endpoints-deployment-create-model">Create a Model (Amazon Web Services SDK for Python (Boto 3)).</a>
44
43
* </p>
45
44
* <p>To run a batch transform using your model, you start a job with the
46
45
* <code>CreateTransformJob</code> API. SageMaker uses your model and your dataset to get
47
46
* inferences which are then saved to a specified S3 location.</p>
48
47
* <p>In the request, you also provide an IAM role that SageMaker can assume to access model
49
48
* artifacts and docker image for deployment on ML compute hosting instances or for batch
50
49
* transform jobs. In addition, you also use the IAM role to manage permissions the
51
-
* inference code needs. For example, if the inference code access any other Amazon Web Services resources,
52
-
* you grant necessary permissions via this role.</p>
50
+
* inference code needs. For example, if the inference code access any other Amazon Web Services resources, you grant necessary permissions via this role.</p>
53
51
* @example
54
52
* Use a bare-bones client and the command you need to make an API call.
0 commit comments