@aws-sdk/client-sagemaker 3.348.0 → 3.351.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.
- package/dist-cjs/models/models_0.js +2 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-types/commands/AddTagsCommand.d.ts +2 -1
- package/dist-types/commands/CreateCompilationJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateEndpointCommand.d.ts +8 -8
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +7 -5
- package/dist-types/commands/CreatePresignedNotebookInstanceUrlCommand.d.ts +2 -3
- package/dist-types/commands/DescribeCompilationJobCommand.d.ts +1 -1
- package/dist-types/commands/ListCompilationJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +2 -2
- package/dist-types/commands/UpdateEndpointCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +52 -49
- package/dist-types/models/models_1.d.ts +69 -68
- package/dist-types/models/models_2.d.ts +64 -66
- package/dist-types/models/models_3.d.ts +31 -13
- package/dist-types/models/models_4.d.ts +16 -14
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +4 -4
|
@@ -112,7 +112,7 @@ export interface CreateEndpointInput {
|
|
|
112
112
|
/**
|
|
113
113
|
* <p>The name of the endpoint.The name must be unique within an Amazon Web Services
|
|
114
114
|
* Region in your Amazon Web Services account. The name is case-insensitive in
|
|
115
|
-
*
|
|
115
|
+
* <code>CreateEndpoint</code>, but the case is preserved and must be matched in <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpoint.html">InvokeEndpoint</a>.</p>
|
|
116
116
|
*/
|
|
117
117
|
EndpointName: string | undefined;
|
|
118
118
|
/**
|
|
@@ -300,12 +300,10 @@ export interface ProductionVariantServerlessConfig {
|
|
|
300
300
|
}
|
|
301
301
|
/**
|
|
302
302
|
* @public
|
|
303
|
-
* <p>
|
|
304
|
-
* Identifies a model that you want to host and the resources chosen to deploy for
|
|
303
|
+
* <p> Identifies a model that you want to host and the resources chosen to deploy for
|
|
305
304
|
* hosting it. If you are deploying multiple models, tell SageMaker how to distribute traffic
|
|
306
305
|
* among the models by specifying variant weights. For more information on production
|
|
307
|
-
* variants, check <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-ab-testing.html">
|
|
308
|
-
* Production variants</a>.
|
|
306
|
+
* variants, check <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-ab-testing.html"> Production variants</a>.
|
|
309
307
|
* </p>
|
|
310
308
|
*/
|
|
311
309
|
export interface ProductionVariant {
|
|
@@ -337,8 +335,8 @@ export interface ProductionVariant {
|
|
|
337
335
|
/**
|
|
338
336
|
* <p>The size of the Elastic Inference (EI) instance to use for the production variant. EI
|
|
339
337
|
* instances provide on-demand GPU computing for inference. For more information, see
|
|
340
|
-
*
|
|
341
|
-
*
|
|
338
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html">Using Elastic
|
|
339
|
+
* Inference in Amazon SageMaker</a>.</p>
|
|
342
340
|
*/
|
|
343
341
|
AcceleratorType?: ProductionVariantAcceleratorType | string;
|
|
344
342
|
/**
|
|
@@ -368,13 +366,11 @@ export interface ProductionVariant {
|
|
|
368
366
|
*/
|
|
369
367
|
ContainerStartupHealthCheckTimeoutInSeconds?: number;
|
|
370
368
|
/**
|
|
371
|
-
* <p>
|
|
372
|
-
* You can use this parameter to turn on native Amazon Web Services Systems Manager (SSM)
|
|
369
|
+
* <p> You can use this parameter to turn on native Amazon Web Services Systems Manager (SSM)
|
|
373
370
|
* access for a production variant behind an endpoint. By default, SSM access is disabled
|
|
374
371
|
* for all production variants behind an endpoint. You can turn on or turn off SSM access
|
|
375
372
|
* for a production variant behind an existing endpoint by creating a new endpoint
|
|
376
|
-
* configuration and calling <code>UpdateEndpoint</code>.
|
|
377
|
-
* </p>
|
|
373
|
+
* configuration and calling <code>UpdateEndpoint</code>. </p>
|
|
378
374
|
*/
|
|
379
375
|
EnableSSMAccess?: boolean;
|
|
380
376
|
}
|
|
@@ -1796,22 +1792,23 @@ export interface IntegerParameterRange {
|
|
|
1796
1792
|
*/
|
|
1797
1793
|
export interface ParameterRanges {
|
|
1798
1794
|
/**
|
|
1799
|
-
* <p>The array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_IntegerParameterRange.html">IntegerParameterRange</a> objects that specify ranges of
|
|
1800
|
-
*
|
|
1795
|
+
* <p>The array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_IntegerParameterRange.html">IntegerParameterRange</a> objects that specify ranges of integer
|
|
1796
|
+
* hyperparameters that a hyperparameter tuning job searches.</p>
|
|
1801
1797
|
*/
|
|
1802
1798
|
IntegerParameterRanges?: IntegerParameterRange[];
|
|
1803
1799
|
/**
|
|
1804
|
-
* <p>The array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ContinuousParameterRange.html">ContinuousParameterRange</a> objects that specify ranges of
|
|
1805
|
-
*
|
|
1800
|
+
* <p>The array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ContinuousParameterRange.html">ContinuousParameterRange</a> objects that specify ranges of continuous
|
|
1801
|
+
* hyperparameters that a hyperparameter tuning job searches.</p>
|
|
1806
1802
|
*/
|
|
1807
1803
|
ContinuousParameterRanges?: ContinuousParameterRange[];
|
|
1808
1804
|
/**
|
|
1809
|
-
* <p>The array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CategoricalParameterRange.html">CategoricalParameterRange</a> objects that specify ranges
|
|
1810
|
-
*
|
|
1805
|
+
* <p>The array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CategoricalParameterRange.html">CategoricalParameterRange</a> objects that specify ranges of categorical
|
|
1806
|
+
* hyperparameters that a hyperparameter tuning job searches.</p>
|
|
1811
1807
|
*/
|
|
1812
1808
|
CategoricalParameterRanges?: CategoricalParameterRange[];
|
|
1813
1809
|
/**
|
|
1814
|
-
* <p>A list containing hyperparameter names and example values to be used by Autotune to
|
|
1810
|
+
* <p>A list containing hyperparameter names and example values to be used by Autotune to
|
|
1811
|
+
* determine optimal ranges for your tuning job.</p>
|
|
1815
1812
|
*/
|
|
1816
1813
|
AutoParameters?: AutoParameter[];
|
|
1817
1814
|
}
|
|
@@ -1979,20 +1976,21 @@ export interface HyperParameterTuningJobConfig {
|
|
|
1979
1976
|
*/
|
|
1980
1977
|
StrategyConfig?: HyperParameterTuningJobStrategyConfig;
|
|
1981
1978
|
/**
|
|
1982
|
-
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobObjective.html">HyperParameterTuningJobObjective</a> specifies the objective metric
|
|
1983
|
-
*
|
|
1979
|
+
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobObjective.html">HyperParameterTuningJobObjective</a> specifies the objective metric used to
|
|
1980
|
+
* evaluate the performance of training jobs launched by this tuning job.</p>
|
|
1984
1981
|
*/
|
|
1985
1982
|
HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
|
|
1986
1983
|
/**
|
|
1987
|
-
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ResourceLimits.html">ResourceLimits</a>
|
|
1988
|
-
* training and parallel training jobs that can
|
|
1989
|
-
* job.</p>
|
|
1984
|
+
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ResourceLimits.html">ResourceLimits</a>
|
|
1985
|
+
* object that specifies the maximum number of training and parallel training jobs that can
|
|
1986
|
+
* be used for this hyperparameter tuning job.</p>
|
|
1990
1987
|
*/
|
|
1991
1988
|
ResourceLimits: ResourceLimits | undefined;
|
|
1992
1989
|
/**
|
|
1993
|
-
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ParameterRanges.html">ParameterRanges</a>
|
|
1994
|
-
* hyperparameters that this tuning job searches over
|
|
1995
|
-
* the highest model performance against your chosen
|
|
1990
|
+
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ParameterRanges.html">ParameterRanges</a>
|
|
1991
|
+
* object that specifies the ranges of hyperparameters that this tuning job searches over
|
|
1992
|
+
* to find the optimal configuration for the highest model performance against your chosen
|
|
1993
|
+
* objective metric. </p>
|
|
1996
1994
|
*/
|
|
1997
1995
|
ParameterRanges?: ParameterRanges;
|
|
1998
1996
|
/**
|
|
@@ -2041,7 +2039,7 @@ export interface HyperParameterAlgorithmSpecification {
|
|
|
2041
2039
|
* Provided by Amazon SageMaker: Common Parameters</a>. SageMaker supports both
|
|
2042
2040
|
* <code>registry/repository[:tag]</code> and <code>registry/repository[@digest]</code>
|
|
2043
2041
|
* image path formats. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
2044
|
-
*
|
|
2042
|
+
* Amazon SageMaker</a>.</p>
|
|
2045
2043
|
*/
|
|
2046
2044
|
TrainingImage?: string;
|
|
2047
2045
|
/**
|
|
@@ -2122,8 +2120,8 @@ export interface HyperParameterTuningInstanceConfig {
|
|
|
2122
2120
|
InstanceType: TrainingInstanceType | string | undefined;
|
|
2123
2121
|
/**
|
|
2124
2122
|
* <p>The number of instances of the type specified by <code>InstanceType</code>. Choose an
|
|
2125
|
-
* instance count larger than 1 for distributed training algorithms. See <a href="https://docs.aws.amazon.com/data-parallel-use-api.html">
|
|
2126
|
-
*
|
|
2123
|
+
* instance count larger than 1 for distributed training algorithms. See <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/data-parallel-use-api.html">Step 2:
|
|
2124
|
+
* Launch a SageMaker Distributed Training Job Using the SageMaker Python SDK</a> for more information.</p>
|
|
2127
2125
|
*/
|
|
2128
2126
|
InstanceCount: number | undefined;
|
|
2129
2127
|
/**
|
|
@@ -2151,7 +2149,7 @@ export interface HyperParameterTuningInstanceConfig {
|
|
|
2151
2149
|
*/
|
|
2152
2150
|
export interface HyperParameterTuningResourceConfig {
|
|
2153
2151
|
/**
|
|
2154
|
-
* <p>The instance type used to run hyperparameter optimization tuning jobs. See <a href="https://docs.aws.amazon.com/notebooks-available-instance-types.html"> descriptions of
|
|
2152
|
+
* <p>The instance type used to run hyperparameter optimization tuning jobs. See <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html"> descriptions of
|
|
2155
2153
|
* instance types</a> for more information.</p>
|
|
2156
2154
|
*/
|
|
2157
2155
|
InstanceType?: TrainingInstanceType | string;
|
|
@@ -2286,17 +2284,17 @@ export interface HyperParameterTrainingJobDefinition {
|
|
|
2286
2284
|
*/
|
|
2287
2285
|
RoleArn: string | undefined;
|
|
2288
2286
|
/**
|
|
2289
|
-
* <p>An array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Channel.html">Channel</a> objects that
|
|
2287
|
+
* <p>An array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Channel.html">Channel</a> objects that
|
|
2288
|
+
* specify
|
|
2290
2289
|
* the
|
|
2291
2290
|
* input for the training jobs that the tuning job launches.</p>
|
|
2292
2291
|
*/
|
|
2293
2292
|
InputDataConfig?: Channel[];
|
|
2294
2293
|
/**
|
|
2295
|
-
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want the
|
|
2296
|
-
*
|
|
2297
|
-
*
|
|
2298
|
-
*
|
|
2299
|
-
* Training Jobs by Using an Amazon Virtual Private Cloud</a>.</p>
|
|
2294
|
+
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want the training jobs
|
|
2295
|
+
* that this hyperparameter tuning job launches to connect to. Control access to and from
|
|
2296
|
+
* your training container by configuring the VPC. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html">Protect Training Jobs
|
|
2297
|
+
* by Using an Amazon Virtual Private Cloud</a>.</p>
|
|
2300
2298
|
*/
|
|
2301
2299
|
VpcConfig?: VpcConfig;
|
|
2302
2300
|
/**
|
|
@@ -2373,8 +2371,7 @@ export interface HyperParameterTrainingJobDefinition {
|
|
|
2373
2371
|
HyperParameterTuningResourceConfig?: HyperParameterTuningResourceConfig;
|
|
2374
2372
|
/**
|
|
2375
2373
|
* <p>An environment variable that you can pass into the SageMaker <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html">CreateTrainingJob</a> API. You can use an existing <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html#sagemaker-CreateTrainingJob-request-Environment">environment variable from the training container</a> or use your own. See
|
|
2376
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-define-metrics-variables.html">Define metrics
|
|
2377
|
-
* and variables</a> for more information.</p>
|
|
2374
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-define-metrics-variables.html">Define metrics and variables</a> for more information.</p>
|
|
2378
2375
|
* <note>
|
|
2379
2376
|
* <p>The maximum number of items specified for <code>Map Entries</code> refers to the
|
|
2380
2377
|
* maximum number of environment variables for each <code>TrainingJobDefinition</code>
|
|
@@ -2481,23 +2478,23 @@ export interface CreateHyperParameterTuningJobRequest {
|
|
|
2481
2478
|
*/
|
|
2482
2479
|
HyperParameterTuningJobName: string | undefined;
|
|
2483
2480
|
/**
|
|
2484
|
-
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html">HyperParameterTuningJobConfig</a> object that describes the tuning
|
|
2485
|
-
*
|
|
2481
|
+
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html">HyperParameterTuningJobConfig</a> object that describes the tuning job,
|
|
2482
|
+
* including the search strategy, the objective metric used to evaluate training jobs,
|
|
2486
2483
|
* ranges of parameters to search, and resource limits for the tuning job. For more
|
|
2487
2484
|
* information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-how-it-works.html">How
|
|
2488
2485
|
* Hyperparameter Tuning Works</a>.</p>
|
|
2489
2486
|
*/
|
|
2490
2487
|
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
|
|
2491
2488
|
/**
|
|
2492
|
-
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html">HyperParameterTrainingJobDefinition</a> object that describes the
|
|
2493
|
-
*
|
|
2494
|
-
*
|
|
2489
|
+
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html">HyperParameterTrainingJobDefinition</a> object that describes the training jobs
|
|
2490
|
+
* that this tuning job launches, including static hyperparameters, input data
|
|
2491
|
+
* configuration, output data configuration, resource configuration, and stopping
|
|
2495
2492
|
* condition.</p>
|
|
2496
2493
|
*/
|
|
2497
2494
|
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
2498
2495
|
/**
|
|
2499
|
-
* <p>A list of the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html">HyperParameterTrainingJobDefinition</a> objects launched
|
|
2500
|
-
*
|
|
2496
|
+
* <p>A list of the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html">HyperParameterTrainingJobDefinition</a> objects launched for this tuning
|
|
2497
|
+
* job.</p>
|
|
2501
2498
|
*/
|
|
2502
2499
|
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
2503
2500
|
/**
|
|
@@ -2527,24 +2524,26 @@ export interface CreateHyperParameterTuningJobRequest {
|
|
|
2527
2524
|
*/
|
|
2528
2525
|
Tags?: Tag[];
|
|
2529
2526
|
/**
|
|
2530
|
-
* <p>Configures SageMaker Automatic model tuning (AMT) to automatically find optimal
|
|
2531
|
-
* for the following fields:</p>
|
|
2527
|
+
* <p>Configures SageMaker Automatic model tuning (AMT) to automatically find optimal
|
|
2528
|
+
* parameters for the following fields:</p>
|
|
2532
2529
|
* <ul>
|
|
2533
2530
|
* <li>
|
|
2534
2531
|
* <p>
|
|
2535
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html#sagemaker-Type-HyperParameterTuningJobConfig-ParameterRanges">ParameterRanges</a>: The names and ranges of parameters that a
|
|
2536
|
-
* tuning job can optimize.</p>
|
|
2532
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html#sagemaker-Type-HyperParameterTuningJobConfig-ParameterRanges">ParameterRanges</a>: The names and ranges of parameters that a
|
|
2533
|
+
* hyperparameter tuning job can optimize.</p>
|
|
2537
2534
|
* </li>
|
|
2538
2535
|
* <li>
|
|
2539
2536
|
* <p>
|
|
2540
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ResourceLimits.html">ResourceLimits</a>: The maximum resources that can be used for a
|
|
2541
|
-
* These resources include the maximum number of training jobs, the
|
|
2542
|
-
* tuning job, and the maximum number of training jobs to run
|
|
2537
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ResourceLimits.html">ResourceLimits</a>: The maximum resources that can be used for a
|
|
2538
|
+
* training job. These resources include the maximum number of training jobs, the
|
|
2539
|
+
* maximum runtime of a tuning job, and the maximum number of training jobs to run
|
|
2540
|
+
* at the same time.</p>
|
|
2543
2541
|
* </li>
|
|
2544
2542
|
* <li>
|
|
2545
2543
|
* <p>
|
|
2546
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html#sagemaker-Type-HyperParameterTuningJobConfig-TrainingJobEarlyStoppingType">TrainingJobEarlyStoppingType</a>: A flag that specifies whether or not
|
|
2547
|
-
* early stopping for training jobs launched by a hyperparameter tuning
|
|
2544
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html#sagemaker-Type-HyperParameterTuningJobConfig-TrainingJobEarlyStoppingType">TrainingJobEarlyStoppingType</a>: A flag that specifies whether or not
|
|
2545
|
+
* to use early stopping for training jobs launched by a hyperparameter tuning
|
|
2546
|
+
* job.</p>
|
|
2548
2547
|
* </li>
|
|
2549
2548
|
* <li>
|
|
2550
2549
|
* <p>
|
|
@@ -2552,13 +2551,14 @@ export interface CreateHyperParameterTuningJobRequest {
|
|
|
2552
2551
|
* </li>
|
|
2553
2552
|
* <li>
|
|
2554
2553
|
* <p>
|
|
2555
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html">Strategy</a>: Specifies how hyperparameter tuning chooses the
|
|
2556
|
-
* hyperparameter values to use for the training jobs that it
|
|
2554
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html">Strategy</a>: Specifies how hyperparameter tuning chooses the
|
|
2555
|
+
* combinations of hyperparameter values to use for the training jobs that it
|
|
2556
|
+
* launches.</p>
|
|
2557
2557
|
* </li>
|
|
2558
2558
|
* <li>
|
|
2559
2559
|
* <p>
|
|
2560
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ConvergenceDetected.html">ConvergenceDetected</a>: A flag to indicate that Automatic model tuning
|
|
2561
|
-
* convergence.</p>
|
|
2560
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ConvergenceDetected.html">ConvergenceDetected</a>: A flag to indicate that Automatic model tuning
|
|
2561
|
+
* (AMT) has detected model convergence.</p>
|
|
2562
2562
|
* </li>
|
|
2563
2563
|
* </ul>
|
|
2564
2564
|
*/
|
|
@@ -5693,8 +5693,8 @@ export interface CreateModelInput {
|
|
|
5693
5693
|
*/
|
|
5694
5694
|
Tags?: Tag[];
|
|
5695
5695
|
/**
|
|
5696
|
-
* <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your model
|
|
5697
|
-
* to
|
|
5696
|
+
* <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your model to connect
|
|
5697
|
+
* to. Control access to and from your model container by configuring the VPC.
|
|
5698
5698
|
* <code>VpcConfig</code> is used in hosting services and in batch transform. For more
|
|
5699
5699
|
* 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/batch-vpc.html">Protect Data in Batch
|
|
5700
5700
|
* Transform Jobs by Using an Amazon Virtual Private Cloud</a>.</p>
|
|
@@ -6241,8 +6241,8 @@ export interface SourceAlgorithm {
|
|
|
6241
6241
|
* This path must point to a single <code>gzip</code> compressed tar archive
|
|
6242
6242
|
* (<code>.tar.gz</code> suffix).</p>
|
|
6243
6243
|
* <note>
|
|
6244
|
-
* <p>The model artifacts must be in an S3 bucket that is in the same Amazon Web Services
|
|
6245
|
-
* algorithm.</p>
|
|
6244
|
+
* <p>The model artifacts must be in an S3 bucket that is in the same Amazon Web Services
|
|
6245
|
+
* region as the algorithm.</p>
|
|
6246
6246
|
* </note>
|
|
6247
6247
|
*/
|
|
6248
6248
|
ModelDataUrl?: string;
|
|
@@ -8058,8 +8058,8 @@ export interface CreateTrainingJobRequest {
|
|
|
8058
8058
|
* <p>The registry path of the Docker image that contains the training algorithm and
|
|
8059
8059
|
* algorithm-specific metadata, including the input mode. For more information about
|
|
8060
8060
|
* algorithms provided by SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html">Algorithms</a>. For information about
|
|
8061
|
-
* providing your own algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
8062
|
-
*
|
|
8061
|
+
* providing your own algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
8062
|
+
* Amazon SageMaker</a>. </p>
|
|
8063
8063
|
*/
|
|
8064
8064
|
AlgorithmSpecification: AlgorithmSpecification | undefined;
|
|
8065
8065
|
/**
|
|
@@ -8089,7 +8089,8 @@ export interface CreateTrainingJobRequest {
|
|
|
8089
8089
|
* data files from an S3 bucket to a local directory in the Docker container, or makes it
|
|
8090
8090
|
* available as input streams. For example, if you specify an EFS location, input data
|
|
8091
8091
|
* files are available as input streams. They do not need to be downloaded.</p>
|
|
8092
|
-
* <p>Your input must be in the same Amazon Web Services region as your training
|
|
8092
|
+
* <p>Your input must be in the same Amazon Web Services region as your training
|
|
8093
|
+
* job.</p>
|
|
8093
8094
|
*/
|
|
8094
8095
|
InputDataConfig?: Channel[];
|
|
8095
8096
|
/**
|
|
@@ -8108,9 +8109,9 @@ export interface CreateTrainingJobRequest {
|
|
|
8108
8109
|
*/
|
|
8109
8110
|
ResourceConfig: ResourceConfig | undefined;
|
|
8110
8111
|
/**
|
|
8111
|
-
* <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your
|
|
8112
|
-
*
|
|
8113
|
-
*
|
|
8112
|
+
* <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your training job to
|
|
8113
|
+
* connect to. Control access to and from your training container by configuring the VPC.
|
|
8114
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html">Protect Training Jobs by Using an Amazon
|
|
8114
8115
|
* Virtual Private Cloud</a>.</p>
|
|
8115
8116
|
*/
|
|
8116
8117
|
VpcConfig?: VpcConfig;
|