cdk-comprehend-s3olap 2.0.231 → 2.0.233
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/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +17 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +102 -56
- package/node_modules/aws-sdk/apis/dms-2016-01-01.min.json +60 -16
- package/node_modules/aws-sdk/apis/dms-2016-01-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +37 -19
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +12 -0
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +220 -115
- package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +354 -125
- package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +680 -556
- package/node_modules/aws-sdk/clients/batch.d.ts +9 -9
- package/node_modules/aws-sdk/clients/budgets.d.ts +1 -1
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +290 -213
- package/node_modules/aws-sdk/clients/dms.d.ts +65 -1
- package/node_modules/aws-sdk/clients/glue.d.ts +2 -2
- package/node_modules/aws-sdk/clients/internetmonitor.d.ts +49 -26
- package/node_modules/aws-sdk/clients/medialive.d.ts +16 -0
- package/node_modules/aws-sdk/clients/polly.d.ts +2 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +173 -8
- package/node_modules/aws-sdk/clients/resiliencehub.d.ts +588 -274
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +185 -8
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +325 -174
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +85 -85
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -1364,6 +1364,14 @@ declare class SageMaker extends Service {
|
|
1364
1364
|
* Gets the status of Service Catalog in SageMaker. Service Catalog is used to create SageMaker projects.
|
1365
1365
|
*/
|
1366
1366
|
getSagemakerServicecatalogPortfolioStatus(callback?: (err: AWSError, data: SageMaker.Types.GetSagemakerServicecatalogPortfolioStatusOutput) => void): Request<SageMaker.Types.GetSagemakerServicecatalogPortfolioStatusOutput, AWSError>;
|
1367
|
+
/**
|
1368
|
+
* Starts an Amazon SageMaker Inference Recommender autoscaling recommendation job. Returns recommendations for autoscaling policies that you can apply to your SageMaker endpoint.
|
1369
|
+
*/
|
1370
|
+
getScalingConfigurationRecommendation(params: SageMaker.Types.GetScalingConfigurationRecommendationRequest, callback?: (err: AWSError, data: SageMaker.Types.GetScalingConfigurationRecommendationResponse) => void): Request<SageMaker.Types.GetScalingConfigurationRecommendationResponse, AWSError>;
|
1371
|
+
/**
|
1372
|
+
* Starts an Amazon SageMaker Inference Recommender autoscaling recommendation job. Returns recommendations for autoscaling policies that you can apply to your SageMaker endpoint.
|
1373
|
+
*/
|
1374
|
+
getScalingConfigurationRecommendation(callback?: (err: AWSError, data: SageMaker.Types.GetScalingConfigurationRecommendationResponse) => void): Request<SageMaker.Types.GetScalingConfigurationRecommendationResponse, AWSError>;
|
1367
1375
|
/**
|
1368
1376
|
* An auto-complete API for the search functionality in the SageMaker console. It returns suggestions of possible matches for the property name to use in Search queries. Provides suggestions for HyperParameters, Tags, and Metrics.
|
1369
1377
|
*/
|
@@ -3549,7 +3557,7 @@ declare namespace SageMaker {
|
|
3549
3557
|
*/
|
3550
3558
|
StartTimeOffset?: MonitoringTimeOffsetString;
|
3551
3559
|
/**
|
3552
|
-
* If specified, monitoring jobs
|
3560
|
+
* If specified, monitoring jobs subtract this time from the end time. For information about using offsets for scheduling monitoring jobs, see Schedule Model Quality Monitoring Jobs.
|
3553
3561
|
*/
|
3554
3562
|
EndTimeOffset?: MonitoringTimeOffsetString;
|
3555
3563
|
}
|
@@ -6205,6 +6213,20 @@ declare namespace SageMaker {
|
|
6205
6213
|
export type CustomerMetadataKeyList = CustomerMetadataKey[];
|
6206
6214
|
export type CustomerMetadataMap = {[key: string]: CustomerMetadataValue};
|
6207
6215
|
export type CustomerMetadataValue = string;
|
6216
|
+
export interface CustomizedMetricSpecification {
|
6217
|
+
/**
|
6218
|
+
* The name of the customized metric.
|
6219
|
+
*/
|
6220
|
+
MetricName?: String;
|
6221
|
+
/**
|
6222
|
+
* The namespace of the customized metric.
|
6223
|
+
*/
|
6224
|
+
Namespace?: String;
|
6225
|
+
/**
|
6226
|
+
* The statistic of the customized metric.
|
6227
|
+
*/
|
6228
|
+
Statistic?: Statistic;
|
6229
|
+
}
|
6208
6230
|
export interface DataCaptureConfig {
|
6209
6231
|
/**
|
6210
6232
|
* Whether data capture should be enabled or disabled (defaults to enabled).
|
@@ -7948,7 +7970,7 @@ declare namespace SageMaker {
|
|
7948
7970
|
ProductionVariants?: ProductionVariantSummaryList;
|
7949
7971
|
DataCaptureConfig?: DataCaptureConfigSummary;
|
7950
7972
|
/**
|
7951
|
-
* The status of the endpoint. OutOfService: Endpoint is not available to take incoming requests. Creating: CreateEndpoint is executing. Updating: UpdateEndpoint or UpdateEndpointWeightsAndCapacities is executing. SystemUpdating: Endpoint is undergoing maintenance and cannot be updated or deleted or re-scaled until it has completed. This maintenance operation does not change any customer-specified values such as VPC config, KMS encryption, model, instance type, or instance count. RollingBack: Endpoint fails to scale up or down or change its variant weight and is in the process of rolling back to its previous configuration. Once the rollback completes, endpoint returns to an InService status. This transitional status only applies to an endpoint that has autoscaling enabled and is undergoing variant weight or capacity changes as part of an UpdateEndpointWeightsAndCapacities call or when the UpdateEndpointWeightsAndCapacities operation is called explicitly. InService: Endpoint is available to process incoming requests. Deleting: DeleteEndpoint is executing. Failed: Endpoint could not be created, updated, or re-scaled. Use the FailureReason value returned by DescribeEndpoint for information about the failure. DeleteEndpoint is the only operation that can be performed on a failed endpoint.
|
7973
|
+
* The status of the endpoint. OutOfService: Endpoint is not available to take incoming requests. Creating: CreateEndpoint is executing. Updating: UpdateEndpoint or UpdateEndpointWeightsAndCapacities is executing. SystemUpdating: Endpoint is undergoing maintenance and cannot be updated or deleted or re-scaled until it has completed. This maintenance operation does not change any customer-specified values such as VPC config, KMS encryption, model, instance type, or instance count. RollingBack: Endpoint fails to scale up or down or change its variant weight and is in the process of rolling back to its previous configuration. Once the rollback completes, endpoint returns to an InService status. This transitional status only applies to an endpoint that has autoscaling enabled and is undergoing variant weight or capacity changes as part of an UpdateEndpointWeightsAndCapacities call or when the UpdateEndpointWeightsAndCapacities operation is called explicitly. InService: Endpoint is available to process incoming requests. Deleting: DeleteEndpoint is executing. Failed: Endpoint could not be created, updated, or re-scaled. Use the FailureReason value returned by DescribeEndpoint for information about the failure. DeleteEndpoint is the only operation that can be performed on a failed endpoint. UpdateRollbackFailed: Both the rolling deployment and auto-rollback failed. Your endpoint is in service with a mix of the old and new endpoint configurations. For information about how to remedy this issue and restore the endpoint's status to InService, see Rolling Deployments.
|
7952
7974
|
*/
|
7953
7975
|
EndpointStatus: EndpointStatus;
|
7954
7976
|
/**
|
@@ -10460,6 +10482,7 @@ declare namespace SageMaker {
|
|
10460
10482
|
SecurityGroupIds?: DomainSecurityGroupIds;
|
10461
10483
|
}
|
10462
10484
|
export type DomainStatus = "Deleting"|"Failed"|"InService"|"Pending"|"Updating"|"Update_Failed"|"Delete_Failed"|string;
|
10485
|
+
export type Double = number;
|
10463
10486
|
export type DoubleParameterValue = number;
|
10464
10487
|
export interface DriftCheckBaselines {
|
10465
10488
|
/**
|
@@ -10523,6 +10546,28 @@ declare namespace SageMaker {
|
|
10523
10546
|
*/
|
10524
10547
|
Constraints?: MetricsSource;
|
10525
10548
|
}
|
10549
|
+
export interface DynamicScalingConfiguration {
|
10550
|
+
/**
|
10551
|
+
* The recommended minimum capacity to specify for your autoscaling policy.
|
10552
|
+
*/
|
10553
|
+
MinCapacity?: Integer;
|
10554
|
+
/**
|
10555
|
+
* The recommended maximum capacity to specify for your autoscaling policy.
|
10556
|
+
*/
|
10557
|
+
MaxCapacity?: Integer;
|
10558
|
+
/**
|
10559
|
+
* The recommended scale in cooldown time for your autoscaling policy.
|
10560
|
+
*/
|
10561
|
+
ScaleInCooldown?: Integer;
|
10562
|
+
/**
|
10563
|
+
* The recommended scale out cooldown time for your autoscaling policy.
|
10564
|
+
*/
|
10565
|
+
ScaleOutCooldown?: Integer;
|
10566
|
+
/**
|
10567
|
+
* An object of the scaling policies for each metric.
|
10568
|
+
*/
|
10569
|
+
ScalingPolicies?: ScalingPolicies;
|
10570
|
+
}
|
10526
10571
|
export interface EMRStepMetadata {
|
10527
10572
|
/**
|
10528
10573
|
* The identifier of the EMR cluster.
|
@@ -11379,6 +11424,7 @@ declare namespace SageMaker {
|
|
11379
11424
|
Value: MetricValue;
|
11380
11425
|
}
|
11381
11426
|
export type FinalMetricDataList = MetricData[];
|
11427
|
+
export type FlatInvocations = "Continue"|"Stop"|string;
|
11382
11428
|
export type Float = number;
|
11383
11429
|
export type FlowDefinitionArn = string;
|
11384
11430
|
export type FlowDefinitionName = string;
|
@@ -11506,6 +11552,58 @@ declare namespace SageMaker {
|
|
11506
11552
|
*/
|
11507
11553
|
Status?: SagemakerServicecatalogStatus;
|
11508
11554
|
}
|
11555
|
+
export interface GetScalingConfigurationRecommendationRequest {
|
11556
|
+
/**
|
11557
|
+
* The name of a previously completed Inference Recommender job.
|
11558
|
+
*/
|
11559
|
+
InferenceRecommendationsJobName: RecommendationJobName;
|
11560
|
+
/**
|
11561
|
+
* The recommendation ID of a previously completed inference recommendation. This ID should come from one of the recommendations returned by the job specified in the InferenceRecommendationsJobName field. Specify either this field or the EndpointName field.
|
11562
|
+
*/
|
11563
|
+
RecommendationId?: String;
|
11564
|
+
/**
|
11565
|
+
* The name of an endpoint benchmarked during a previously completed inference recommendation job. This name should come from one of the recommendations returned by the job specified in the InferenceRecommendationsJobName field. Specify either this field or the RecommendationId field.
|
11566
|
+
*/
|
11567
|
+
EndpointName?: EndpointName;
|
11568
|
+
/**
|
11569
|
+
* The percentage of how much utilization you want an instance to use before autoscaling. The default value is 50%.
|
11570
|
+
*/
|
11571
|
+
TargetCpuUtilizationPerCore?: UtilizationPercentagePerCore;
|
11572
|
+
/**
|
11573
|
+
* An object where you specify the anticipated traffic pattern for an endpoint.
|
11574
|
+
*/
|
11575
|
+
ScalingPolicyObjective?: ScalingPolicyObjective;
|
11576
|
+
}
|
11577
|
+
export interface GetScalingConfigurationRecommendationResponse {
|
11578
|
+
/**
|
11579
|
+
* The name of a previously completed Inference Recommender job.
|
11580
|
+
*/
|
11581
|
+
InferenceRecommendationsJobName?: RecommendationJobName;
|
11582
|
+
/**
|
11583
|
+
* The recommendation ID of a previously completed inference recommendation.
|
11584
|
+
*/
|
11585
|
+
RecommendationId?: String;
|
11586
|
+
/**
|
11587
|
+
* The name of an endpoint benchmarked during a previously completed Inference Recommender job.
|
11588
|
+
*/
|
11589
|
+
EndpointName?: EndpointName;
|
11590
|
+
/**
|
11591
|
+
* The percentage of how much utilization you want an instance to use before autoscaling, which you specified in the request. The default value is 50%.
|
11592
|
+
*/
|
11593
|
+
TargetCpuUtilizationPerCore?: UtilizationPercentagePerCore;
|
11594
|
+
/**
|
11595
|
+
* An object representing the anticipated traffic pattern for an endpoint that you specified in the request.
|
11596
|
+
*/
|
11597
|
+
ScalingPolicyObjective?: ScalingPolicyObjective;
|
11598
|
+
/**
|
11599
|
+
* An object with a list of metrics that were benchmarked during the previously completed Inference Recommender job.
|
11600
|
+
*/
|
11601
|
+
Metric?: ScalingPolicyMetric;
|
11602
|
+
/**
|
11603
|
+
* An object with the recommended values for you to specify when creating an autoscaling policy.
|
11604
|
+
*/
|
11605
|
+
DynamicScalingConfiguration?: DynamicScalingConfiguration;
|
11606
|
+
}
|
11509
11607
|
export interface GetSearchSuggestionsRequest {
|
11510
11608
|
/**
|
11511
11609
|
* The name of the SageMaker resource to search for.
|
@@ -16231,6 +16329,16 @@ declare namespace SageMaker {
|
|
16231
16329
|
export type MetricName = string;
|
16232
16330
|
export type MetricRegex = string;
|
16233
16331
|
export type MetricSetSource = "Train"|"Validation"|"Test"|string;
|
16332
|
+
export interface MetricSpecification {
|
16333
|
+
/**
|
16334
|
+
* Information about a predefined metric.
|
16335
|
+
*/
|
16336
|
+
Predefined?: PredefinedMetricSpecification;
|
16337
|
+
/**
|
16338
|
+
* Information about a customized metric.
|
16339
|
+
*/
|
16340
|
+
Customized?: CustomizedMetricSpecification;
|
16341
|
+
}
|
16234
16342
|
export type MetricValue = number;
|
16235
16343
|
export interface MetricsSource {
|
16236
16344
|
/**
|
@@ -16731,7 +16839,7 @@ declare namespace SageMaker {
|
|
16731
16839
|
export type ModelInsightsLocation = string;
|
16732
16840
|
export interface ModelLatencyThreshold {
|
16733
16841
|
/**
|
16734
|
-
* The model latency percentile threshold.
|
16842
|
+
* The model latency percentile threshold. For custom load tests, specify the value as P95.
|
16735
16843
|
*/
|
16736
16844
|
Percentile?: String64;
|
16737
16845
|
/**
|
@@ -17795,6 +17903,7 @@ declare namespace SageMaker {
|
|
17795
17903
|
}
|
17796
17904
|
export type NotificationTopicArn = string;
|
17797
17905
|
export type NumberOfHumanWorkersPerDataObject = number;
|
17906
|
+
export type NumberOfSteps = number;
|
17798
17907
|
export type ObjectiveStatus = "Succeeded"|"Pending"|"Failed"|string;
|
17799
17908
|
export type ObjectiveStatusCounter = number;
|
17800
17909
|
export interface ObjectiveStatusCounters {
|
@@ -18132,7 +18241,7 @@ declare namespace SageMaker {
|
|
18132
18241
|
export type Percentage = number;
|
18133
18242
|
export interface Phase {
|
18134
18243
|
/**
|
18135
|
-
* Specifies how many concurrent users to start with.
|
18244
|
+
* Specifies how many concurrent users to start with. The value should be between 1 and 3.
|
18136
18245
|
*/
|
18137
18246
|
InitialNumberOfUsers?: InitialNumberOfUsers;
|
18138
18247
|
/**
|
@@ -18140,7 +18249,7 @@ declare namespace SageMaker {
|
|
18140
18249
|
*/
|
18141
18250
|
SpawnRate?: SpawnRate;
|
18142
18251
|
/**
|
18143
|
-
* Specifies how long traffic phase should be.
|
18252
|
+
* Specifies how long a traffic phase should be. For custom load tests, the value should be between 120 and 3600. This value should not exceed JobDurationInSeconds.
|
18144
18253
|
*/
|
18145
18254
|
DurationInSeconds?: TrafficDurationInSeconds;
|
18146
18255
|
}
|
@@ -18447,6 +18556,12 @@ declare namespace SageMaker {
|
|
18447
18556
|
export type PipelineSummaryList = PipelineSummary[];
|
18448
18557
|
export type PlatformIdentifier = string;
|
18449
18558
|
export type PolicyString = string;
|
18559
|
+
export interface PredefinedMetricSpecification {
|
18560
|
+
/**
|
18561
|
+
* The metric type. You can only apply SageMaker metric types to SageMaker endpoints.
|
18562
|
+
*/
|
18563
|
+
PredefinedMetricType?: String;
|
18564
|
+
}
|
18450
18565
|
export type PresignedDomainUrl = string;
|
18451
18566
|
export type ProbabilityThresholdAttribute = number;
|
18452
18567
|
export type ProblemType = "BinaryClassification"|"MulticlassClassification"|"Regression"|string;
|
@@ -19340,7 +19455,7 @@ declare namespace SageMaker {
|
|
19340
19455
|
*/
|
19341
19456
|
ModelPackageVersionArn?: ModelPackageArn;
|
19342
19457
|
/**
|
19343
|
-
* Specifies the maximum duration of the job, in seconds
|
19458
|
+
* Specifies the maximum duration of the job, in seconds. The maximum value is 7200.
|
19344
19459
|
*/
|
19345
19460
|
JobDurationInSeconds?: JobDurationInSeconds;
|
19346
19461
|
/**
|
@@ -19417,6 +19532,10 @@ declare namespace SageMaker {
|
|
19417
19532
|
* The interval of time taken by a model to respond as viewed from SageMaker. The interval includes the local communication time taken to send the request and to fetch the response from the container of a model and the time taken to complete the inference in the container.
|
19418
19533
|
*/
|
19419
19534
|
ModelLatencyThresholds?: ModelLatencyThresholds;
|
19535
|
+
/**
|
19536
|
+
* Stops a load test when the number of invocations (TPS) peaks and flattens, which means that the instance has reached capacity. The default value is Stop. If you want the load test to continue after invocations have flattened, set the value to Continue.
|
19537
|
+
*/
|
19538
|
+
FlatInvocations?: FlatInvocations;
|
19420
19539
|
}
|
19421
19540
|
export type RecommendationJobSupportedContentTypes = String[];
|
19422
19541
|
export type RecommendationJobSupportedEndpointType = "RealTime"|"Serverless"|string;
|
@@ -19791,6 +19910,33 @@ declare namespace SageMaker {
|
|
19791
19910
|
export type SagemakerServicecatalogStatus = "Enabled"|"Disabled"|string;
|
19792
19911
|
export type SampleWeightAttributeName = string;
|
19793
19912
|
export type SamplingPercentage = number;
|
19913
|
+
export type ScalingPolicies = ScalingPolicy[];
|
19914
|
+
export interface ScalingPolicy {
|
19915
|
+
/**
|
19916
|
+
* A target tracking scaling policy. Includes support for predefined or customized metrics.
|
19917
|
+
*/
|
19918
|
+
TargetTracking?: TargetTrackingScalingPolicyConfiguration;
|
19919
|
+
}
|
19920
|
+
export interface ScalingPolicyMetric {
|
19921
|
+
/**
|
19922
|
+
* The number of invocations sent to a model, normalized by InstanceCount in each ProductionVariant. 1/numberOfInstances is sent as the value on each request, where numberOfInstances is the number of active instances for the ProductionVariant behind the endpoint at the time of the request.
|
19923
|
+
*/
|
19924
|
+
InvocationsPerInstance?: Integer;
|
19925
|
+
/**
|
19926
|
+
* The interval of time taken by a model to respond as viewed from SageMaker. This interval includes the local communication times taken to send the request and to fetch the response from the container of a model and the time taken to complete the inference in the container.
|
19927
|
+
*/
|
19928
|
+
ModelLatency?: Integer;
|
19929
|
+
}
|
19930
|
+
export interface ScalingPolicyObjective {
|
19931
|
+
/**
|
19932
|
+
* The minimum number of expected requests to your endpoint per minute.
|
19933
|
+
*/
|
19934
|
+
MinInvocationsPerMinute?: Integer;
|
19935
|
+
/**
|
19936
|
+
* The maximum number of expected requests to your endpoint per minute.
|
19937
|
+
*/
|
19938
|
+
MaxInvocationsPerMinute?: Integer;
|
19939
|
+
}
|
19794
19940
|
export interface ScheduleConfig {
|
19795
19941
|
/**
|
19796
19942
|
* A cron expression that describes details about the monitoring schedule. Currently the only supported cron expressions are: If you want to set the job to start every hour, please use the following: Hourly: cron(0 * ? * * *) If you want to start the job daily: cron(0 [00-23] ? * * *) For example, the following are valid cron expressions: Daily at noon UTC: cron(0 12 ? * * *) Daily at midnight UTC: cron(0 0 ? * * *) To support running every 6, 12 hours, the following are also supported: cron(0 [00-23]/[01-24] ? * * *) For example, the following are valid cron expressions: Every 12 hours, starting at 5pm UTC: cron(0 17/12 ? * * *) Every two hours starting at midnight: cron(0 0/2 ? * * *) Even though the cron expression is set to start at 5PM UTC, note that there could be a delay of 0-20 minutes from the actual requested time to run the execution. We recommend that if you would like a daily schedule, you do not provide this parameter. Amazon SageMaker will pick a time for running every day.
|
@@ -20146,6 +20292,20 @@ declare namespace SageMaker {
|
|
20146
20292
|
export type SpawnRate = number;
|
20147
20293
|
export type SplitType = "None"|"Line"|"RecordIO"|"TFRecord"|string;
|
20148
20294
|
export type StageStatus = "CREATING"|"READYTODEPLOY"|"STARTING"|"INPROGRESS"|"DEPLOYED"|"FAILED"|"STOPPING"|"STOPPED"|string;
|
20295
|
+
export interface Stairs {
|
20296
|
+
/**
|
20297
|
+
* Defines how long each traffic step should be.
|
20298
|
+
*/
|
20299
|
+
DurationInSeconds?: TrafficDurationInSeconds;
|
20300
|
+
/**
|
20301
|
+
* Specifies how many steps to perform during traffic.
|
20302
|
+
*/
|
20303
|
+
NumberOfSteps?: NumberOfSteps;
|
20304
|
+
/**
|
20305
|
+
* Specifies how many new users to spawn in each step.
|
20306
|
+
*/
|
20307
|
+
UsersPerStep?: UsersPerStep;
|
20308
|
+
}
|
20149
20309
|
export interface StartEdgeDeploymentStageRequest {
|
20150
20310
|
/**
|
20151
20311
|
* The name of the edge deployment plan to start.
|
@@ -20216,6 +20376,7 @@ declare namespace SageMaker {
|
|
20216
20376
|
*/
|
20217
20377
|
PipelineExecutionArn?: PipelineExecutionArn;
|
20218
20378
|
}
|
20379
|
+
export type Statistic = "Average"|"Minimum"|"Maximum"|"SampleCount"|"Sum"|string;
|
20219
20380
|
export type StatusDetails = string;
|
20220
20381
|
export type StatusMessage = string;
|
20221
20382
|
export type StepDescription = string;
|
@@ -20497,6 +20658,16 @@ declare namespace SageMaker {
|
|
20497
20658
|
export type TargetPlatformAccelerator = "INTEL_GRAPHICS"|"MALI"|"NVIDIA"|"NNA"|string;
|
20498
20659
|
export type TargetPlatformArch = "X86_64"|"X86"|"ARM64"|"ARM_EABI"|"ARM_EABIHF"|string;
|
20499
20660
|
export type TargetPlatformOs = "ANDROID"|"LINUX"|string;
|
20661
|
+
export interface TargetTrackingScalingPolicyConfiguration {
|
20662
|
+
/**
|
20663
|
+
* An object containing information about a metric.
|
20664
|
+
*/
|
20665
|
+
MetricSpecification?: MetricSpecification;
|
20666
|
+
/**
|
20667
|
+
* The recommended target value to specify for the metric when creating a scaling policy.
|
20668
|
+
*/
|
20669
|
+
TargetValue?: Double;
|
20670
|
+
}
|
20500
20671
|
export type TaskAvailabilityLifetimeInSeconds = number;
|
20501
20672
|
export type TaskCount = number;
|
20502
20673
|
export type TaskDescription = string;
|
@@ -20611,13 +20782,17 @@ declare namespace SageMaker {
|
|
20611
20782
|
export type TrafficDurationInSeconds = number;
|
20612
20783
|
export interface TrafficPattern {
|
20613
20784
|
/**
|
20614
|
-
* Defines the traffic patterns.
|
20785
|
+
* Defines the traffic patterns. Choose either PHASES or STAIRS.
|
20615
20786
|
*/
|
20616
20787
|
TrafficType?: TrafficType;
|
20617
20788
|
/**
|
20618
20789
|
* Defines the phases traffic specification.
|
20619
20790
|
*/
|
20620
20791
|
Phases?: Phases;
|
20792
|
+
/**
|
20793
|
+
* Defines the stairs traffic pattern.
|
20794
|
+
*/
|
20795
|
+
Stairs?: Stairs;
|
20621
20796
|
}
|
20622
20797
|
export interface TrafficRoutingConfig {
|
20623
20798
|
/**
|
@@ -20638,7 +20813,7 @@ declare namespace SageMaker {
|
|
20638
20813
|
LinearStepSize?: CapacitySize;
|
20639
20814
|
}
|
20640
20815
|
export type TrafficRoutingConfigType = "ALL_AT_ONCE"|"CANARY"|"LINEAR"|string;
|
20641
|
-
export type TrafficType = "PHASES"|string;
|
20816
|
+
export type TrafficType = "PHASES"|"STAIRS"|string;
|
20642
20817
|
export type TrainingContainerArgument = string;
|
20643
20818
|
export type TrainingContainerArguments = TrainingContainerArgument[];
|
20644
20819
|
export type TrainingContainerEntrypoint = TrainingContainerEntrypointString[];
|
@@ -22473,7 +22648,9 @@ declare namespace SageMaker {
|
|
22473
22648
|
*/
|
22474
22649
|
CanvasAppSettings?: CanvasAppSettings;
|
22475
22650
|
}
|
22651
|
+
export type UsersPerStep = number;
|
22476
22652
|
export type UtilizationMetric = number;
|
22653
|
+
export type UtilizationPercentagePerCore = number;
|
22477
22654
|
export type ValidationFraction = number;
|
22478
22655
|
export type VariantName = string;
|
22479
22656
|
export interface VariantProperty {
|