aws-sdk 2.1237.0 → 2.1239.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 +12 -1
- package/README.md +1 -1
- package/apis/acm-pca-2017-08-22.min.json +13 -11
- package/apis/batch-2016-08-10.min.json +383 -95
- package/apis/cognito-idp-2016-04-18.min.json +156 -153
- package/apis/datasync-2018-11-09.min.json +40 -28
- package/apis/s3-2006-03-01.examples.json +132 -132
- package/apis/sagemaker-2017-07-24.min.json +624 -513
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/clients/acmpca.d.ts +10 -1
- package/clients/batch.d.ts +542 -157
- package/clients/cognitoidentityserviceprovider.d.ts +38 -25
- package/clients/datasync.d.ts +45 -28
- package/clients/sagemaker.d.ts +105 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +159 -156
- package/dist/aws-sdk.min.js +72 -72
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/sagemaker.d.ts
CHANGED
|
@@ -1436,6 +1436,14 @@ declare class SageMaker extends Service {
|
|
|
1436
1436
|
* 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.
|
|
1437
1437
|
*/
|
|
1438
1438
|
listImages(callback?: (err: AWSError, data: SageMaker.Types.ListImagesResponse) => void): Request<SageMaker.Types.ListImagesResponse, AWSError>;
|
|
1439
|
+
/**
|
|
1440
|
+
* Returns a list of the subtasks for an Inference Recommender job. The supported subtasks are benchmarks, which evaluate the performance of your model on different instance types.
|
|
1441
|
+
*/
|
|
1442
|
+
listInferenceRecommendationsJobSteps(params: SageMaker.Types.ListInferenceRecommendationsJobStepsRequest, callback?: (err: AWSError, data: SageMaker.Types.ListInferenceRecommendationsJobStepsResponse) => void): Request<SageMaker.Types.ListInferenceRecommendationsJobStepsResponse, AWSError>;
|
|
1443
|
+
/**
|
|
1444
|
+
* Returns a list of the subtasks for an Inference Recommender job. The supported subtasks are benchmarks, which evaluate the performance of your model on different instance types.
|
|
1445
|
+
*/
|
|
1446
|
+
listInferenceRecommendationsJobSteps(callback?: (err: AWSError, data: SageMaker.Types.ListInferenceRecommendationsJobStepsResponse) => void): Request<SageMaker.Types.ListInferenceRecommendationsJobStepsResponse, AWSError>;
|
|
1439
1447
|
/**
|
|
1440
1448
|
* Lists recommendation jobs that satisfy various filters.
|
|
1441
1449
|
*/
|
|
@@ -2932,7 +2940,7 @@ declare namespace SageMaker {
|
|
|
2932
2940
|
}
|
|
2933
2941
|
export type AutoMLMaxResults = number;
|
|
2934
2942
|
export type AutoMLMetricEnum = "Accuracy"|"MSE"|"F1"|"F1macro"|"AUC"|string;
|
|
2935
|
-
export type AutoMLMetricExtendedEnum = "Accuracy"|"MSE"|"F1"|"F1macro"|"AUC"|"RMSE"|"MAE"|"R2"|"BalancedAccuracy"|"Precision"|"PrecisionMacro"|"Recall"|"RecallMacro"|"LogLoss"|string;
|
|
2943
|
+
export type AutoMLMetricExtendedEnum = "Accuracy"|"MSE"|"F1"|"F1macro"|"AUC"|"RMSE"|"MAE"|"R2"|"BalancedAccuracy"|"Precision"|"PrecisionMacro"|"Recall"|"RecallMacro"|"LogLoss"|"InferenceLatency"|string;
|
|
2936
2944
|
export type AutoMLMode = "AUTO"|"ENSEMBLING"|"HYPERPARAMETER_TUNING"|string;
|
|
2937
2945
|
export type AutoMLNameContains = string;
|
|
2938
2946
|
export interface AutoMLOutputDataConfig {
|
|
@@ -7491,6 +7499,10 @@ declare namespace SageMaker {
|
|
|
7491
7499
|
* The recommendations made by Inference Recommender.
|
|
7492
7500
|
*/
|
|
7493
7501
|
InferenceRecommendations?: InferenceRecommendations;
|
|
7502
|
+
/**
|
|
7503
|
+
* The performance results from running an Inference Recommender job on an existing endpoint.
|
|
7504
|
+
*/
|
|
7505
|
+
EndpointPerformances?: EndpointPerformances;
|
|
7494
7506
|
}
|
|
7495
7507
|
export interface DescribeLabelingJobRequest {
|
|
7496
7508
|
/**
|
|
@@ -9470,6 +9482,12 @@ declare namespace SageMaker {
|
|
|
9470
9482
|
CreationTime: Timestamp;
|
|
9471
9483
|
}
|
|
9472
9484
|
export type EndpointConfigSummaryList = EndpointConfigSummary[];
|
|
9485
|
+
export interface EndpointInfo {
|
|
9486
|
+
/**
|
|
9487
|
+
* The name of a customer's endpoint.
|
|
9488
|
+
*/
|
|
9489
|
+
EndpointName: EndpointName;
|
|
9490
|
+
}
|
|
9473
9491
|
export interface EndpointInput {
|
|
9474
9492
|
/**
|
|
9475
9493
|
* An endpoint in customer's account which has enabled DataCaptureConfig enabled.
|
|
@@ -9547,6 +9565,14 @@ declare namespace SageMaker {
|
|
|
9547
9565
|
*/
|
|
9548
9566
|
InitialInstanceCount: Integer;
|
|
9549
9567
|
}
|
|
9568
|
+
export interface EndpointPerformance {
|
|
9569
|
+
/**
|
|
9570
|
+
* The metrics for an existing endpoint.
|
|
9571
|
+
*/
|
|
9572
|
+
Metrics: InferenceMetrics;
|
|
9573
|
+
EndpointInfo: EndpointInfo;
|
|
9574
|
+
}
|
|
9575
|
+
export type EndpointPerformances = EndpointPerformance[];
|
|
9550
9576
|
export type EndpointSortKey = "Name"|"CreationTime"|"Status"|string;
|
|
9551
9577
|
export type EndpointStatus = "OutOfService"|"Creating"|"Updating"|"SystemUpdating"|"RollingBack"|"InService"|"Deleting"|"Failed"|string;
|
|
9552
9578
|
export interface EndpointSummary {
|
|
@@ -9572,6 +9598,7 @@ declare namespace SageMaker {
|
|
|
9572
9598
|
EndpointStatus: EndpointStatus;
|
|
9573
9599
|
}
|
|
9574
9600
|
export type EndpointSummaryList = EndpointSummary[];
|
|
9601
|
+
export type Endpoints = EndpointInfo[];
|
|
9575
9602
|
export type EntityDescription = string;
|
|
9576
9603
|
export type EntityName = string;
|
|
9577
9604
|
export type EnvironmentKey = string;
|
|
@@ -10717,6 +10744,16 @@ declare namespace SageMaker {
|
|
|
10717
10744
|
}
|
|
10718
10745
|
export type InferenceExecutionMode = "Serial"|"Direct"|string;
|
|
10719
10746
|
export type InferenceImage = string;
|
|
10747
|
+
export interface InferenceMetrics {
|
|
10748
|
+
/**
|
|
10749
|
+
* The expected maximum number of requests per minute for the instance.
|
|
10750
|
+
*/
|
|
10751
|
+
MaxInvocations: Integer;
|
|
10752
|
+
/**
|
|
10753
|
+
* The expected model latency at maximum invocations per minute for the instance.
|
|
10754
|
+
*/
|
|
10755
|
+
ModelLatency: Integer;
|
|
10756
|
+
}
|
|
10720
10757
|
export interface InferenceRecommendation {
|
|
10721
10758
|
/**
|
|
10722
10759
|
* The metrics used to decide what recommendation to make.
|
|
@@ -10774,6 +10811,25 @@ declare namespace SageMaker {
|
|
|
10774
10811
|
*/
|
|
10775
10812
|
FailureReason?: FailureReason;
|
|
10776
10813
|
}
|
|
10814
|
+
export interface InferenceRecommendationsJobStep {
|
|
10815
|
+
/**
|
|
10816
|
+
* The type of the subtask. BENCHMARK: Evaluate the performance of your model on different instance types.
|
|
10817
|
+
*/
|
|
10818
|
+
StepType: RecommendationStepType;
|
|
10819
|
+
/**
|
|
10820
|
+
* The name of the Inference Recommender job.
|
|
10821
|
+
*/
|
|
10822
|
+
JobName: RecommendationJobName;
|
|
10823
|
+
/**
|
|
10824
|
+
* The current status of the benchmark.
|
|
10825
|
+
*/
|
|
10826
|
+
Status: RecommendationJobStatus;
|
|
10827
|
+
/**
|
|
10828
|
+
* The details for a specific benchmark.
|
|
10829
|
+
*/
|
|
10830
|
+
InferenceBenchmark?: RecommendationJobInferenceBenchmark;
|
|
10831
|
+
}
|
|
10832
|
+
export type InferenceRecommendationsJobSteps = InferenceRecommendationsJobStep[];
|
|
10777
10833
|
export type InferenceRecommendationsJobs = InferenceRecommendationsJob[];
|
|
10778
10834
|
export interface InferenceSpecification {
|
|
10779
10835
|
/**
|
|
@@ -12348,6 +12404,38 @@ declare namespace SageMaker {
|
|
|
12348
12404
|
*/
|
|
12349
12405
|
NextToken?: NextToken;
|
|
12350
12406
|
}
|
|
12407
|
+
export interface ListInferenceRecommendationsJobStepsRequest {
|
|
12408
|
+
/**
|
|
12409
|
+
* The name for the Inference Recommender job.
|
|
12410
|
+
*/
|
|
12411
|
+
JobName: RecommendationJobName;
|
|
12412
|
+
/**
|
|
12413
|
+
* A filter to return benchmarks of a specified status. If this field is left empty, then all benchmarks are returned.
|
|
12414
|
+
*/
|
|
12415
|
+
Status?: RecommendationJobStatus;
|
|
12416
|
+
/**
|
|
12417
|
+
* A filter to return details about the specified type of subtask. BENCHMARK: Evaluate the performance of your model on different instance types.
|
|
12418
|
+
*/
|
|
12419
|
+
StepType?: RecommendationStepType;
|
|
12420
|
+
/**
|
|
12421
|
+
* The maximum number of results to return.
|
|
12422
|
+
*/
|
|
12423
|
+
MaxResults?: MaxResults;
|
|
12424
|
+
/**
|
|
12425
|
+
* A token that you can specify to return more results from the list. Specify this field if you have a token that was returned from a previous request.
|
|
12426
|
+
*/
|
|
12427
|
+
NextToken?: NextToken;
|
|
12428
|
+
}
|
|
12429
|
+
export interface ListInferenceRecommendationsJobStepsResponse {
|
|
12430
|
+
/**
|
|
12431
|
+
* A list of all subtask details in Inference Recommender.
|
|
12432
|
+
*/
|
|
12433
|
+
Steps?: InferenceRecommendationsJobSteps;
|
|
12434
|
+
/**
|
|
12435
|
+
* A token that you can specify in your next request to return more results from the list.
|
|
12436
|
+
*/
|
|
12437
|
+
NextToken?: NextToken;
|
|
12438
|
+
}
|
|
12351
12439
|
export interface ListInferenceRecommendationsJobsRequest {
|
|
12352
12440
|
/**
|
|
12353
12441
|
* A filter that returns only jobs created after the specified time (timestamp).
|
|
@@ -16338,6 +16426,7 @@ declare namespace SageMaker {
|
|
|
16338
16426
|
}
|
|
16339
16427
|
export type RStudioServerProUserGroup = "R_STUDIO_ADMIN"|"R_STUDIO_USER"|string;
|
|
16340
16428
|
export type RealtimeInferenceInstanceTypes = ProductionVariantInstanceType[];
|
|
16429
|
+
export type RecommendationFailureReason = string;
|
|
16341
16430
|
export type RecommendationJobArn = string;
|
|
16342
16431
|
export interface RecommendationJobCompiledOutputConfig {
|
|
16343
16432
|
/**
|
|
@@ -16376,6 +16465,15 @@ declare namespace SageMaker {
|
|
|
16376
16465
|
SupportedInstanceTypes?: RecommendationJobSupportedInstanceTypes;
|
|
16377
16466
|
}
|
|
16378
16467
|
export type RecommendationJobDescription = string;
|
|
16468
|
+
export interface RecommendationJobInferenceBenchmark {
|
|
16469
|
+
Metrics?: RecommendationMetrics;
|
|
16470
|
+
EndpointConfiguration?: EndpointOutputConfiguration;
|
|
16471
|
+
ModelConfiguration: ModelConfiguration;
|
|
16472
|
+
/**
|
|
16473
|
+
* The reason why a benchmark failed.
|
|
16474
|
+
*/
|
|
16475
|
+
FailureReason?: RecommendationFailureReason;
|
|
16476
|
+
}
|
|
16379
16477
|
export interface RecommendationJobInputConfig {
|
|
16380
16478
|
/**
|
|
16381
16479
|
* The Amazon Resource Name (ARN) of a versioned model package.
|
|
@@ -16405,6 +16503,10 @@ declare namespace SageMaker {
|
|
|
16405
16503
|
* Specifies mandatory fields for running an Inference Recommender job. The fields specified in ContainerConfig override the corresponding fields in the model package.
|
|
16406
16504
|
*/
|
|
16407
16505
|
ContainerConfig?: RecommendationJobContainerConfig;
|
|
16506
|
+
/**
|
|
16507
|
+
* Existing customer endpoints on which to run an Inference Recommender job.
|
|
16508
|
+
*/
|
|
16509
|
+
Endpoints?: Endpoints;
|
|
16408
16510
|
}
|
|
16409
16511
|
export type RecommendationJobName = string;
|
|
16410
16512
|
export interface RecommendationJobOutputConfig {
|
|
@@ -16469,6 +16571,7 @@ declare namespace SageMaker {
|
|
|
16469
16571
|
*/
|
|
16470
16572
|
ModelLatency: Integer;
|
|
16471
16573
|
}
|
|
16574
|
+
export type RecommendationStepType = "BENCHMARK"|string;
|
|
16472
16575
|
export type RecordWrapper = "None"|"RecordIO"|string;
|
|
16473
16576
|
export type RedshiftClusterId = string;
|
|
16474
16577
|
export type RedshiftDatabase = string;
|
|
@@ -17793,7 +17896,7 @@ declare namespace SageMaker {
|
|
|
17793
17896
|
*/
|
|
17794
17897
|
InstanceType: TransformInstanceType;
|
|
17795
17898
|
/**
|
|
17796
|
-
* The number of ML compute instances to use in the transform job. For distributed transform jobs, specify a value greater than 1.
|
|
17899
|
+
* The number of ML compute instances to use in the transform job. The default value is 1, and the maximum is 100. For distributed transform jobs, specify a value greater than 1.
|
|
17797
17900
|
*/
|
|
17798
17901
|
InstanceCount: TransformInstanceCount;
|
|
17799
17902
|
/**
|