aws-sdk 2.776.0 → 2.780.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/CHANGELOG.md +17 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +63 -40
- package/apis/glue-2017-03-31.min.json +136 -111
- package/apis/kendra-2019-02-03.min.json +131 -26
- package/apis/mediatailor-2018-04-23.min.json +32 -7
- package/apis/neptune-2014-10-31.min.json +240 -74
- package/apis/neptune-2014-10-31.paginators.json +6 -0
- package/apis/quicksight-2018-04-01.min.json +112 -105
- package/apis/sagemaker-2017-07-24.min.json +913 -439
- package/apis/sagemaker-2017-07-24.paginators.json +12 -0
- package/apis/sns-2010-03-31.min.json +5 -2
- package/clients/accessanalyzer.d.ts +4 -4
- package/clients/appflow.d.ts +48 -9
- package/clients/glue.d.ts +86 -53
- package/clients/kendra.d.ts +158 -1
- package/clients/macie2.d.ts +15 -15
- package/clients/mediatailor.d.ts +26 -0
- package/clients/neptune.d.ts +299 -3
- package/clients/quicksight.d.ts +19 -4
- package/clients/sagemaker.d.ts +723 -30
- package/clients/servicecatalog.d.ts +1 -1
- package/clients/sns.d.ts +18 -6
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -11
- package/dist/aws-sdk.js +8 -5
- package/dist/aws-sdk.min.js +12 -12
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/sagemaker.d.ts
CHANGED
|
@@ -44,6 +44,14 @@ declare class SageMaker extends Service {
|
|
|
44
44
|
* Creates a running App for the specified UserProfile. Supported Apps are JupyterServer and KernelGateway. This operation is automatically invoked by Amazon SageMaker Studio upon access to the associated Domain, and when new kernel configurations are selected by the user. A user may have multiple Apps active simultaneously.
|
|
45
45
|
*/
|
|
46
46
|
createApp(callback?: (err: AWSError, data: SageMaker.Types.CreateAppResponse) => void): Request<SageMaker.Types.CreateAppResponse, AWSError>;
|
|
47
|
+
/**
|
|
48
|
+
* Creates a configuration for running an Amazon SageMaker image as a KernelGateway app.
|
|
49
|
+
*/
|
|
50
|
+
createAppImageConfig(params: SageMaker.Types.CreateAppImageConfigRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateAppImageConfigResponse) => void): Request<SageMaker.Types.CreateAppImageConfigResponse, AWSError>;
|
|
51
|
+
/**
|
|
52
|
+
* Creates a configuration for running an Amazon SageMaker image as a KernelGateway app.
|
|
53
|
+
*/
|
|
54
|
+
createAppImageConfig(callback?: (err: AWSError, data: SageMaker.Types.CreateAppImageConfigResponse) => void): Request<SageMaker.Types.CreateAppImageConfigResponse, AWSError>;
|
|
47
55
|
/**
|
|
48
56
|
* Creates an Autopilot job. Find the best performing model after you run an Autopilot job by calling . Deploy that model by following the steps described in Step 6.1: Deploy the Model to Amazon SageMaker Hosting Services. For information about how to use Autopilot, see Automate Model Development with Amazon SageMaker Autopilot.
|
|
49
57
|
*/
|
|
@@ -69,11 +77,11 @@ declare class SageMaker extends Service {
|
|
|
69
77
|
*/
|
|
70
78
|
createCompilationJob(callback?: (err: AWSError, data: SageMaker.Types.CreateCompilationJobResponse) => void): Request<SageMaker.Types.CreateCompilationJobResponse, AWSError>;
|
|
71
79
|
/**
|
|
72
|
-
* Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other. When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files. VPC configuration All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available: PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value. VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway. When internet access is disabled, you won't be able to train or host models unless your VPC has an interface endpoint
|
|
80
|
+
* Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other. When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files. VPC configuration All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available: PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value. VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway. When internet access is disabled, you won't be able to run a Studio notebook or to train or host models unless your VPC has an interface endpoint to the SageMaker API and runtime or a NAT gateway and your security groups allow outbound connections. For more information, see Connect SageMaker Studio Notebooks to Resources in a VPC.
|
|
73
81
|
*/
|
|
74
82
|
createDomain(params: SageMaker.Types.CreateDomainRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateDomainResponse) => void): Request<SageMaker.Types.CreateDomainResponse, AWSError>;
|
|
75
83
|
/**
|
|
76
|
-
* Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other. When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files. VPC configuration All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available: PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value. VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway. When internet access is disabled, you won't be able to train or host models unless your VPC has an interface endpoint
|
|
84
|
+
* Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other. When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files. VPC configuration All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available: PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value. VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway. When internet access is disabled, you won't be able to run a Studio notebook or to train or host models unless your VPC has an interface endpoint to the SageMaker API and runtime or a NAT gateway and your security groups allow outbound connections. For more information, see Connect SageMaker Studio Notebooks to Resources in a VPC.
|
|
77
85
|
*/
|
|
78
86
|
createDomain(callback?: (err: AWSError, data: SageMaker.Types.CreateDomainResponse) => void): Request<SageMaker.Types.CreateDomainResponse, AWSError>;
|
|
79
87
|
/**
|
|
@@ -124,6 +132,22 @@ declare class SageMaker extends Service {
|
|
|
124
132
|
* Starts a hyperparameter tuning job. A hyperparameter tuning job finds the best version of a model by running many training jobs on your dataset using the algorithm you choose and values for hyperparameters within ranges that you specify. It then chooses the hyperparameter values that result in a model that performs the best, as measured by an objective metric that you choose.
|
|
125
133
|
*/
|
|
126
134
|
createHyperParameterTuningJob(callback?: (err: AWSError, data: SageMaker.Types.CreateHyperParameterTuningJobResponse) => void): Request<SageMaker.Types.CreateHyperParameterTuningJobResponse, AWSError>;
|
|
135
|
+
/**
|
|
136
|
+
* Creates a SageMaker Image. A SageMaker image represents a set of container images. Each of these container images is represented by a SageMaker ImageVersion.
|
|
137
|
+
*/
|
|
138
|
+
createImage(params: SageMaker.Types.CreateImageRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateImageResponse) => void): Request<SageMaker.Types.CreateImageResponse, AWSError>;
|
|
139
|
+
/**
|
|
140
|
+
* Creates a SageMaker Image. A SageMaker image represents a set of container images. Each of these container images is represented by a SageMaker ImageVersion.
|
|
141
|
+
*/
|
|
142
|
+
createImage(callback?: (err: AWSError, data: SageMaker.Types.CreateImageResponse) => void): Request<SageMaker.Types.CreateImageResponse, AWSError>;
|
|
143
|
+
/**
|
|
144
|
+
* Creates a version of the SageMaker image specified by ImageName. The version represents the Amazon Container Registry (ECR) container image specified by BaseImage.
|
|
145
|
+
*/
|
|
146
|
+
createImageVersion(params: SageMaker.Types.CreateImageVersionRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateImageVersionResponse) => void): Request<SageMaker.Types.CreateImageVersionResponse, AWSError>;
|
|
147
|
+
/**
|
|
148
|
+
* Creates a version of the SageMaker image specified by ImageName. The version represents the Amazon Container Registry (ECR) container image specified by BaseImage.
|
|
149
|
+
*/
|
|
150
|
+
createImageVersion(callback?: (err: AWSError, data: SageMaker.Types.CreateImageVersionResponse) => void): Request<SageMaker.Types.CreateImageVersionResponse, AWSError>;
|
|
127
151
|
/**
|
|
128
152
|
* Creates a job that uses workers to label the data objects in your input dataset. You can use the labeled data to train machine learning models. You can select your workforce from one of three providers: A private workforce that you create. It can include employees, contractors, and outside experts. Use a private workforce when want the data to stay within your organization or when a specific set of skills is required. One or more vendors that you select from the AWS Marketplace. Vendors provide expertise in specific areas. The Amazon Mechanical Turk workforce. This is the largest workforce, but it should only be used for public data or data that has been stripped of any personally identifiable information. You can also use automated data labeling to reduce the number of data objects that need to be labeled by a human. Automated data labeling uses active learning to determine if a data object can be labeled by machine or if it needs to be sent to a human worker. For more information, see Using Automated Data Labeling. The data objects to be labeled are contained in an Amazon S3 bucket. You create a manifest file that describes the location of each object. For more information, see Using Input and Output Data. The output can be used as the manifest file for another labeling job or as training data for your machine learning models.
|
|
129
153
|
*/
|
|
@@ -268,6 +292,14 @@ declare class SageMaker extends Service {
|
|
|
268
292
|
* Used to stop and delete an app.
|
|
269
293
|
*/
|
|
270
294
|
deleteApp(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
295
|
+
/**
|
|
296
|
+
* Deletes an AppImageConfig.
|
|
297
|
+
*/
|
|
298
|
+
deleteAppImageConfig(params: SageMaker.Types.DeleteAppImageConfigRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
299
|
+
/**
|
|
300
|
+
* Deletes an AppImageConfig.
|
|
301
|
+
*/
|
|
302
|
+
deleteAppImageConfig(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
271
303
|
/**
|
|
272
304
|
* Deletes the specified Git repository from your account.
|
|
273
305
|
*/
|
|
@@ -324,6 +356,22 @@ declare class SageMaker extends Service {
|
|
|
324
356
|
* Use this operation to delete a human task user interface (worker task template). To see a list of human task user interfaces (work task templates) in your account, use . When you delete a worker task template, it no longer appears when you call ListHumanTaskUis.
|
|
325
357
|
*/
|
|
326
358
|
deleteHumanTaskUi(callback?: (err: AWSError, data: SageMaker.Types.DeleteHumanTaskUiResponse) => void): Request<SageMaker.Types.DeleteHumanTaskUiResponse, AWSError>;
|
|
359
|
+
/**
|
|
360
|
+
* Deletes a SageMaker image and all versions of the image. The container images aren't deleted.
|
|
361
|
+
*/
|
|
362
|
+
deleteImage(params: SageMaker.Types.DeleteImageRequest, callback?: (err: AWSError, data: SageMaker.Types.DeleteImageResponse) => void): Request<SageMaker.Types.DeleteImageResponse, AWSError>;
|
|
363
|
+
/**
|
|
364
|
+
* Deletes a SageMaker image and all versions of the image. The container images aren't deleted.
|
|
365
|
+
*/
|
|
366
|
+
deleteImage(callback?: (err: AWSError, data: SageMaker.Types.DeleteImageResponse) => void): Request<SageMaker.Types.DeleteImageResponse, AWSError>;
|
|
367
|
+
/**
|
|
368
|
+
* Deletes a version of a SageMaker image. The container image the version represents isn't deleted.
|
|
369
|
+
*/
|
|
370
|
+
deleteImageVersion(params: SageMaker.Types.DeleteImageVersionRequest, callback?: (err: AWSError, data: SageMaker.Types.DeleteImageVersionResponse) => void): Request<SageMaker.Types.DeleteImageVersionResponse, AWSError>;
|
|
371
|
+
/**
|
|
372
|
+
* Deletes a version of a SageMaker image. The container image the version represents isn't deleted.
|
|
373
|
+
*/
|
|
374
|
+
deleteImageVersion(callback?: (err: AWSError, data: SageMaker.Types.DeleteImageVersionResponse) => void): Request<SageMaker.Types.DeleteImageVersionResponse, AWSError>;
|
|
327
375
|
/**
|
|
328
376
|
* Deletes a model. The DeleteModel API deletes only the model entry that was created in Amazon SageMaker when you called the CreateModel API. It does not delete model artifacts, inference code, or the IAM role that you specified when creating the model.
|
|
329
377
|
*/
|
|
@@ -428,6 +476,14 @@ declare class SageMaker extends Service {
|
|
|
428
476
|
* Describes the app.
|
|
429
477
|
*/
|
|
430
478
|
describeApp(callback?: (err: AWSError, data: SageMaker.Types.DescribeAppResponse) => void): Request<SageMaker.Types.DescribeAppResponse, AWSError>;
|
|
479
|
+
/**
|
|
480
|
+
* Describes an AppImageConfig.
|
|
481
|
+
*/
|
|
482
|
+
describeAppImageConfig(params: SageMaker.Types.DescribeAppImageConfigRequest, callback?: (err: AWSError, data: SageMaker.Types.DescribeAppImageConfigResponse) => void): Request<SageMaker.Types.DescribeAppImageConfigResponse, AWSError>;
|
|
483
|
+
/**
|
|
484
|
+
* Describes an AppImageConfig.
|
|
485
|
+
*/
|
|
486
|
+
describeAppImageConfig(callback?: (err: AWSError, data: SageMaker.Types.DescribeAppImageConfigResponse) => void): Request<SageMaker.Types.DescribeAppImageConfigResponse, AWSError>;
|
|
431
487
|
/**
|
|
432
488
|
* Returns information about an Amazon SageMaker job.
|
|
433
489
|
*/
|
|
@@ -508,6 +564,22 @@ declare class SageMaker extends Service {
|
|
|
508
564
|
* Gets a description of a hyperparameter tuning job.
|
|
509
565
|
*/
|
|
510
566
|
describeHyperParameterTuningJob(callback?: (err: AWSError, data: SageMaker.Types.DescribeHyperParameterTuningJobResponse) => void): Request<SageMaker.Types.DescribeHyperParameterTuningJobResponse, AWSError>;
|
|
567
|
+
/**
|
|
568
|
+
* Describes a SageMaker image.
|
|
569
|
+
*/
|
|
570
|
+
describeImage(params: SageMaker.Types.DescribeImageRequest, callback?: (err: AWSError, data: SageMaker.Types.DescribeImageResponse) => void): Request<SageMaker.Types.DescribeImageResponse, AWSError>;
|
|
571
|
+
/**
|
|
572
|
+
* Describes a SageMaker image.
|
|
573
|
+
*/
|
|
574
|
+
describeImage(callback?: (err: AWSError, data: SageMaker.Types.DescribeImageResponse) => void): Request<SageMaker.Types.DescribeImageResponse, AWSError>;
|
|
575
|
+
/**
|
|
576
|
+
* Describes a version of a SageMaker image.
|
|
577
|
+
*/
|
|
578
|
+
describeImageVersion(params: SageMaker.Types.DescribeImageVersionRequest, callback?: (err: AWSError, data: SageMaker.Types.DescribeImageVersionResponse) => void): Request<SageMaker.Types.DescribeImageVersionResponse, AWSError>;
|
|
579
|
+
/**
|
|
580
|
+
* Describes a version of a SageMaker image.
|
|
581
|
+
*/
|
|
582
|
+
describeImageVersion(callback?: (err: AWSError, data: SageMaker.Types.DescribeImageVersionResponse) => void): Request<SageMaker.Types.DescribeImageVersionResponse, AWSError>;
|
|
511
583
|
/**
|
|
512
584
|
* Gets information about a labeling job.
|
|
513
585
|
*/
|
|
@@ -652,6 +724,14 @@ declare class SageMaker extends Service {
|
|
|
652
724
|
* Lists the machine learning algorithms that have been created.
|
|
653
725
|
*/
|
|
654
726
|
listAlgorithms(callback?: (err: AWSError, data: SageMaker.Types.ListAlgorithmsOutput) => void): Request<SageMaker.Types.ListAlgorithmsOutput, AWSError>;
|
|
727
|
+
/**
|
|
728
|
+
* Lists the AppImageConfigs in your account and their properties. The list can be filtered by creation time or modified time, and whether the AppImageConfig name contains a specified string.
|
|
729
|
+
*/
|
|
730
|
+
listAppImageConfigs(params: SageMaker.Types.ListAppImageConfigsRequest, callback?: (err: AWSError, data: SageMaker.Types.ListAppImageConfigsResponse) => void): Request<SageMaker.Types.ListAppImageConfigsResponse, AWSError>;
|
|
731
|
+
/**
|
|
732
|
+
* Lists the AppImageConfigs in your account and their properties. The list can be filtered by creation time or modified time, and whether the AppImageConfig name contains a specified string.
|
|
733
|
+
*/
|
|
734
|
+
listAppImageConfigs(callback?: (err: AWSError, data: SageMaker.Types.ListAppImageConfigsResponse) => void): Request<SageMaker.Types.ListAppImageConfigsResponse, AWSError>;
|
|
655
735
|
/**
|
|
656
736
|
* Lists apps.
|
|
657
737
|
*/
|
|
@@ -748,6 +828,22 @@ declare class SageMaker extends Service {
|
|
|
748
828
|
* Gets a list of HyperParameterTuningJobSummary objects that describe the hyperparameter tuning jobs launched in your account.
|
|
749
829
|
*/
|
|
750
830
|
listHyperParameterTuningJobs(callback?: (err: AWSError, data: SageMaker.Types.ListHyperParameterTuningJobsResponse) => void): Request<SageMaker.Types.ListHyperParameterTuningJobsResponse, AWSError>;
|
|
831
|
+
/**
|
|
832
|
+
* Lists the versions of a specified image and their properties. The list can be filtered by creation time or modified time.
|
|
833
|
+
*/
|
|
834
|
+
listImageVersions(params: SageMaker.Types.ListImageVersionsRequest, callback?: (err: AWSError, data: SageMaker.Types.ListImageVersionsResponse) => void): Request<SageMaker.Types.ListImageVersionsResponse, AWSError>;
|
|
835
|
+
/**
|
|
836
|
+
* Lists the versions of a specified image and their properties. The list can be filtered by creation time or modified time.
|
|
837
|
+
*/
|
|
838
|
+
listImageVersions(callback?: (err: AWSError, data: SageMaker.Types.ListImageVersionsResponse) => void): Request<SageMaker.Types.ListImageVersionsResponse, AWSError>;
|
|
839
|
+
/**
|
|
840
|
+
* Lists the images in your account and their properties. The list can be filtered by creation time or modified time, and whether the image name contains a specified string.
|
|
841
|
+
*/
|
|
842
|
+
listImages(params: SageMaker.Types.ListImagesRequest, callback?: (err: AWSError, data: SageMaker.Types.ListImagesResponse) => void): Request<SageMaker.Types.ListImagesResponse, AWSError>;
|
|
843
|
+
/**
|
|
844
|
+
* Lists the images in your account and their properties. The list can be filtered by creation time or modified time, and whether the image name contains a specified string.
|
|
845
|
+
*/
|
|
846
|
+
listImages(callback?: (err: AWSError, data: SageMaker.Types.ListImagesResponse) => void): Request<SageMaker.Types.ListImagesResponse, AWSError>;
|
|
751
847
|
/**
|
|
752
848
|
* Gets a list of labeling jobs.
|
|
753
849
|
*/
|
|
@@ -1004,6 +1100,14 @@ declare class SageMaker extends Service {
|
|
|
1004
1100
|
* Stops a transform job. When Amazon SageMaker receives a StopTransformJob request, the status of the job changes to Stopping. After Amazon SageMaker stops the job, the status is set to Stopped. When you stop a transform job before it is completed, Amazon SageMaker doesn't store the job's output in Amazon S3.
|
|
1005
1101
|
*/
|
|
1006
1102
|
stopTransformJob(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
1103
|
+
/**
|
|
1104
|
+
* Updates the properties of an AppImageConfig.
|
|
1105
|
+
*/
|
|
1106
|
+
updateAppImageConfig(params: SageMaker.Types.UpdateAppImageConfigRequest, callback?: (err: AWSError, data: SageMaker.Types.UpdateAppImageConfigResponse) => void): Request<SageMaker.Types.UpdateAppImageConfigResponse, AWSError>;
|
|
1107
|
+
/**
|
|
1108
|
+
* Updates the properties of an AppImageConfig.
|
|
1109
|
+
*/
|
|
1110
|
+
updateAppImageConfig(callback?: (err: AWSError, data: SageMaker.Types.UpdateAppImageConfigResponse) => void): Request<SageMaker.Types.UpdateAppImageConfigResponse, AWSError>;
|
|
1007
1111
|
/**
|
|
1008
1112
|
* Updates the specified Git repository with the specified values.
|
|
1009
1113
|
*/
|
|
@@ -1044,6 +1148,14 @@ declare class SageMaker extends Service {
|
|
|
1044
1148
|
* Adds, updates, or removes the description of an experiment. Updates the display name of an experiment.
|
|
1045
1149
|
*/
|
|
1046
1150
|
updateExperiment(callback?: (err: AWSError, data: SageMaker.Types.UpdateExperimentResponse) => void): Request<SageMaker.Types.UpdateExperimentResponse, AWSError>;
|
|
1151
|
+
/**
|
|
1152
|
+
* Updates the properties of a SageMaker image. To change the image's tags, use the AddTags and DeleteTags APIs.
|
|
1153
|
+
*/
|
|
1154
|
+
updateImage(params: SageMaker.Types.UpdateImageRequest, callback?: (err: AWSError, data: SageMaker.Types.UpdateImageResponse) => void): Request<SageMaker.Types.UpdateImageResponse, AWSError>;
|
|
1155
|
+
/**
|
|
1156
|
+
* Updates the properties of a SageMaker image. To change the image's tags, use the AddTags and DeleteTags APIs.
|
|
1157
|
+
*/
|
|
1158
|
+
updateImage(callback?: (err: AWSError, data: SageMaker.Types.UpdateImageResponse) => void): Request<SageMaker.Types.UpdateImageResponse, AWSError>;
|
|
1047
1159
|
/**
|
|
1048
1160
|
* Updates a previously created schedule.
|
|
1049
1161
|
*/
|
|
@@ -1325,6 +1437,32 @@ declare namespace SageMaker {
|
|
|
1325
1437
|
*/
|
|
1326
1438
|
CreationTime?: CreationTime;
|
|
1327
1439
|
}
|
|
1440
|
+
export type AppImageConfigArn = string;
|
|
1441
|
+
export interface AppImageConfigDetails {
|
|
1442
|
+
/**
|
|
1443
|
+
* The Amazon Resource Name (ARN) of the AppImageConfig.
|
|
1444
|
+
*/
|
|
1445
|
+
AppImageConfigArn?: AppImageConfigArn;
|
|
1446
|
+
/**
|
|
1447
|
+
* The name of the AppImageConfig.
|
|
1448
|
+
*/
|
|
1449
|
+
AppImageConfigName?: AppImageConfigName;
|
|
1450
|
+
/**
|
|
1451
|
+
* When the AppImageConfig was created.
|
|
1452
|
+
*/
|
|
1453
|
+
CreationTime?: Timestamp;
|
|
1454
|
+
/**
|
|
1455
|
+
* When the AppImageConfig was last modified.
|
|
1456
|
+
*/
|
|
1457
|
+
LastModifiedTime?: Timestamp;
|
|
1458
|
+
/**
|
|
1459
|
+
* The KernelGateway app.
|
|
1460
|
+
*/
|
|
1461
|
+
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
1462
|
+
}
|
|
1463
|
+
export type AppImageConfigList = AppImageConfigDetails[];
|
|
1464
|
+
export type AppImageConfigName = string;
|
|
1465
|
+
export type AppImageConfigSortKey = "CreationTime"|"LastModifiedTime"|"Name"|string;
|
|
1328
1466
|
export type AppInstanceType = "system"|"ml.t3.micro"|"ml.t3.small"|"ml.t3.medium"|"ml.t3.large"|"ml.t3.xlarge"|"ml.t3.2xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.8xlarge"|"ml.m5.12xlarge"|"ml.m5.16xlarge"|"ml.m5.24xlarge"|"ml.c5.large"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.12xlarge"|"ml.c5.18xlarge"|"ml.c5.24xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|string;
|
|
1329
1467
|
export type AppList = AppDetails[];
|
|
1330
1468
|
export type AppName = string;
|
|
@@ -1706,6 +1844,7 @@ declare namespace SageMaker {
|
|
|
1706
1844
|
export type Cidrs = Cidr[];
|
|
1707
1845
|
export type ClientId = string;
|
|
1708
1846
|
export type ClientSecret = string;
|
|
1847
|
+
export type ClientToken = string;
|
|
1709
1848
|
export type CodeRepositoryArn = string;
|
|
1710
1849
|
export type CodeRepositoryContains = string;
|
|
1711
1850
|
export type CodeRepositoryNameContains = string;
|
|
@@ -1858,7 +1997,7 @@ declare namespace SageMaker {
|
|
|
1858
1997
|
/**
|
|
1859
1998
|
* The name or Amazon Resource Name (ARN) of the model package to use to create the model.
|
|
1860
1999
|
*/
|
|
1861
|
-
ModelPackageName?:
|
|
2000
|
+
ModelPackageName?: VersionedArnOrName;
|
|
1862
2001
|
}
|
|
1863
2002
|
export type ContainerDefinitionList = ContainerDefinition[];
|
|
1864
2003
|
export type ContainerEntrypoint = ContainerEntrypointString[];
|
|
@@ -1931,6 +2070,26 @@ declare namespace SageMaker {
|
|
|
1931
2070
|
*/
|
|
1932
2071
|
AlgorithmArn: AlgorithmArn;
|
|
1933
2072
|
}
|
|
2073
|
+
export interface CreateAppImageConfigRequest {
|
|
2074
|
+
/**
|
|
2075
|
+
* The name of the AppImageConfig. Must be unique to your account.
|
|
2076
|
+
*/
|
|
2077
|
+
AppImageConfigName: AppImageConfigName;
|
|
2078
|
+
/**
|
|
2079
|
+
* A list of tags to apply to the AppImageConfig.
|
|
2080
|
+
*/
|
|
2081
|
+
Tags?: TagList;
|
|
2082
|
+
/**
|
|
2083
|
+
* The KernelGatewayImageConfig.
|
|
2084
|
+
*/
|
|
2085
|
+
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
2086
|
+
}
|
|
2087
|
+
export interface CreateAppImageConfigResponse {
|
|
2088
|
+
/**
|
|
2089
|
+
* The Amazon Resource Name (ARN) of the AppImageConfig.
|
|
2090
|
+
*/
|
|
2091
|
+
AppImageConfigArn?: AppImageConfigArn;
|
|
2092
|
+
}
|
|
1934
2093
|
export interface CreateAppRequest {
|
|
1935
2094
|
/**
|
|
1936
2095
|
* The domain ID.
|
|
@@ -1959,7 +2118,7 @@ declare namespace SageMaker {
|
|
|
1959
2118
|
}
|
|
1960
2119
|
export interface CreateAppResponse {
|
|
1961
2120
|
/**
|
|
1962
|
-
* The
|
|
2121
|
+
* The Amazon Resource Name (ARN) of the app.
|
|
1963
2122
|
*/
|
|
1964
2123
|
AppArn?: AppArn;
|
|
1965
2124
|
}
|
|
@@ -2044,6 +2203,10 @@ declare namespace SageMaker {
|
|
|
2044
2203
|
* Specifies a limit to how long a model compilation job can run. When the job reaches the time limit, Amazon SageMaker ends the compilation job. Use this API to cap model training costs.
|
|
2045
2204
|
*/
|
|
2046
2205
|
StoppingCondition: StoppingCondition;
|
|
2206
|
+
/**
|
|
2207
|
+
* An array of key-value pairs that you want to use to organize and track your AWS resource costs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.
|
|
2208
|
+
*/
|
|
2209
|
+
Tags?: TagList;
|
|
2047
2210
|
}
|
|
2048
2211
|
export interface CreateCompilationJobResponse {
|
|
2049
2212
|
/**
|
|
@@ -2076,14 +2239,14 @@ declare namespace SageMaker {
|
|
|
2076
2239
|
* Tags to associated with the Domain. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API.
|
|
2077
2240
|
*/
|
|
2078
2241
|
Tags?: TagList;
|
|
2079
|
-
/**
|
|
2080
|
-
* The AWS Key Management Service (KMS) encryption key ID. Encryption with a customer master key (CMK) is not supported.
|
|
2081
|
-
*/
|
|
2082
|
-
HomeEfsFileSystemKmsKeyId?: KmsKeyId;
|
|
2083
2242
|
/**
|
|
2084
2243
|
* Specifies the VPC used for non-EFS traffic. The default value is PublicInternetOnly. PublicInternetOnly - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access VpcOnly - All Studio traffic is through the specified VPC and subnets
|
|
2085
2244
|
*/
|
|
2086
2245
|
AppNetworkAccessType?: AppNetworkAccessType;
|
|
2246
|
+
/**
|
|
2247
|
+
* The AWS Key Management Service (KMS) encryption key ID. Encryption with a customer master key (CMK) is not supported.
|
|
2248
|
+
*/
|
|
2249
|
+
HomeEfsFileSystemKmsKeyId?: KmsKeyId;
|
|
2087
2250
|
}
|
|
2088
2251
|
export interface CreateDomainResponse {
|
|
2089
2252
|
/**
|
|
@@ -2122,7 +2285,7 @@ declare namespace SageMaker {
|
|
|
2122
2285
|
}
|
|
2123
2286
|
export interface CreateEndpointInput {
|
|
2124
2287
|
/**
|
|
2125
|
-
* The name of the endpoint.
|
|
2288
|
+
* The name of the endpoint.The name must be unique within an AWS Region in your AWS account. The name is case-insensitive in CreateEndpoint, but the case is preserved and must be matched in .
|
|
2126
2289
|
*/
|
|
2127
2290
|
EndpointName: EndpointName;
|
|
2128
2291
|
/**
|
|
@@ -2219,7 +2382,7 @@ declare namespace SageMaker {
|
|
|
2219
2382
|
}
|
|
2220
2383
|
export interface CreateHyperParameterTuningJobRequest {
|
|
2221
2384
|
/**
|
|
2222
|
-
* The name of the tuning job. This name is the prefix for the names of all training jobs that this tuning job launches. The name must be unique within the same AWS account and AWS Region. The name must have
|
|
2385
|
+
* The name of the tuning job. This name is the prefix for the names of all training jobs that this tuning job launches. The name must be unique within the same AWS account and AWS Region. The name must have 1 to 32 characters. Valid characters are a-z, A-Z, 0-9, and : + = @ _ % - (hyphen). The name is not case sensitive.
|
|
2223
2386
|
*/
|
|
2224
2387
|
HyperParameterTuningJobName: HyperParameterTuningJobName;
|
|
2225
2388
|
/**
|
|
@@ -2249,6 +2412,54 @@ declare namespace SageMaker {
|
|
|
2249
2412
|
*/
|
|
2250
2413
|
HyperParameterTuningJobArn: HyperParameterTuningJobArn;
|
|
2251
2414
|
}
|
|
2415
|
+
export interface CreateImageRequest {
|
|
2416
|
+
/**
|
|
2417
|
+
* The description of the image.
|
|
2418
|
+
*/
|
|
2419
|
+
Description?: ImageDescription;
|
|
2420
|
+
/**
|
|
2421
|
+
* The display name of the image. When the image is added to a domain, DisplayName must be unique to the domain.
|
|
2422
|
+
*/
|
|
2423
|
+
DisplayName?: ImageDisplayName;
|
|
2424
|
+
/**
|
|
2425
|
+
* The name of the image. Must be unique to your account.
|
|
2426
|
+
*/
|
|
2427
|
+
ImageName: ImageName;
|
|
2428
|
+
/**
|
|
2429
|
+
* The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.
|
|
2430
|
+
*/
|
|
2431
|
+
RoleArn: RoleArn;
|
|
2432
|
+
/**
|
|
2433
|
+
* A list of tags to apply to the image.
|
|
2434
|
+
*/
|
|
2435
|
+
Tags?: TagList;
|
|
2436
|
+
}
|
|
2437
|
+
export interface CreateImageResponse {
|
|
2438
|
+
/**
|
|
2439
|
+
* The Amazon Resource Name (ARN) of the image.
|
|
2440
|
+
*/
|
|
2441
|
+
ImageArn?: ImageArn;
|
|
2442
|
+
}
|
|
2443
|
+
export interface CreateImageVersionRequest {
|
|
2444
|
+
/**
|
|
2445
|
+
* The registry path of the container image to use as the starting point for this version. The path is an Amazon Container Registry (ECR) URI in the following format: <acct-id>.dkr.ecr.<region>.amazonaws.com/<repo-name[:tag] or [@digest]>
|
|
2446
|
+
*/
|
|
2447
|
+
BaseImage: ImageBaseImage;
|
|
2448
|
+
/**
|
|
2449
|
+
* A unique ID. If not specified, the AWS CLI and AWS SDKs, such as the SDK for Python (Boto3), add a unique value to the call.
|
|
2450
|
+
*/
|
|
2451
|
+
ClientToken: ClientToken;
|
|
2452
|
+
/**
|
|
2453
|
+
* The ImageName of the Image to create a version of.
|
|
2454
|
+
*/
|
|
2455
|
+
ImageName: ImageName;
|
|
2456
|
+
}
|
|
2457
|
+
export interface CreateImageVersionResponse {
|
|
2458
|
+
/**
|
|
2459
|
+
* The Amazon Resource Name (ARN) of the image version.
|
|
2460
|
+
*/
|
|
2461
|
+
ImageVersionArn?: ImageVersionArn;
|
|
2462
|
+
}
|
|
2252
2463
|
export interface CreateLabelingJobRequest {
|
|
2253
2464
|
/**
|
|
2254
2465
|
* The name of the labeling job. This name is used to identify the job in a list of labeling jobs.
|
|
@@ -2271,7 +2482,7 @@ declare namespace SageMaker {
|
|
|
2271
2482
|
*/
|
|
2272
2483
|
RoleArn: RoleArn;
|
|
2273
2484
|
/**
|
|
2274
|
-
* The S3
|
|
2485
|
+
* The S3 URI of the file that defines the categories used to label the data objects. For 3D point cloud task types, see Create a Labeling Category Configuration File for 3D Point Cloud Labeling Jobs. For all other built-in task types and custom tasks, your label category configuration file must be a JSON file in the following format. Identify the labels you want to use by replacing label_1, label_2,...,label_n with your label categories. { "document-version": "2018-11-28" "labels": [ { "label": "label_1" }, { "label": "label_2" }, ... { "label": "label_n" } ] }
|
|
2275
2486
|
*/
|
|
2276
2487
|
LabelCategoryConfigS3Uri?: S3Uri;
|
|
2277
2488
|
/**
|
|
@@ -2337,7 +2548,7 @@ declare namespace SageMaker {
|
|
|
2337
2548
|
/**
|
|
2338
2549
|
* The name of the model package. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
|
2339
2550
|
*/
|
|
2340
|
-
ModelPackageName
|
|
2551
|
+
ModelPackageName?: EntityName;
|
|
2341
2552
|
/**
|
|
2342
2553
|
* A description of the model package.
|
|
2343
2554
|
*/
|
|
@@ -2842,6 +3053,21 @@ declare namespace SageMaker {
|
|
|
2842
3053
|
export type CreationTime = Date;
|
|
2843
3054
|
export type CsvContentType = string;
|
|
2844
3055
|
export type CsvContentTypes = CsvContentType[];
|
|
3056
|
+
export interface CustomImage {
|
|
3057
|
+
/**
|
|
3058
|
+
* The name of the CustomImage. Must be unique to your account.
|
|
3059
|
+
*/
|
|
3060
|
+
ImageName: ImageName;
|
|
3061
|
+
/**
|
|
3062
|
+
* The version number of the CustomImage.
|
|
3063
|
+
*/
|
|
3064
|
+
ImageVersionNumber?: ImageVersionNumber;
|
|
3065
|
+
/**
|
|
3066
|
+
* The name of the AppImageConfig.
|
|
3067
|
+
*/
|
|
3068
|
+
AppImageConfigName: AppImageConfigName;
|
|
3069
|
+
}
|
|
3070
|
+
export type CustomImages = CustomImage[];
|
|
2845
3071
|
export interface DataCaptureConfig {
|
|
2846
3072
|
/**
|
|
2847
3073
|
*
|
|
@@ -2988,12 +3214,20 @@ declare namespace SageMaker {
|
|
|
2988
3214
|
LastModifiedTime?: Timestamp;
|
|
2989
3215
|
}
|
|
2990
3216
|
export type DebugRuleEvaluationStatuses = DebugRuleEvaluationStatus[];
|
|
3217
|
+
export type DefaultGid = number;
|
|
3218
|
+
export type DefaultUid = number;
|
|
2991
3219
|
export interface DeleteAlgorithmInput {
|
|
2992
3220
|
/**
|
|
2993
3221
|
* The name of the algorithm to delete.
|
|
2994
3222
|
*/
|
|
2995
3223
|
AlgorithmName: EntityName;
|
|
2996
3224
|
}
|
|
3225
|
+
export interface DeleteAppImageConfigRequest {
|
|
3226
|
+
/**
|
|
3227
|
+
* The name of the AppImageConfig to delete.
|
|
3228
|
+
*/
|
|
3229
|
+
AppImageConfigName: AppImageConfigName;
|
|
3230
|
+
}
|
|
2997
3231
|
export interface DeleteAppRequest {
|
|
2998
3232
|
/**
|
|
2999
3233
|
* The domain ID.
|
|
@@ -3068,6 +3302,26 @@ declare namespace SageMaker {
|
|
|
3068
3302
|
}
|
|
3069
3303
|
export interface DeleteHumanTaskUiResponse {
|
|
3070
3304
|
}
|
|
3305
|
+
export interface DeleteImageRequest {
|
|
3306
|
+
/**
|
|
3307
|
+
* The name of the image to delete.
|
|
3308
|
+
*/
|
|
3309
|
+
ImageName: ImageName;
|
|
3310
|
+
}
|
|
3311
|
+
export interface DeleteImageResponse {
|
|
3312
|
+
}
|
|
3313
|
+
export interface DeleteImageVersionRequest {
|
|
3314
|
+
/**
|
|
3315
|
+
* The name of the image.
|
|
3316
|
+
*/
|
|
3317
|
+
ImageName: ImageName;
|
|
3318
|
+
/**
|
|
3319
|
+
* The version to delete.
|
|
3320
|
+
*/
|
|
3321
|
+
Version: ImageVersionNumber;
|
|
3322
|
+
}
|
|
3323
|
+
export interface DeleteImageVersionResponse {
|
|
3324
|
+
}
|
|
3071
3325
|
export interface DeleteModelInput {
|
|
3072
3326
|
/**
|
|
3073
3327
|
* The name of the model to delete.
|
|
@@ -3078,7 +3332,7 @@ declare namespace SageMaker {
|
|
|
3078
3332
|
/**
|
|
3079
3333
|
* The name of the model package. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
|
3080
3334
|
*/
|
|
3081
|
-
ModelPackageName:
|
|
3335
|
+
ModelPackageName: VersionedArnOrName;
|
|
3082
3336
|
}
|
|
3083
3337
|
export interface DeleteMonitoringScheduleRequest {
|
|
3084
3338
|
/**
|
|
@@ -3231,6 +3485,34 @@ declare namespace SageMaker {
|
|
|
3231
3485
|
*/
|
|
3232
3486
|
CertifyForMarketplace?: CertifyForMarketplace;
|
|
3233
3487
|
}
|
|
3488
|
+
export interface DescribeAppImageConfigRequest {
|
|
3489
|
+
/**
|
|
3490
|
+
* The name of the AppImageConfig to describe.
|
|
3491
|
+
*/
|
|
3492
|
+
AppImageConfigName: AppImageConfigName;
|
|
3493
|
+
}
|
|
3494
|
+
export interface DescribeAppImageConfigResponse {
|
|
3495
|
+
/**
|
|
3496
|
+
* The Amazon Resource Name (ARN) of the AppImageConfig.
|
|
3497
|
+
*/
|
|
3498
|
+
AppImageConfigArn?: AppImageConfigArn;
|
|
3499
|
+
/**
|
|
3500
|
+
* The name of the AppImageConfig.
|
|
3501
|
+
*/
|
|
3502
|
+
AppImageConfigName?: AppImageConfigName;
|
|
3503
|
+
/**
|
|
3504
|
+
* When the AppImageConfig was created.
|
|
3505
|
+
*/
|
|
3506
|
+
CreationTime?: Timestamp;
|
|
3507
|
+
/**
|
|
3508
|
+
* When the AppImageConfig was last modified.
|
|
3509
|
+
*/
|
|
3510
|
+
LastModifiedTime?: Timestamp;
|
|
3511
|
+
/**
|
|
3512
|
+
* The KernelGateway app.
|
|
3513
|
+
*/
|
|
3514
|
+
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
3515
|
+
}
|
|
3234
3516
|
export interface DescribeAppRequest {
|
|
3235
3517
|
/**
|
|
3236
3518
|
* The domain ID.
|
|
@@ -3251,7 +3533,7 @@ declare namespace SageMaker {
|
|
|
3251
3533
|
}
|
|
3252
3534
|
export interface DescribeAppResponse {
|
|
3253
3535
|
/**
|
|
3254
|
-
* The
|
|
3536
|
+
* The Amazon Resource Name (ARN) of the app.
|
|
3255
3537
|
*/
|
|
3256
3538
|
AppArn?: AppArn;
|
|
3257
3539
|
/**
|
|
@@ -3514,6 +3796,10 @@ declare namespace SageMaker {
|
|
|
3514
3796
|
* Settings which are applied to all UserProfile in this domain, if settings are not explicitly specified in a given UserProfile.
|
|
3515
3797
|
*/
|
|
3516
3798
|
DefaultUserSettings?: UserSettings;
|
|
3799
|
+
/**
|
|
3800
|
+
* Specifies the VPC used for non-EFS traffic. The default value is PublicInternetOnly. PublicInternetOnly - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access VpcOnly - All Studio traffic is through the specified VPC and subnets
|
|
3801
|
+
*/
|
|
3802
|
+
AppNetworkAccessType?: AppNetworkAccessType;
|
|
3517
3803
|
/**
|
|
3518
3804
|
* The AWS Key Management Service encryption key ID.
|
|
3519
3805
|
*/
|
|
@@ -3530,10 +3816,6 @@ declare namespace SageMaker {
|
|
|
3530
3816
|
* The ID of the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
|
|
3531
3817
|
*/
|
|
3532
3818
|
VpcId?: VpcId;
|
|
3533
|
-
/**
|
|
3534
|
-
* Specifies the VPC used for non-EFS traffic. The default value is PublicInternetOnly. PublicInternetOnly - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access VpcOnly - All Studio traffic is through the specified VPC and subnets
|
|
3535
|
-
*/
|
|
3536
|
-
AppNetworkAccessType?: AppNetworkAccessType;
|
|
3537
3819
|
}
|
|
3538
3820
|
export interface DescribeEndpointConfigInput {
|
|
3539
3821
|
/**
|
|
@@ -3790,6 +4072,98 @@ declare namespace SageMaker {
|
|
|
3790
4072
|
*/
|
|
3791
4073
|
FailureReason?: FailureReason;
|
|
3792
4074
|
}
|
|
4075
|
+
export interface DescribeImageRequest {
|
|
4076
|
+
/**
|
|
4077
|
+
* The name of the image to describe.
|
|
4078
|
+
*/
|
|
4079
|
+
ImageName: ImageName;
|
|
4080
|
+
}
|
|
4081
|
+
export interface DescribeImageResponse {
|
|
4082
|
+
/**
|
|
4083
|
+
* When the image was created.
|
|
4084
|
+
*/
|
|
4085
|
+
CreationTime?: Timestamp;
|
|
4086
|
+
/**
|
|
4087
|
+
* The description of the image.
|
|
4088
|
+
*/
|
|
4089
|
+
Description?: ImageDescription;
|
|
4090
|
+
/**
|
|
4091
|
+
* The name of the image as displayed.
|
|
4092
|
+
*/
|
|
4093
|
+
DisplayName?: ImageDisplayName;
|
|
4094
|
+
/**
|
|
4095
|
+
* When a create, update, or delete operation fails, the reason for the failure.
|
|
4096
|
+
*/
|
|
4097
|
+
FailureReason?: FailureReason;
|
|
4098
|
+
/**
|
|
4099
|
+
* The Amazon Resource Name (ARN) of the image.
|
|
4100
|
+
*/
|
|
4101
|
+
ImageArn?: ImageArn;
|
|
4102
|
+
/**
|
|
4103
|
+
* The name of the image.
|
|
4104
|
+
*/
|
|
4105
|
+
ImageName?: ImageName;
|
|
4106
|
+
/**
|
|
4107
|
+
* The status of the image.
|
|
4108
|
+
*/
|
|
4109
|
+
ImageStatus?: ImageStatus;
|
|
4110
|
+
/**
|
|
4111
|
+
* When the image was last modified.
|
|
4112
|
+
*/
|
|
4113
|
+
LastModifiedTime?: Timestamp;
|
|
4114
|
+
/**
|
|
4115
|
+
* The Amazon Resource Name (ARN) of the IAM role that enables Amazon SageMaker to perform tasks on your behalf.
|
|
4116
|
+
*/
|
|
4117
|
+
RoleArn?: RoleArn;
|
|
4118
|
+
}
|
|
4119
|
+
export interface DescribeImageVersionRequest {
|
|
4120
|
+
/**
|
|
4121
|
+
* The name of the image.
|
|
4122
|
+
*/
|
|
4123
|
+
ImageName: ImageName;
|
|
4124
|
+
/**
|
|
4125
|
+
* The version of the image. If not specified, the latest version is described.
|
|
4126
|
+
*/
|
|
4127
|
+
Version?: ImageVersionNumber;
|
|
4128
|
+
}
|
|
4129
|
+
export interface DescribeImageVersionResponse {
|
|
4130
|
+
/**
|
|
4131
|
+
* The registry path of the container image on which this image version is based.
|
|
4132
|
+
*/
|
|
4133
|
+
BaseImage?: ImageBaseImage;
|
|
4134
|
+
/**
|
|
4135
|
+
* The registry path of the container image that contains this image version.
|
|
4136
|
+
*/
|
|
4137
|
+
ContainerImage?: ImageContainerImage;
|
|
4138
|
+
/**
|
|
4139
|
+
* When the version was created.
|
|
4140
|
+
*/
|
|
4141
|
+
CreationTime?: Timestamp;
|
|
4142
|
+
/**
|
|
4143
|
+
* When a create or delete operation fails, the reason for the failure.
|
|
4144
|
+
*/
|
|
4145
|
+
FailureReason?: FailureReason;
|
|
4146
|
+
/**
|
|
4147
|
+
* The Amazon Resource Name (ARN) of the image the version is based on.
|
|
4148
|
+
*/
|
|
4149
|
+
ImageArn?: ImageArn;
|
|
4150
|
+
/**
|
|
4151
|
+
* The ARN of the version.
|
|
4152
|
+
*/
|
|
4153
|
+
ImageVersionArn?: ImageVersionArn;
|
|
4154
|
+
/**
|
|
4155
|
+
* The status of the version.
|
|
4156
|
+
*/
|
|
4157
|
+
ImageVersionStatus?: ImageVersionStatus;
|
|
4158
|
+
/**
|
|
4159
|
+
* When the version was last modified.
|
|
4160
|
+
*/
|
|
4161
|
+
LastModifiedTime?: Timestamp;
|
|
4162
|
+
/**
|
|
4163
|
+
* The version number.
|
|
4164
|
+
*/
|
|
4165
|
+
Version?: ImageVersionNumber;
|
|
4166
|
+
}
|
|
3793
4167
|
export interface DescribeLabelingJobRequest {
|
|
3794
4168
|
/**
|
|
3795
4169
|
* The name of the labeling job to return information for.
|
|
@@ -3914,7 +4288,7 @@ declare namespace SageMaker {
|
|
|
3914
4288
|
/**
|
|
3915
4289
|
* The name of the model package to describe.
|
|
3916
4290
|
*/
|
|
3917
|
-
ModelPackageName:
|
|
4291
|
+
ModelPackageName: VersionedArnOrName;
|
|
3918
4292
|
}
|
|
3919
4293
|
export interface DescribeModelPackageOutput {
|
|
3920
4294
|
/**
|
|
@@ -4711,7 +5085,7 @@ declare namespace SageMaker {
|
|
|
4711
5085
|
export type DomainId = string;
|
|
4712
5086
|
export type DomainList = DomainDetails[];
|
|
4713
5087
|
export type DomainName = string;
|
|
4714
|
-
export type DomainStatus = "Deleting"|"Failed"|"InService"|"Pending"|string;
|
|
5088
|
+
export type DomainStatus = "Deleting"|"Failed"|"InService"|"Pending"|"Updating"|"Update_Failed"|"Delete_Failed"|string;
|
|
4715
5089
|
export type DoubleParameterValue = number;
|
|
4716
5090
|
export type EfsUid = string;
|
|
4717
5091
|
export type EnableCapture = boolean;
|
|
@@ -4874,6 +5248,20 @@ declare namespace SageMaker {
|
|
|
4874
5248
|
}
|
|
4875
5249
|
export type FailureReason = string;
|
|
4876
5250
|
export type FileSystemAccessMode = "rw"|"ro"|string;
|
|
5251
|
+
export interface FileSystemConfig {
|
|
5252
|
+
/**
|
|
5253
|
+
* The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to /home/sagemaker-user.
|
|
5254
|
+
*/
|
|
5255
|
+
MountPath?: MountPath;
|
|
5256
|
+
/**
|
|
5257
|
+
* The default POSIX user ID. If not specified, defaults to 1000.
|
|
5258
|
+
*/
|
|
5259
|
+
DefaultUid?: DefaultUid;
|
|
5260
|
+
/**
|
|
5261
|
+
* The default POSIX group ID. If not specified, defaults to 100.
|
|
5262
|
+
*/
|
|
5263
|
+
DefaultGid?: DefaultGid;
|
|
5264
|
+
}
|
|
4877
5265
|
export interface FileSystemDataSource {
|
|
4878
5266
|
/**
|
|
4879
5267
|
* The file system id.
|
|
@@ -4983,7 +5371,7 @@ declare namespace SageMaker {
|
|
|
4983
5371
|
export type FlowDefinitionTaskKeywords = FlowDefinitionTaskKeyword[];
|
|
4984
5372
|
export type FlowDefinitionTaskTimeLimitInSeconds = number;
|
|
4985
5373
|
export type FlowDefinitionTaskTitle = string;
|
|
4986
|
-
export type Framework = "TENSORFLOW"|"KERAS"|"MXNET"|"ONNX"|"PYTORCH"|"XGBOOST"|"TFLITE"|string;
|
|
5374
|
+
export type Framework = "TENSORFLOW"|"KERAS"|"MXNET"|"ONNX"|"PYTORCH"|"XGBOOST"|"TFLITE"|"DARKNET"|string;
|
|
4987
5375
|
export type GenerateCandidateDefinitionsOnly = boolean;
|
|
4988
5376
|
export interface GetSearchSuggestionsRequest {
|
|
4989
5377
|
/**
|
|
@@ -5165,6 +5553,7 @@ declare namespace SageMaker {
|
|
|
5165
5553
|
*/
|
|
5166
5554
|
MetricDefinitions?: MetricDefinitionList;
|
|
5167
5555
|
}
|
|
5556
|
+
export type HyperParameterKey = string;
|
|
5168
5557
|
export type HyperParameterScalingType = "Auto"|"Linear"|"Logarithmic"|"ReverseLogarithmic"|string;
|
|
5169
5558
|
export interface HyperParameterSpecification {
|
|
5170
5559
|
/**
|
|
@@ -5194,7 +5583,7 @@ declare namespace SageMaker {
|
|
|
5194
5583
|
/**
|
|
5195
5584
|
* The default value for this hyperparameter. If a default value is specified, a hyperparameter cannot be required.
|
|
5196
5585
|
*/
|
|
5197
|
-
DefaultValue?:
|
|
5586
|
+
DefaultValue?: HyperParameterValue;
|
|
5198
5587
|
}
|
|
5199
5588
|
export type HyperParameterSpecifications = HyperParameterSpecification[];
|
|
5200
5589
|
export interface HyperParameterTrainingJobDefinition {
|
|
@@ -5400,16 +5789,99 @@ declare namespace SageMaker {
|
|
|
5400
5789
|
WarmStartType: HyperParameterTuningJobWarmStartType;
|
|
5401
5790
|
}
|
|
5402
5791
|
export type HyperParameterTuningJobWarmStartType = "IdenticalDataAndAlgorithm"|"TransferLearning"|string;
|
|
5403
|
-
export type
|
|
5792
|
+
export type HyperParameterValue = string;
|
|
5793
|
+
export type HyperParameters = {[key: string]: HyperParameterValue};
|
|
5794
|
+
export interface Image {
|
|
5795
|
+
/**
|
|
5796
|
+
* When the image was created.
|
|
5797
|
+
*/
|
|
5798
|
+
CreationTime: Timestamp;
|
|
5799
|
+
/**
|
|
5800
|
+
* The description of the image.
|
|
5801
|
+
*/
|
|
5802
|
+
Description?: ImageDescription;
|
|
5803
|
+
/**
|
|
5804
|
+
* The name of the image as displayed.
|
|
5805
|
+
*/
|
|
5806
|
+
DisplayName?: ImageDisplayName;
|
|
5807
|
+
/**
|
|
5808
|
+
* When a create, update, or delete operation fails, the reason for the failure.
|
|
5809
|
+
*/
|
|
5810
|
+
FailureReason?: FailureReason;
|
|
5811
|
+
/**
|
|
5812
|
+
* The Amazon Resource Name (ARN) of the image.
|
|
5813
|
+
*/
|
|
5814
|
+
ImageArn: ImageArn;
|
|
5815
|
+
/**
|
|
5816
|
+
* The name of the image.
|
|
5817
|
+
*/
|
|
5818
|
+
ImageName: ImageName;
|
|
5819
|
+
/**
|
|
5820
|
+
* The status of the image.
|
|
5821
|
+
*/
|
|
5822
|
+
ImageStatus: ImageStatus;
|
|
5823
|
+
/**
|
|
5824
|
+
* When the image was last modified.
|
|
5825
|
+
*/
|
|
5826
|
+
LastModifiedTime: Timestamp;
|
|
5827
|
+
}
|
|
5404
5828
|
export type ImageArn = string;
|
|
5829
|
+
export type ImageBaseImage = string;
|
|
5405
5830
|
export interface ImageConfig {
|
|
5406
5831
|
/**
|
|
5407
5832
|
* Set this to one of the following values: Platform - The model image is hosted in Amazon ECR. Vpc - The model image is hosted in a private Docker registry in your VPC.
|
|
5408
5833
|
*/
|
|
5409
5834
|
RepositoryAccessMode: RepositoryAccessMode;
|
|
5410
5835
|
}
|
|
5836
|
+
export type ImageContainerImage = string;
|
|
5837
|
+
export type ImageDeleteProperty = string;
|
|
5838
|
+
export type ImageDeletePropertyList = ImageDeleteProperty[];
|
|
5839
|
+
export type ImageDescription = string;
|
|
5411
5840
|
export type ImageDigest = string;
|
|
5841
|
+
export type ImageDisplayName = string;
|
|
5842
|
+
export type ImageName = string;
|
|
5843
|
+
export type ImageNameContains = string;
|
|
5844
|
+
export type ImageSortBy = "CREATION_TIME"|"LAST_MODIFIED_TIME"|"IMAGE_NAME"|string;
|
|
5845
|
+
export type ImageSortOrder = "ASCENDING"|"DESCENDING"|string;
|
|
5846
|
+
export type ImageStatus = "CREATING"|"CREATED"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"DELETING"|"DELETE_FAILED"|string;
|
|
5412
5847
|
export type ImageUri = string;
|
|
5848
|
+
export interface ImageVersion {
|
|
5849
|
+
/**
|
|
5850
|
+
* When the version was created.
|
|
5851
|
+
*/
|
|
5852
|
+
CreationTime: Timestamp;
|
|
5853
|
+
/**
|
|
5854
|
+
* When a create or delete operation fails, the reason for the failure.
|
|
5855
|
+
*/
|
|
5856
|
+
FailureReason?: FailureReason;
|
|
5857
|
+
/**
|
|
5858
|
+
* The Amazon Resource Name (ARN) of the image the version is based on.
|
|
5859
|
+
*/
|
|
5860
|
+
ImageArn: ImageArn;
|
|
5861
|
+
/**
|
|
5862
|
+
* The ARN of the version.
|
|
5863
|
+
*/
|
|
5864
|
+
ImageVersionArn: ImageVersionArn;
|
|
5865
|
+
/**
|
|
5866
|
+
* The status of the version.
|
|
5867
|
+
*/
|
|
5868
|
+
ImageVersionStatus: ImageVersionStatus;
|
|
5869
|
+
/**
|
|
5870
|
+
* When the version was last modified.
|
|
5871
|
+
*/
|
|
5872
|
+
LastModifiedTime: Timestamp;
|
|
5873
|
+
/**
|
|
5874
|
+
* The version number.
|
|
5875
|
+
*/
|
|
5876
|
+
Version: ImageVersionNumber;
|
|
5877
|
+
}
|
|
5878
|
+
export type ImageVersionArn = string;
|
|
5879
|
+
export type ImageVersionNumber = number;
|
|
5880
|
+
export type ImageVersionSortBy = "CREATION_TIME"|"LAST_MODIFIED_TIME"|"VERSION"|string;
|
|
5881
|
+
export type ImageVersionSortOrder = "ASCENDING"|"DESCENDING"|string;
|
|
5882
|
+
export type ImageVersionStatus = "CREATING"|"CREATED"|"CREATE_FAILED"|"DELETING"|"DELETE_FAILED"|string;
|
|
5883
|
+
export type ImageVersions = ImageVersion[];
|
|
5884
|
+
export type Images = Image[];
|
|
5413
5885
|
export interface InferenceSpecification {
|
|
5414
5886
|
/**
|
|
5415
5887
|
* The Amazon ECR registry path of the Docker image that contains the inference code.
|
|
@@ -5492,12 +5964,39 @@ declare namespace SageMaker {
|
|
|
5492
5964
|
*/
|
|
5493
5965
|
DefaultResourceSpec?: ResourceSpec;
|
|
5494
5966
|
}
|
|
5967
|
+
export type KernelDisplayName = string;
|
|
5495
5968
|
export interface KernelGatewayAppSettings {
|
|
5496
5969
|
/**
|
|
5497
|
-
* The default instance type and the Amazon Resource Name (ARN) of the SageMaker image
|
|
5970
|
+
* The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
|
|
5498
5971
|
*/
|
|
5499
5972
|
DefaultResourceSpec?: ResourceSpec;
|
|
5973
|
+
/**
|
|
5974
|
+
* A list of custom images that are configured to run as a KernelGateway app.
|
|
5975
|
+
*/
|
|
5976
|
+
CustomImages?: CustomImages;
|
|
5977
|
+
}
|
|
5978
|
+
export interface KernelGatewayImageConfig {
|
|
5979
|
+
/**
|
|
5980
|
+
* Defines how a kernel is started and the arguments, environment variables, and metadata that are available to the kernel.
|
|
5981
|
+
*/
|
|
5982
|
+
KernelSpecs: KernelSpecs;
|
|
5983
|
+
/**
|
|
5984
|
+
* The file system configuration.
|
|
5985
|
+
*/
|
|
5986
|
+
FileSystemConfig?: FileSystemConfig;
|
|
5500
5987
|
}
|
|
5988
|
+
export type KernelName = string;
|
|
5989
|
+
export interface KernelSpec {
|
|
5990
|
+
/**
|
|
5991
|
+
* The name of the kernel. Must be unique to your account.
|
|
5992
|
+
*/
|
|
5993
|
+
Name: KernelName;
|
|
5994
|
+
/**
|
|
5995
|
+
* The display name of the kernel.
|
|
5996
|
+
*/
|
|
5997
|
+
DisplayName?: KernelDisplayName;
|
|
5998
|
+
}
|
|
5999
|
+
export type KernelSpecs = KernelSpec[];
|
|
5501
6000
|
export type KmsKeyId = string;
|
|
5502
6001
|
export type LabelAttributeName = string;
|
|
5503
6002
|
export type LabelCounter = number;
|
|
@@ -5753,6 +6252,54 @@ declare namespace SageMaker {
|
|
|
5753
6252
|
*/
|
|
5754
6253
|
NextToken?: NextToken;
|
|
5755
6254
|
}
|
|
6255
|
+
export interface ListAppImageConfigsRequest {
|
|
6256
|
+
/**
|
|
6257
|
+
* The maximum number of AppImageConfigs to return in the response. The default value is 10.
|
|
6258
|
+
*/
|
|
6259
|
+
MaxResults?: MaxResults;
|
|
6260
|
+
/**
|
|
6261
|
+
* If the previous call to ListImages didn't return the full set of AppImageConfigs, the call returns a token for getting the next set of AppImageConfigs.
|
|
6262
|
+
*/
|
|
6263
|
+
NextToken?: NextToken;
|
|
6264
|
+
/**
|
|
6265
|
+
* A filter that returns only AppImageConfigs whose name contains the specified string.
|
|
6266
|
+
*/
|
|
6267
|
+
NameContains?: AppImageConfigName;
|
|
6268
|
+
/**
|
|
6269
|
+
* A filter that returns only AppImageConfigs created on or before the specified time.
|
|
6270
|
+
*/
|
|
6271
|
+
CreationTimeBefore?: Timestamp;
|
|
6272
|
+
/**
|
|
6273
|
+
* A filter that returns only AppImageConfigs created on or after the specified time.
|
|
6274
|
+
*/
|
|
6275
|
+
CreationTimeAfter?: Timestamp;
|
|
6276
|
+
/**
|
|
6277
|
+
* A filter that returns only AppImageConfigs modified on or before the specified time.
|
|
6278
|
+
*/
|
|
6279
|
+
ModifiedTimeBefore?: Timestamp;
|
|
6280
|
+
/**
|
|
6281
|
+
* A filter that returns only AppImageConfigs modified on or after the specified time.
|
|
6282
|
+
*/
|
|
6283
|
+
ModifiedTimeAfter?: Timestamp;
|
|
6284
|
+
/**
|
|
6285
|
+
* The property used to sort results. The default value is CreationTime.
|
|
6286
|
+
*/
|
|
6287
|
+
SortBy?: AppImageConfigSortKey;
|
|
6288
|
+
/**
|
|
6289
|
+
* The sort order. The default value is Descending.
|
|
6290
|
+
*/
|
|
6291
|
+
SortOrder?: SortOrder;
|
|
6292
|
+
}
|
|
6293
|
+
export interface ListAppImageConfigsResponse {
|
|
6294
|
+
/**
|
|
6295
|
+
* A token for getting the next set of AppImageConfigs, if there are any.
|
|
6296
|
+
*/
|
|
6297
|
+
NextToken?: NextToken;
|
|
6298
|
+
/**
|
|
6299
|
+
* A list of AppImageConfigs and their properties.
|
|
6300
|
+
*/
|
|
6301
|
+
AppImageConfigs?: AppImageConfigList;
|
|
6302
|
+
}
|
|
5756
6303
|
export interface ListAppsRequest {
|
|
5757
6304
|
/**
|
|
5758
6305
|
* If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
|
|
@@ -6246,6 +6793,102 @@ declare namespace SageMaker {
|
|
|
6246
6793
|
*/
|
|
6247
6794
|
NextToken?: NextToken;
|
|
6248
6795
|
}
|
|
6796
|
+
export interface ListImageVersionsRequest {
|
|
6797
|
+
/**
|
|
6798
|
+
* A filter that returns only versions created on or after the specified time.
|
|
6799
|
+
*/
|
|
6800
|
+
CreationTimeAfter?: Timestamp;
|
|
6801
|
+
/**
|
|
6802
|
+
* A filter that returns only versions created on or before the specified time.
|
|
6803
|
+
*/
|
|
6804
|
+
CreationTimeBefore?: Timestamp;
|
|
6805
|
+
/**
|
|
6806
|
+
* The name of the image to list the versions of.
|
|
6807
|
+
*/
|
|
6808
|
+
ImageName: ImageName;
|
|
6809
|
+
/**
|
|
6810
|
+
* A filter that returns only versions modified on or after the specified time.
|
|
6811
|
+
*/
|
|
6812
|
+
LastModifiedTimeAfter?: Timestamp;
|
|
6813
|
+
/**
|
|
6814
|
+
* A filter that returns only versions modified on or before the specified time.
|
|
6815
|
+
*/
|
|
6816
|
+
LastModifiedTimeBefore?: Timestamp;
|
|
6817
|
+
/**
|
|
6818
|
+
* The maximum number of versions to return in the response. The default value is 10.
|
|
6819
|
+
*/
|
|
6820
|
+
MaxResults?: MaxResults;
|
|
6821
|
+
/**
|
|
6822
|
+
* If the previous call to ListImageVersions didn't return the full set of versions, the call returns a token for getting the next set of versions.
|
|
6823
|
+
*/
|
|
6824
|
+
NextToken?: NextToken;
|
|
6825
|
+
/**
|
|
6826
|
+
* The property used to sort results. The default value is CREATION_TIME.
|
|
6827
|
+
*/
|
|
6828
|
+
SortBy?: ImageVersionSortBy;
|
|
6829
|
+
/**
|
|
6830
|
+
* The sort order. The default value is DESCENDING.
|
|
6831
|
+
*/
|
|
6832
|
+
SortOrder?: ImageVersionSortOrder;
|
|
6833
|
+
}
|
|
6834
|
+
export interface ListImageVersionsResponse {
|
|
6835
|
+
/**
|
|
6836
|
+
* A list of versions and their properties.
|
|
6837
|
+
*/
|
|
6838
|
+
ImageVersions?: ImageVersions;
|
|
6839
|
+
/**
|
|
6840
|
+
* A token for getting the next set of versions, if there are any.
|
|
6841
|
+
*/
|
|
6842
|
+
NextToken?: NextToken;
|
|
6843
|
+
}
|
|
6844
|
+
export interface ListImagesRequest {
|
|
6845
|
+
/**
|
|
6846
|
+
* A filter that returns only images created on or after the specified time.
|
|
6847
|
+
*/
|
|
6848
|
+
CreationTimeAfter?: Timestamp;
|
|
6849
|
+
/**
|
|
6850
|
+
* A filter that returns only images created on or before the specified time.
|
|
6851
|
+
*/
|
|
6852
|
+
CreationTimeBefore?: Timestamp;
|
|
6853
|
+
/**
|
|
6854
|
+
* A filter that returns only images modified on or after the specified time.
|
|
6855
|
+
*/
|
|
6856
|
+
LastModifiedTimeAfter?: Timestamp;
|
|
6857
|
+
/**
|
|
6858
|
+
* A filter that returns only images modified on or before the specified time.
|
|
6859
|
+
*/
|
|
6860
|
+
LastModifiedTimeBefore?: Timestamp;
|
|
6861
|
+
/**
|
|
6862
|
+
* The maximum number of images to return in the response. The default value is 10.
|
|
6863
|
+
*/
|
|
6864
|
+
MaxResults?: MaxResults;
|
|
6865
|
+
/**
|
|
6866
|
+
* A filter that returns only images whose name contains the specified string.
|
|
6867
|
+
*/
|
|
6868
|
+
NameContains?: ImageNameContains;
|
|
6869
|
+
/**
|
|
6870
|
+
* If the previous call to ListImages didn't return the full set of images, the call returns a token for getting the next set of images.
|
|
6871
|
+
*/
|
|
6872
|
+
NextToken?: NextToken;
|
|
6873
|
+
/**
|
|
6874
|
+
* The property used to sort results. The default value is CREATION_TIME.
|
|
6875
|
+
*/
|
|
6876
|
+
SortBy?: ImageSortBy;
|
|
6877
|
+
/**
|
|
6878
|
+
* The sort order. The default value is DESCENDING.
|
|
6879
|
+
*/
|
|
6880
|
+
SortOrder?: ImageSortOrder;
|
|
6881
|
+
}
|
|
6882
|
+
export interface ListImagesResponse {
|
|
6883
|
+
/**
|
|
6884
|
+
* A list of images and their properties.
|
|
6885
|
+
*/
|
|
6886
|
+
Images?: Images;
|
|
6887
|
+
/**
|
|
6888
|
+
* A token for getting the next set of images, if there are any.
|
|
6889
|
+
*/
|
|
6890
|
+
NextToken?: NextToken;
|
|
6891
|
+
}
|
|
6249
6892
|
export interface ListLabelingJobsForWorkteamRequest {
|
|
6250
6893
|
/**
|
|
6251
6894
|
* The Amazon Resource Name (ARN) of the work team for which you want to see labeling jobs for.
|
|
@@ -7504,6 +8147,7 @@ declare namespace SageMaker {
|
|
|
7504
8147
|
*/
|
|
7505
8148
|
MaxRuntimeInSeconds: MonitoringMaxRuntimeInSeconds;
|
|
7506
8149
|
}
|
|
8150
|
+
export type MountPath = string;
|
|
7507
8151
|
export type NameContains = string;
|
|
7508
8152
|
export interface NestedFilters {
|
|
7509
8153
|
/**
|
|
@@ -7729,7 +8373,7 @@ declare namespace SageMaker {
|
|
|
7729
8373
|
*/
|
|
7730
8374
|
TargetPlatform?: TargetPlatform;
|
|
7731
8375
|
/**
|
|
7732
|
-
* Specifies additional parameters for compiler options in JSON format. The compiler options are TargetPlatform specific. It is required for NVIDIA accelerators and highly recommended for CPU compilations. For any other cases, it is optional to specify CompilerOptions. CPU: Compilation for CPU supports the following compiler options. mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'} mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']} ARM: Details of ARM CPU compilations. NEON: NEON is an implementation of the Advanced SIMD extension used in ARMv7 processors. For example, add {'mattr': ['+neon']} to the compiler options if compiling for ARM 32-bit platform with the NEON support. NVIDIA: Compilation for NVIDIA GPU supports the following compiler options. gpu_code: Specifies the targeted architecture. trt-ver: Specifies the TensorRT versions in x.y.z. format. cuda-ver: Specifies the CUDA version in x.y format. For example, {'gpu-code': 'sm_72', 'trt-ver': '6.0.1', 'cuda-ver': '10.1'} ANDROID: Compilation for the Android OS supports the following compiler options: ANDROID_PLATFORM: Specifies the Android API levels. Available levels range from 21 to 29. For example, {'ANDROID_PLATFORM': 28}. mattr: Add {'mattr': ['+neon']} to compiler options if compiling for ARM 32-bit platform with NEON support. CoreML: Compilation for the CoreML OutputConfig$TargetDevice supports the following compiler options: class_labels: Specifies the classification labels file name inside input tar.gz file. For example, {"class_labels": "imagenet_labels_1000.txt"}. Labels inside the txt file should be separated by newlines.
|
|
8376
|
+
* Specifies additional parameters for compiler options in JSON format. The compiler options are TargetPlatform specific. It is required for NVIDIA accelerators and highly recommended for CPU compilations. For any other cases, it is optional to specify CompilerOptions. CPU: Compilation for CPU supports the following compiler options. mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'} mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']} ARM: Details of ARM CPU compilations. NEON: NEON is an implementation of the Advanced SIMD extension used in ARMv7 processors. For example, add {'mattr': ['+neon']} to the compiler options if compiling for ARM 32-bit platform with the NEON support. NVIDIA: Compilation for NVIDIA GPU supports the following compiler options. gpu_code: Specifies the targeted architecture. trt-ver: Specifies the TensorRT versions in x.y.z. format. cuda-ver: Specifies the CUDA version in x.y format. For example, {'gpu-code': 'sm_72', 'trt-ver': '6.0.1', 'cuda-ver': '10.1'} ANDROID: Compilation for the Android OS supports the following compiler options: ANDROID_PLATFORM: Specifies the Android API levels. Available levels range from 21 to 29. For example, {'ANDROID_PLATFORM': 28}. mattr: Add {'mattr': ['+neon']} to compiler options if compiling for ARM 32-bit platform with NEON support. INFERENTIA: Compilation for target ml_inf1 uses compiler options passed in as a JSON string. For example, "CompilerOptions": "\"--verbose 1 --num-neuroncores 2 -O2\"". For information about supported compiler options, see Neuron Compiler CLI. CoreML: Compilation for the CoreML OutputConfig$TargetDevice supports the following compiler options: class_labels: Specifies the classification labels file name inside input tar.gz file. For example, {"class_labels": "imagenet_labels_1000.txt"}. Labels inside the txt file should be separated by newlines.
|
|
7733
8377
|
*/
|
|
7734
8378
|
CompilerOptions?: CompilerOptions;
|
|
7735
8379
|
}
|
|
@@ -8189,11 +8833,15 @@ declare namespace SageMaker {
|
|
|
8189
8833
|
export type ResourcePropertyName = string;
|
|
8190
8834
|
export interface ResourceSpec {
|
|
8191
8835
|
/**
|
|
8192
|
-
* The
|
|
8836
|
+
* The ARN of the SageMaker image that the image version belongs to.
|
|
8193
8837
|
*/
|
|
8194
8838
|
SageMakerImageArn?: ImageArn;
|
|
8195
8839
|
/**
|
|
8196
|
-
* The instance
|
|
8840
|
+
* The ARN of the image version created on the instance.
|
|
8841
|
+
*/
|
|
8842
|
+
SageMakerImageVersionArn?: ImageVersionArn;
|
|
8843
|
+
/**
|
|
8844
|
+
* The instance type that the image version runs on.
|
|
8197
8845
|
*/
|
|
8198
8846
|
InstanceType?: AppInstanceType;
|
|
8199
8847
|
}
|
|
@@ -8574,7 +9222,7 @@ declare namespace SageMaker {
|
|
|
8574
9222
|
export type Timestamp = Date;
|
|
8575
9223
|
export type TrainingInputMode = "Pipe"|"File"|string;
|
|
8576
9224
|
export type TrainingInstanceCount = number;
|
|
8577
|
-
export type TrainingInstanceType = "ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5n.xlarge"|"ml.c5n.2xlarge"|"ml.c5n.4xlarge"|"ml.c5n.9xlarge"|"ml.c5n.18xlarge"|string;
|
|
9225
|
+
export type TrainingInstanceType = "ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.p4d.24xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5n.xlarge"|"ml.c5n.2xlarge"|"ml.c5n.4xlarge"|"ml.c5n.9xlarge"|"ml.c5n.18xlarge"|string;
|
|
8578
9226
|
export type TrainingInstanceTypes = TrainingInstanceType[];
|
|
8579
9227
|
export interface TrainingJob {
|
|
8580
9228
|
/**
|
|
@@ -9377,6 +10025,22 @@ declare namespace SageMaker {
|
|
|
9377
10025
|
*/
|
|
9378
10026
|
ContentSha256?: TemplateContentSha256;
|
|
9379
10027
|
}
|
|
10028
|
+
export interface UpdateAppImageConfigRequest {
|
|
10029
|
+
/**
|
|
10030
|
+
* The name of the AppImageConfig to update.
|
|
10031
|
+
*/
|
|
10032
|
+
AppImageConfigName: AppImageConfigName;
|
|
10033
|
+
/**
|
|
10034
|
+
* The new KernelGateway app to run on the image.
|
|
10035
|
+
*/
|
|
10036
|
+
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
10037
|
+
}
|
|
10038
|
+
export interface UpdateAppImageConfigResponse {
|
|
10039
|
+
/**
|
|
10040
|
+
* The Amazon Resource Name (ARN) for the AppImageConfig.
|
|
10041
|
+
*/
|
|
10042
|
+
AppImageConfigArn?: AppImageConfigArn;
|
|
10043
|
+
}
|
|
9380
10044
|
export interface UpdateCodeRepositoryInput {
|
|
9381
10045
|
/**
|
|
9382
10046
|
* The name of the Git repository to update.
|
|
@@ -9469,6 +10133,34 @@ declare namespace SageMaker {
|
|
|
9469
10133
|
*/
|
|
9470
10134
|
ExperimentArn?: ExperimentArn;
|
|
9471
10135
|
}
|
|
10136
|
+
export interface UpdateImageRequest {
|
|
10137
|
+
/**
|
|
10138
|
+
* A list of properties to delete. Only the Description and DisplayName properties can be deleted.
|
|
10139
|
+
*/
|
|
10140
|
+
DeleteProperties?: ImageDeletePropertyList;
|
|
10141
|
+
/**
|
|
10142
|
+
* The new description for the image.
|
|
10143
|
+
*/
|
|
10144
|
+
Description?: ImageDescription;
|
|
10145
|
+
/**
|
|
10146
|
+
* The new display name for the image.
|
|
10147
|
+
*/
|
|
10148
|
+
DisplayName?: ImageDisplayName;
|
|
10149
|
+
/**
|
|
10150
|
+
* The name of the image to update.
|
|
10151
|
+
*/
|
|
10152
|
+
ImageName: ImageName;
|
|
10153
|
+
/**
|
|
10154
|
+
* The new Amazon Resource Name (ARN) for the IAM role that enables Amazon SageMaker to perform tasks on your behalf.
|
|
10155
|
+
*/
|
|
10156
|
+
RoleArn?: RoleArn;
|
|
10157
|
+
}
|
|
10158
|
+
export interface UpdateImageResponse {
|
|
10159
|
+
/**
|
|
10160
|
+
* The Amazon Resource Name (ARN) of the image.
|
|
10161
|
+
*/
|
|
10162
|
+
ImageArn?: ImageArn;
|
|
10163
|
+
}
|
|
9472
10164
|
export interface UpdateMonitoringScheduleRequest {
|
|
9473
10165
|
/**
|
|
9474
10166
|
* The name of the monitoring schedule. The name must be unique within an AWS Region within an AWS account.
|
|
@@ -9730,14 +10422,14 @@ declare namespace SageMaker {
|
|
|
9730
10422
|
export type UserProfileList = UserProfileDetails[];
|
|
9731
10423
|
export type UserProfileName = string;
|
|
9732
10424
|
export type UserProfileSortKey = "CreationTime"|"LastModifiedTime"|string;
|
|
9733
|
-
export type UserProfileStatus = "Deleting"|"Failed"|"InService"|"Pending"|string;
|
|
10425
|
+
export type UserProfileStatus = "Deleting"|"Failed"|"InService"|"Pending"|"Updating"|"Update_Failed"|"Delete_Failed"|string;
|
|
9734
10426
|
export interface UserSettings {
|
|
9735
10427
|
/**
|
|
9736
10428
|
* The execution role for the user.
|
|
9737
10429
|
*/
|
|
9738
10430
|
ExecutionRole?: RoleArn;
|
|
9739
10431
|
/**
|
|
9740
|
-
* The security groups.
|
|
10432
|
+
* The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication. Optional when the CreateDomain.AppNetworkAccessType parameter is set to PublicInternetOnly. Required when the CreateDomain.AppNetworkAccessType parameter is set to VpcOnly.
|
|
9741
10433
|
*/
|
|
9742
10434
|
SecurityGroups?: SecurityGroupIds;
|
|
9743
10435
|
/**
|
|
@@ -9767,6 +10459,7 @@ declare namespace SageMaker {
|
|
|
9767
10459
|
export type VariantPropertyList = VariantProperty[];
|
|
9768
10460
|
export type VariantPropertyType = "DesiredInstanceCount"|"DesiredWeight"|"DataCaptureConfig"|string;
|
|
9769
10461
|
export type VariantWeight = number;
|
|
10462
|
+
export type VersionedArnOrName = string;
|
|
9770
10463
|
export type VolumeSizeInGB = number;
|
|
9771
10464
|
export interface VpcConfig {
|
|
9772
10465
|
/**
|