@aws-sdk/client-sagemaker 3.678.0 → 3.682.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/README.md +1 -1
- package/dist-cjs/index.js +4 -1
- package/dist-es/models/models_0.js +3 -0
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +3 -3
- package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +6 -6
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +8 -8
- package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +24 -23
- package/dist-types/commands/CreateNotebookInstanceLifecycleConfigCommand.d.ts +9 -9
- package/dist-types/commands/CreatePresignedNotebookInstanceUrlCommand.d.ts +9 -8
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +2 -2
- package/dist-types/commands/DeleteNotebookInstanceCommand.d.ts +4 -5
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +3 -3
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +8 -8
- package/dist-types/commands/DescribeNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +2 -2
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +2 -2
- package/dist-types/commands/SearchCommand.d.ts +8 -8
- package/dist-types/commands/StartNotebookInstanceCommand.d.ts +3 -3
- package/dist-types/commands/StopNotebookInstanceCommand.d.ts +3 -4
- package/dist-types/models/models_0.d.ts +10 -9
- package/dist-types/models/models_1.d.ts +89 -98
- package/dist-types/models/models_2.d.ts +20 -16
- package/dist-types/models/models_3.d.ts +25 -24
- package/dist-types/models/models_4.d.ts +52 -51
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/package.json +14 -14
|
@@ -355,7 +355,8 @@ export interface CreateClusterRequest {
|
|
|
355
355
|
/**
|
|
356
356
|
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
357
357
|
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
358
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
358
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
359
|
+
* Resources in your Amazon VPC</a>. </p>
|
|
359
360
|
* @public
|
|
360
361
|
*/
|
|
361
362
|
VpcConfig?: VpcConfig;
|
|
@@ -400,20 +401,20 @@ export interface CreateClusterResponse {
|
|
|
400
401
|
export interface CreateCodeRepositoryInput {
|
|
401
402
|
/**
|
|
402
403
|
* <p>The name of the Git repository. The name must have 1 to 63 characters. Valid
|
|
403
|
-
*
|
|
404
|
+
* characters are a-z, A-Z, 0-9, and - (hyphen).</p>
|
|
404
405
|
* @public
|
|
405
406
|
*/
|
|
406
407
|
CodeRepositoryName: string | undefined;
|
|
407
408
|
/**
|
|
408
409
|
* <p>Specifies details about the repository, including the URL where the repository is
|
|
409
|
-
*
|
|
410
|
+
* located, the default branch, and credentials to use to access the repository.</p>
|
|
410
411
|
* @public
|
|
411
412
|
*/
|
|
412
413
|
GitConfig: GitConfig | undefined;
|
|
413
414
|
/**
|
|
414
415
|
* <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
|
|
415
|
-
*
|
|
416
|
-
*
|
|
416
|
+
* resources in different ways, for example, by purpose, owner, or environment. For more
|
|
417
|
+
* information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
|
|
417
418
|
* @public
|
|
418
419
|
*/
|
|
419
420
|
Tags?: Tag[];
|
|
@@ -1114,34 +1115,6 @@ export interface OutputConfig {
|
|
|
1114
1115
|
* </li>
|
|
1115
1116
|
* </ul>
|
|
1116
1117
|
* </li>
|
|
1117
|
-
* <li>
|
|
1118
|
-
* <p>
|
|
1119
|
-
* <code>EIA</code>: Compilation for the Elastic Inference Accelerator supports
|
|
1120
|
-
* the following compiler options:</p>
|
|
1121
|
-
* <ul>
|
|
1122
|
-
* <li>
|
|
1123
|
-
* <p>
|
|
1124
|
-
* <code>precision_mode</code>: Specifies the precision of compiled
|
|
1125
|
-
* artifacts. Supported values are <code>"FP16"</code> and
|
|
1126
|
-
* <code>"FP32"</code>. Default is <code>"FP32"</code>.</p>
|
|
1127
|
-
* </li>
|
|
1128
|
-
* <li>
|
|
1129
|
-
* <p>
|
|
1130
|
-
* <code>signature_def_key</code>: Specifies the signature to use for
|
|
1131
|
-
* models in SavedModel format. Defaults is TensorFlow's default signature
|
|
1132
|
-
* def key.</p>
|
|
1133
|
-
* </li>
|
|
1134
|
-
* <li>
|
|
1135
|
-
* <p>
|
|
1136
|
-
* <code>output_names</code>: Specifies a list of output tensor names for
|
|
1137
|
-
* models in FrozenGraph format. Set at most one API field, either:
|
|
1138
|
-
* <code>signature_def_key</code> or <code>output_names</code>.</p>
|
|
1139
|
-
* </li>
|
|
1140
|
-
* </ul>
|
|
1141
|
-
* <p>For example: <code>\{"precision_mode": "FP32", "output_names":
|
|
1142
|
-
* ["output:0"]\}</code>
|
|
1143
|
-
* </p>
|
|
1144
|
-
* </li>
|
|
1145
1118
|
* </ul>
|
|
1146
1119
|
* @public
|
|
1147
1120
|
*/
|
|
@@ -1712,7 +1685,8 @@ export interface MonitoringNetworkConfig {
|
|
|
1712
1685
|
/**
|
|
1713
1686
|
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
1714
1687
|
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
1715
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
1688
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
1689
|
+
* Resources in your Amazon VPC</a>. </p>
|
|
1716
1690
|
* @public
|
|
1717
1691
|
*/
|
|
1718
1692
|
VpcConfig?: VpcConfig;
|
|
@@ -1916,7 +1890,7 @@ export interface CreateDeviceFleetRequest {
|
|
|
1916
1890
|
}
|
|
1917
1891
|
/**
|
|
1918
1892
|
* <p>The settings for assigning a custom Amazon EFS file system to a user profile
|
|
1919
|
-
*
|
|
1893
|
+
* or space for an Amazon SageMaker Domain.</p>
|
|
1920
1894
|
* @public
|
|
1921
1895
|
*/
|
|
1922
1896
|
export interface EFSFileSystemConfig {
|
|
@@ -1927,14 +1901,14 @@ export interface EFSFileSystemConfig {
|
|
|
1927
1901
|
FileSystemId: string | undefined;
|
|
1928
1902
|
/**
|
|
1929
1903
|
* <p>The path to the file system directory that is accessible in Amazon SageMaker
|
|
1930
|
-
*
|
|
1904
|
+
* Studio. Permitted users can access only this directory and below.</p>
|
|
1931
1905
|
* @public
|
|
1932
1906
|
*/
|
|
1933
1907
|
FileSystemPath?: string;
|
|
1934
1908
|
}
|
|
1935
1909
|
/**
|
|
1936
1910
|
* <p>The settings for assigning a custom file system to a user profile or space for an
|
|
1937
|
-
*
|
|
1911
|
+
* Amazon SageMaker Domain. Permitted users can access this file system in Amazon SageMaker Studio.</p>
|
|
1938
1912
|
* @public
|
|
1939
1913
|
*/
|
|
1940
1914
|
export type CustomFileSystemConfig = CustomFileSystemConfig.EFSFileSystemConfigMember | CustomFileSystemConfig.$UnknownMember;
|
|
@@ -2143,7 +2117,8 @@ export interface DefaultSpaceStorageSettings {
|
|
|
2143
2117
|
DefaultEbsStorageSettings?: DefaultEbsStorageSettings;
|
|
2144
2118
|
}
|
|
2145
2119
|
/**
|
|
2146
|
-
* <p>
|
|
2120
|
+
* <p>The default settings for shared spaces that users create in the domain.</p>
|
|
2121
|
+
* <p>SageMaker applies these settings only to shared spaces. It doesn't apply them to private spaces.</p>
|
|
2147
2122
|
* @public
|
|
2148
2123
|
*/
|
|
2149
2124
|
export interface DefaultSpaceSettings {
|
|
@@ -2419,6 +2394,7 @@ export interface TensorBoardAppSettings {
|
|
|
2419
2394
|
export interface UserSettings {
|
|
2420
2395
|
/**
|
|
2421
2396
|
* <p>The execution role for the user.</p>
|
|
2397
|
+
* <p>SageMaker applies this setting only to private spaces that the user creates in the domain. SageMaker doesn't apply this setting to shared spaces.</p>
|
|
2422
2398
|
* @public
|
|
2423
2399
|
*/
|
|
2424
2400
|
ExecutionRole?: string;
|
|
@@ -2432,6 +2408,7 @@ export interface UserSettings {
|
|
|
2432
2408
|
* the domain.</p>
|
|
2433
2409
|
* <p>Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the
|
|
2434
2410
|
* maximum number shown.</p>
|
|
2411
|
+
* <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
|
|
2435
2412
|
* @public
|
|
2436
2413
|
*/
|
|
2437
2414
|
SecurityGroups?: string[];
|
|
@@ -2468,21 +2445,25 @@ export interface UserSettings {
|
|
|
2468
2445
|
RSessionAppSettings?: RSessionAppSettings;
|
|
2469
2446
|
/**
|
|
2470
2447
|
* <p>The Canvas app settings.</p>
|
|
2448
|
+
* <p>SageMaker applies these settings only to private spaces that SageMaker creates for the Canvas app.</p>
|
|
2471
2449
|
* @public
|
|
2472
2450
|
*/
|
|
2473
2451
|
CanvasAppSettings?: CanvasAppSettings;
|
|
2474
2452
|
/**
|
|
2475
2453
|
* <p>The Code Editor application settings.</p>
|
|
2454
|
+
* <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
|
|
2476
2455
|
* @public
|
|
2477
2456
|
*/
|
|
2478
2457
|
CodeEditorAppSettings?: CodeEditorAppSettings;
|
|
2479
2458
|
/**
|
|
2480
2459
|
* <p>The settings for the JupyterLab application.</p>
|
|
2460
|
+
* <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
|
|
2481
2461
|
* @public
|
|
2482
2462
|
*/
|
|
2483
2463
|
JupyterLabAppSettings?: JupyterLabAppSettings;
|
|
2484
2464
|
/**
|
|
2485
2465
|
* <p>The storage settings for a space.</p>
|
|
2466
|
+
* <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
|
|
2486
2467
|
* @public
|
|
2487
2468
|
*/
|
|
2488
2469
|
SpaceStorageSettings?: DefaultSpaceStorageSettings;
|
|
@@ -2512,12 +2493,14 @@ export interface UserSettings {
|
|
|
2512
2493
|
StudioWebPortal?: StudioWebPortal;
|
|
2513
2494
|
/**
|
|
2514
2495
|
* <p>Details about the POSIX identity that is used for file system operations.</p>
|
|
2496
|
+
* <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
|
|
2515
2497
|
* @public
|
|
2516
2498
|
*/
|
|
2517
2499
|
CustomPosixUserConfig?: CustomPosixUserConfig;
|
|
2518
2500
|
/**
|
|
2519
2501
|
* <p>The settings for assigning a custom file system to a user profile. Permitted users can
|
|
2520
|
-
*
|
|
2502
|
+
* access this file system in Amazon SageMaker Studio.</p>
|
|
2503
|
+
* <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
|
|
2521
2504
|
* @public
|
|
2522
2505
|
*/
|
|
2523
2506
|
CustomFileSystemConfigs?: CustomFileSystemConfig[];
|
|
@@ -2531,6 +2514,7 @@ export interface UserSettings {
|
|
|
2531
2514
|
* <p>Indicates whether auto-mounting of an EFS volume is supported for the user profile. The
|
|
2532
2515
|
* <code>DefaultAsDomain</code> value is only supported for user profiles. Do not use the
|
|
2533
2516
|
* <code>DefaultAsDomain</code> value when setting this parameter for a domain.</p>
|
|
2517
|
+
* <p>SageMaker applies this setting only to private spaces that the user creates in the domain. SageMaker doesn't apply this setting to shared spaces.</p>
|
|
2534
2518
|
* @public
|
|
2535
2519
|
*/
|
|
2536
2520
|
AutoMountHomeEFS?: AutoMountHomeEFS;
|
|
@@ -2735,7 +2719,7 @@ export interface CreateDomainRequest {
|
|
|
2735
2719
|
*/
|
|
2736
2720
|
TagPropagation?: TagPropagation;
|
|
2737
2721
|
/**
|
|
2738
|
-
* <p>The default settings
|
|
2722
|
+
* <p>The default settings for shared spaces that users create in the domain.</p>
|
|
2739
2723
|
* @public
|
|
2740
2724
|
*/
|
|
2741
2725
|
DefaultSpaceSettings?: DefaultSpaceSettings;
|
|
@@ -3357,10 +3341,10 @@ export interface ProductionVariant {
|
|
|
3357
3341
|
*/
|
|
3358
3342
|
InitialVariantWeight?: number;
|
|
3359
3343
|
/**
|
|
3360
|
-
* <p>
|
|
3361
|
-
*
|
|
3362
|
-
*
|
|
3363
|
-
*
|
|
3344
|
+
* <p>This parameter is no longer supported. Elastic Inference (EI) is no longer
|
|
3345
|
+
* available.</p>
|
|
3346
|
+
* <p>This parameter was used to specify the size of the EI instance to use for the
|
|
3347
|
+
* production variant.</p>
|
|
3364
3348
|
* @public
|
|
3365
3349
|
*/
|
|
3366
3350
|
AcceleratorType?: ProductionVariantAcceleratorType;
|
|
@@ -3555,7 +3539,8 @@ export interface CreateEndpointConfigInput {
|
|
|
3555
3539
|
/**
|
|
3556
3540
|
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
3557
3541
|
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
3558
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
3542
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
3543
|
+
* Resources in your Amazon VPC</a>. </p>
|
|
3559
3544
|
* @public
|
|
3560
3545
|
*/
|
|
3561
3546
|
VpcConfig?: VpcConfig;
|
|
@@ -9238,7 +9223,8 @@ export interface LabelingJobResourceConfig {
|
|
|
9238
9223
|
/**
|
|
9239
9224
|
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
9240
9225
|
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
9241
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
9226
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
9227
|
+
* Resources in your Amazon VPC</a>. </p>
|
|
9242
9228
|
* @public
|
|
9243
9229
|
*/
|
|
9244
9230
|
VpcConfig?: VpcConfig;
|
|
@@ -10965,7 +10951,8 @@ export interface NetworkConfig {
|
|
|
10965
10951
|
/**
|
|
10966
10952
|
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
10967
10953
|
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
10968
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
10954
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
10955
|
+
* Resources in your Amazon VPC</a>. </p>
|
|
10969
10956
|
* @public
|
|
10970
10957
|
*/
|
|
10971
10958
|
VpcConfig?: VpcConfig;
|
|
@@ -11233,7 +11220,10 @@ export type DirectInternetAccess = (typeof DirectInternetAccess)[keyof typeof Di
|
|
|
11233
11220
|
*/
|
|
11234
11221
|
export interface InstanceMetadataServiceConfiguration {
|
|
11235
11222
|
/**
|
|
11236
|
-
* <p>Indicates the minimum IMDS version that the notebook instance supports. When passed as
|
|
11223
|
+
* <p>Indicates the minimum IMDS version that the notebook instance supports. When passed as
|
|
11224
|
+
* part of <code>CreateNotebookInstance</code>, if no value is selected, then it defaults
|
|
11225
|
+
* to IMDSv1. This means that both IMDSv1 and IMDSv2 are supported. If passed as part of
|
|
11226
|
+
* <code>UpdateNotebookInstance</code>, there is no default.</p>
|
|
11237
11227
|
* @public
|
|
11238
11228
|
*/
|
|
11239
11229
|
MinimumInstanceMetadataServiceVersion: string | undefined;
|
|
@@ -11266,104 +11256,105 @@ export interface CreateNotebookInstanceInput {
|
|
|
11266
11256
|
InstanceType: _InstanceType | undefined;
|
|
11267
11257
|
/**
|
|
11268
11258
|
* <p>The ID of the subnet in a VPC to which you would like to have a connectivity from
|
|
11269
|
-
*
|
|
11259
|
+
* your ML compute instance. </p>
|
|
11270
11260
|
* @public
|
|
11271
11261
|
*/
|
|
11272
11262
|
SubnetId?: string;
|
|
11273
11263
|
/**
|
|
11274
11264
|
* <p>The VPC security group IDs, in the form sg-xxxxxxxx. The security groups must be
|
|
11275
|
-
*
|
|
11265
|
+
* for the same VPC as specified in the subnet. </p>
|
|
11276
11266
|
* @public
|
|
11277
11267
|
*/
|
|
11278
11268
|
SecurityGroupIds?: string[];
|
|
11279
11269
|
/**
|
|
11280
11270
|
* <p> When you send any requests to Amazon Web Services resources from the notebook
|
|
11281
|
-
*
|
|
11282
|
-
*
|
|
11283
|
-
*
|
|
11284
|
-
*
|
|
11271
|
+
* instance, SageMaker assumes this role to perform tasks on your behalf. You must
|
|
11272
|
+
* grant this role necessary permissions so SageMaker can perform these tasks. The
|
|
11273
|
+
* policy must allow the SageMaker service principal (sagemaker.amazonaws.com)
|
|
11274
|
+
* permissions to assume this role. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html">SageMaker Roles</a>. </p>
|
|
11285
11275
|
* <note>
|
|
11286
|
-
* <p>To be able to pass this role to SageMaker, the caller of this API must
|
|
11287
|
-
*
|
|
11276
|
+
* <p>To be able to pass this role to SageMaker, the caller of this API must
|
|
11277
|
+
* have the <code>iam:PassRole</code> permission.</p>
|
|
11288
11278
|
* </note>
|
|
11289
11279
|
* @public
|
|
11290
11280
|
*/
|
|
11291
11281
|
RoleArn: string | undefined;
|
|
11292
11282
|
/**
|
|
11293
11283
|
* <p>The Amazon Resource Name (ARN) of a Amazon Web Services Key Management Service key that
|
|
11294
|
-
*
|
|
11295
|
-
*
|
|
11296
|
-
*
|
|
11297
|
-
*
|
|
11284
|
+
* SageMaker uses to encrypt data on the storage volume attached to your
|
|
11285
|
+
* notebook instance. The KMS key you provide must be enabled. For information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/enabling-keys.html">Enabling and
|
|
11286
|
+
* Disabling Keys</a> in the <i>Amazon Web Services Key Management Service
|
|
11287
|
+
* Developer Guide</i>.</p>
|
|
11298
11288
|
* @public
|
|
11299
11289
|
*/
|
|
11300
11290
|
KmsKeyId?: string;
|
|
11301
11291
|
/**
|
|
11302
11292
|
* <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
|
|
11303
|
-
*
|
|
11304
|
-
*
|
|
11293
|
+
* resources in different ways, for example, by purpose, owner, or environment. For more
|
|
11294
|
+
* information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
|
|
11305
11295
|
* @public
|
|
11306
11296
|
*/
|
|
11307
11297
|
Tags?: Tag[];
|
|
11308
11298
|
/**
|
|
11309
11299
|
* <p>The name of a lifecycle configuration to associate with the notebook instance. For
|
|
11310
|
-
*
|
|
11311
|
-
*
|
|
11300
|
+
* information about lifestyle configurations, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html">Step 2.1: (Optional)
|
|
11301
|
+
* Customize a Notebook Instance</a>.</p>
|
|
11312
11302
|
* @public
|
|
11313
11303
|
*/
|
|
11314
11304
|
LifecycleConfigName?: string;
|
|
11315
11305
|
/**
|
|
11316
|
-
* <p>Sets whether SageMaker provides internet access to the notebook instance. If
|
|
11317
|
-
*
|
|
11318
|
-
*
|
|
11319
|
-
*
|
|
11306
|
+
* <p>Sets whether SageMaker provides internet access to the notebook instance. If
|
|
11307
|
+
* you set this to <code>Disabled</code> this notebook instance is able to access resources
|
|
11308
|
+
* only in your VPC, and is not be able to connect to SageMaker training and
|
|
11309
|
+
* endpoint services unless you configure a NAT Gateway in your VPC.</p>
|
|
11320
11310
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/appendix-additional-considerations.html#appendix-notebook-and-internet-access">Notebook Instances Are Internet-Enabled by Default</a>. You can set the value
|
|
11321
|
-
*
|
|
11322
|
-
*
|
|
11311
|
+
* of this parameter to <code>Disabled</code> only if you set a value for the
|
|
11312
|
+
* <code>SubnetId</code> parameter.</p>
|
|
11323
11313
|
* @public
|
|
11324
11314
|
*/
|
|
11325
11315
|
DirectInternetAccess?: DirectInternetAccess;
|
|
11326
11316
|
/**
|
|
11327
11317
|
* <p>The size, in GB, of the ML storage volume to attach to the notebook instance. The
|
|
11328
|
-
*
|
|
11318
|
+
* default value is 5 GB.</p>
|
|
11329
11319
|
* @public
|
|
11330
11320
|
*/
|
|
11331
11321
|
VolumeSizeInGB?: number;
|
|
11332
11322
|
/**
|
|
11333
|
-
* <p>
|
|
11334
|
-
*
|
|
11335
|
-
*
|
|
11323
|
+
* <p>This parameter is no longer supported. Elastic Inference (EI) is no longer
|
|
11324
|
+
* available.</p>
|
|
11325
|
+
* <p>This parameter was used to specify a list of EI instance types to associate with this
|
|
11326
|
+
* notebook instance.</p>
|
|
11336
11327
|
* @public
|
|
11337
11328
|
*/
|
|
11338
11329
|
AcceleratorTypes?: NotebookInstanceAcceleratorType[];
|
|
11339
11330
|
/**
|
|
11340
11331
|
* <p>A Git repository to associate with the notebook instance as its default code
|
|
11341
|
-
*
|
|
11342
|
-
*
|
|
11343
|
-
*
|
|
11344
|
-
*
|
|
11345
|
-
*
|
|
11332
|
+
* repository. This can be either the name of a Git repository stored as a resource in your
|
|
11333
|
+
* account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
|
|
11334
|
+
* or in any other Git repository. When you open a notebook instance, it opens in the
|
|
11335
|
+
* directory that contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
|
|
11336
|
+
* Repositories with SageMaker Notebook Instances</a>.</p>
|
|
11346
11337
|
* @public
|
|
11347
11338
|
*/
|
|
11348
11339
|
DefaultCodeRepository?: string;
|
|
11349
11340
|
/**
|
|
11350
11341
|
* <p>An array of up to three Git repositories to associate with the notebook instance.
|
|
11351
|
-
*
|
|
11352
|
-
*
|
|
11353
|
-
*
|
|
11354
|
-
*
|
|
11355
|
-
*
|
|
11342
|
+
* These can be either the names of Git repositories stored as resources in your account,
|
|
11343
|
+
* or the URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
|
|
11344
|
+
* or in any other Git repository. These repositories are cloned at the same level as the
|
|
11345
|
+
* default repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
|
|
11346
|
+
* Repositories with SageMaker Notebook Instances</a>.</p>
|
|
11356
11347
|
* @public
|
|
11357
11348
|
*/
|
|
11358
11349
|
AdditionalCodeRepositories?: string[];
|
|
11359
11350
|
/**
|
|
11360
11351
|
* <p>Whether root access is enabled or disabled for users of the notebook instance. The
|
|
11361
|
-
*
|
|
11352
|
+
* default value is <code>Enabled</code>.</p>
|
|
11362
11353
|
* <note>
|
|
11363
11354
|
* <p>Lifecycle configurations need root access to be able to set up a notebook
|
|
11364
|
-
*
|
|
11365
|
-
*
|
|
11366
|
-
*
|
|
11355
|
+
* instance. Because of this, lifecycle configurations associated with a notebook
|
|
11356
|
+
* instance always run with root access even if you disable root access for
|
|
11357
|
+
* users.</p>
|
|
11367
11358
|
* </note>
|
|
11368
11359
|
* @public
|
|
11369
11360
|
*/
|
|
@@ -11393,21 +11384,21 @@ export interface CreateNotebookInstanceOutput {
|
|
|
11393
11384
|
* <p>Contains the notebook instance lifecycle configuration script.</p>
|
|
11394
11385
|
* <p>Each lifecycle configuration script has a limit of 16384 characters.</p>
|
|
11395
11386
|
* <p>The value of the <code>$PATH</code> environment variable that is available to both
|
|
11396
|
-
*
|
|
11397
|
-
* <p>View Amazon CloudWatch Logs for notebook instance lifecycle configurations in log
|
|
11398
|
-
*
|
|
11399
|
-
*
|
|
11387
|
+
* scripts is <code>/sbin:bin:/usr/sbin:/usr/bin</code>.</p>
|
|
11388
|
+
* <p>View Amazon CloudWatch Logs for notebook instance lifecycle configurations in log
|
|
11389
|
+
* group <code>/aws/sagemaker/NotebookInstances</code> in log stream
|
|
11390
|
+
* <code>[notebook-instance-name]/[LifecycleConfigHook]</code>.</p>
|
|
11400
11391
|
* <p>Lifecycle configuration scripts cannot run for longer than 5 minutes. If a script runs
|
|
11401
|
-
*
|
|
11402
|
-
*
|
|
11392
|
+
* for longer than 5 minutes, it fails and the notebook instance is not created or
|
|
11393
|
+
* started.</p>
|
|
11403
11394
|
* <p>For information about notebook instance lifestyle configurations, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html">Step
|
|
11404
|
-
*
|
|
11395
|
+
* 2.1: (Optional) Customize a Notebook Instance</a>.</p>
|
|
11405
11396
|
* @public
|
|
11406
11397
|
*/
|
|
11407
11398
|
export interface NotebookInstanceLifecycleHook {
|
|
11408
11399
|
/**
|
|
11409
11400
|
* <p>A base64-encoded string that contains a shell script for a notebook instance lifecycle
|
|
11410
|
-
*
|
|
11401
|
+
* configuration.</p>
|
|
11411
11402
|
* @public
|
|
11412
11403
|
*/
|
|
11413
11404
|
Content?: string;
|
|
@@ -11423,13 +11414,13 @@ export interface CreateNotebookInstanceLifecycleConfigInput {
|
|
|
11423
11414
|
NotebookInstanceLifecycleConfigName: string | undefined;
|
|
11424
11415
|
/**
|
|
11425
11416
|
* <p>A shell script that runs only once, when you create a notebook instance. The shell
|
|
11426
|
-
*
|
|
11417
|
+
* script must be a base64-encoded string.</p>
|
|
11427
11418
|
* @public
|
|
11428
11419
|
*/
|
|
11429
11420
|
OnCreate?: NotebookInstanceLifecycleHook[];
|
|
11430
11421
|
/**
|
|
11431
11422
|
* <p>A shell script that runs every time you start a notebook instance, including when you
|
|
11432
|
-
*
|
|
11423
|
+
* create the notebook instance. The shell script must be a base64-encoded string.</p>
|
|
11433
11424
|
* @public
|
|
11434
11425
|
*/
|
|
11435
11426
|
OnStart?: NotebookInstanceLifecycleHook[];
|
|
@@ -830,8 +830,8 @@ export interface SpaceCodeEditorAppSettings {
|
|
|
830
830
|
}
|
|
831
831
|
/**
|
|
832
832
|
* <p>A file system, created by you in Amazon EFS, that you assign to a user profile
|
|
833
|
-
*
|
|
834
|
-
*
|
|
833
|
+
* or space for an Amazon SageMaker Domain. Permitted users can access this file
|
|
834
|
+
* system in Amazon SageMaker Studio.</p>
|
|
835
835
|
* @public
|
|
836
836
|
*/
|
|
837
837
|
export interface EFSFileSystem {
|
|
@@ -843,7 +843,7 @@ export interface EFSFileSystem {
|
|
|
843
843
|
}
|
|
844
844
|
/**
|
|
845
845
|
* <p>A file system, created by you, that you assign to a user profile or space for an
|
|
846
|
-
*
|
|
846
|
+
* Amazon SageMaker Domain. Permitted users can access this file system in Amazon SageMaker Studio.</p>
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
849
|
export type CustomFileSystem = CustomFileSystem.EFSFileSystemMember | CustomFileSystem.$UnknownMember;
|
|
@@ -954,8 +954,8 @@ export interface SpaceSettings {
|
|
|
954
954
|
SpaceStorageSettings?: SpaceStorageSettings;
|
|
955
955
|
/**
|
|
956
956
|
* <p>A file system, created by you, that you assign to a space for an Amazon SageMaker
|
|
957
|
-
*
|
|
958
|
-
*
|
|
957
|
+
* Domain. Permitted users can access this file system in Amazon SageMaker
|
|
958
|
+
* Studio.</p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
961
|
CustomFileSystems?: CustomFileSystem[];
|
|
@@ -2732,8 +2732,10 @@ export type RetentionType = (typeof RetentionType)[keyof typeof RetentionType];
|
|
|
2732
2732
|
*/
|
|
2733
2733
|
export interface RetentionPolicy {
|
|
2734
2734
|
/**
|
|
2735
|
-
* <p>The default is <code>Retain</code>, which specifies to keep the data stored on the
|
|
2736
|
-
*
|
|
2735
|
+
* <p>The default is <code>Retain</code>, which specifies to keep the data stored on the
|
|
2736
|
+
* Amazon EFS volume.</p>
|
|
2737
|
+
* <p>Specify <code>Delete</code> to delete the data stored on the Amazon EFS
|
|
2738
|
+
* volume.</p>
|
|
2737
2739
|
* @public
|
|
2738
2740
|
*/
|
|
2739
2741
|
HomeEfsFileSystem?: RetentionType;
|
|
@@ -4252,7 +4254,8 @@ export interface DescribeClusterResponse {
|
|
|
4252
4254
|
/**
|
|
4253
4255
|
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
4254
4256
|
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
4255
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
4257
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
4258
|
+
* Resources in your Amazon VPC</a>. </p>
|
|
4256
4259
|
* @public
|
|
4257
4260
|
*/
|
|
4258
4261
|
VpcConfig?: VpcConfig;
|
|
@@ -4328,8 +4331,8 @@ export interface DescribeCodeRepositoryOutput {
|
|
|
4328
4331
|
LastModifiedTime: Date | undefined;
|
|
4329
4332
|
/**
|
|
4330
4333
|
* <p>Configuration details about the repository, including the URL where the repository is
|
|
4331
|
-
*
|
|
4332
|
-
*
|
|
4334
|
+
* located, the default branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the
|
|
4335
|
+
* repository.</p>
|
|
4333
4336
|
* @public
|
|
4334
4337
|
*/
|
|
4335
4338
|
GitConfig?: GitConfig;
|
|
@@ -4958,7 +4961,7 @@ export interface DescribeDomainResponse {
|
|
|
4958
4961
|
*/
|
|
4959
4962
|
TagPropagation?: TagPropagation;
|
|
4960
4963
|
/**
|
|
4961
|
-
* <p>The default settings
|
|
4964
|
+
* <p>The default settings for shared spaces that users create in the domain.</p>
|
|
4962
4965
|
* @public
|
|
4963
4966
|
*/
|
|
4964
4967
|
DefaultSpaceSettings?: DefaultSpaceSettings;
|
|
@@ -5330,10 +5333,10 @@ export interface PendingProductionVariantSummary {
|
|
|
5330
5333
|
*/
|
|
5331
5334
|
InstanceType?: ProductionVariantInstanceType;
|
|
5332
5335
|
/**
|
|
5333
|
-
* <p>
|
|
5334
|
-
*
|
|
5335
|
-
*
|
|
5336
|
-
*
|
|
5336
|
+
* <p>This parameter is no longer supported. Elastic Inference (EI) is no longer
|
|
5337
|
+
* available.</p>
|
|
5338
|
+
* <p>This parameter was used to specify the size of the EI instance to use for the
|
|
5339
|
+
* production variant.</p>
|
|
5337
5340
|
* @public
|
|
5338
5341
|
*/
|
|
5339
5342
|
AcceleratorType?: ProductionVariantAcceleratorType;
|
|
@@ -5677,7 +5680,8 @@ export interface DescribeEndpointConfigOutput {
|
|
|
5677
5680
|
/**
|
|
5678
5681
|
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
5679
5682
|
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
5680
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
5683
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
5684
|
+
* Resources in your Amazon VPC</a>. </p>
|
|
5681
5685
|
* @public
|
|
5682
5686
|
*/
|
|
5683
5687
|
VpcConfig?: VpcConfig;
|