@aws-sdk/client-sagemaker 3.435.0 → 3.437.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +12 -0
- package/dist-cjs/models/models_2.js +1 -5
- package/dist-cjs/models/models_3.js +6 -2
- package/dist-cjs/runtimeConfig.js +2 -0
- package/dist-cjs/runtimeConfig.shared.js +15 -13
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/models/models_2.js +0 -4
- package/dist-es/models/models_3.js +4 -0
- package/dist-es/runtimeConfig.js +2 -0
- package/dist-es/runtimeConfig.shared.js +15 -13
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +10 -1
- package/dist-types/commands/CreateDataQualityJobDefinitionCommand.d.ts +1 -2
- package/dist-types/commands/DeleteContextCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAutoMLJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +14 -7
- package/dist-types/commands/ListCandidatesForAutoMLJobCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +206 -119
- package/dist-types/models/models_1.d.ts +82 -27
- package/dist-types/models/models_2.d.ts +23 -85
- package/dist-types/models/models_3.d.ts +85 -220
- package/dist-types/models/models_4.d.ts +221 -4
- package/dist-types/ts3.4/commands/CreateDataQualityJobDefinitionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +41 -15
- package/dist-types/ts3.4/models/models_1.d.ts +18 -7
- package/dist-types/ts3.4/models/models_2.d.ts +7 -21
- package/dist-types/ts3.4/models/models_3.d.ts +23 -40
- package/dist-types/ts3.4/models/models_4.d.ts +41 -3
- package/package.json +5 -5
|
@@ -1,5 +1,81 @@
|
|
|
1
1
|
import { LazyJsonString as __LazyJsonString } from "@smithy/smithy-client";
|
|
2
|
-
import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfig, CollectionConfiguration, CollectionType, ContainerDefinition, ContentClassifier, ContinuousParameterRange, ConvergenceDetected, EndpointInput, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource,
|
|
2
|
+
import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfig, CollectionConfiguration, CollectionType, ContainerDefinition, ContentClassifier, ContinuousParameterRange, ConvergenceDetected, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, EndpointInput, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, OutputDataConfig, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, VpcConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* <p>A time limit for how long the monitoring job is allowed to run before stopping.</p>
|
|
6
|
+
*/
|
|
7
|
+
export interface MonitoringStoppingCondition {
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
* <p>The maximum runtime allowed in seconds.</p>
|
|
11
|
+
* <note>
|
|
12
|
+
* <p>The <code>MaxRuntimeInSeconds</code> cannot exceed the frequency of the job. For data
|
|
13
|
+
* quality and model explainability, this can be up to 3600 seconds for an hourly schedule.
|
|
14
|
+
* For model bias and model quality hourly schedules, this can be up to 1800
|
|
15
|
+
* seconds.</p>
|
|
16
|
+
* </note>
|
|
17
|
+
*/
|
|
18
|
+
MaxRuntimeInSeconds: number | undefined;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateDataQualityJobDefinitionRequest {
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>The name for the monitoring job definition.</p>
|
|
27
|
+
*/
|
|
28
|
+
JobDefinitionName: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* <p>Configures the constraints and baselines for the monitoring job.</p>
|
|
32
|
+
*/
|
|
33
|
+
DataQualityBaselineConfig?: DataQualityBaselineConfig;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* <p>Specifies the container that runs the monitoring job.</p>
|
|
37
|
+
*/
|
|
38
|
+
DataQualityAppSpecification: DataQualityAppSpecification | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* <p>A list of inputs for the monitoring job. Currently endpoints are supported as monitoring
|
|
42
|
+
* inputs.</p>
|
|
43
|
+
*/
|
|
44
|
+
DataQualityJobInput: DataQualityJobInput | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* <p>The output configuration for monitoring jobs.</p>
|
|
48
|
+
*/
|
|
49
|
+
DataQualityJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
* <p>Identifies the resources to deploy for a monitoring job.</p>
|
|
53
|
+
*/
|
|
54
|
+
JobResources: MonitoringResources | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
* <p>Specifies networking configuration for the monitoring job.</p>
|
|
58
|
+
*/
|
|
59
|
+
NetworkConfig?: MonitoringNetworkConfig;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can
|
|
63
|
+
* assume to perform tasks on your behalf.</p>
|
|
64
|
+
*/
|
|
65
|
+
RoleArn: string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* <p>A time limit for how long the monitoring job is allowed to run before stopping.</p>
|
|
69
|
+
*/
|
|
70
|
+
StoppingCondition?: MonitoringStoppingCondition;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
* <p>(Optional) An array of key-value pairs. For more information, see
|
|
74
|
+
* <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL">
|
|
75
|
+
* Using Cost Allocation Tags</a> in the <i>Amazon Web Services Billing and Cost Management User Guide</i>.</p>
|
|
76
|
+
*/
|
|
77
|
+
Tags?: Tag[];
|
|
78
|
+
}
|
|
3
79
|
/**
|
|
4
80
|
* @public
|
|
5
81
|
*/
|
|
@@ -3228,12 +3304,11 @@ export interface HyperParameterTrainingJobDefinition {
|
|
|
3228
3304
|
DefinitionName?: string;
|
|
3229
3305
|
/**
|
|
3230
3306
|
* @public
|
|
3231
|
-
* <p>Defines the objective metric for a hyperparameter tuning job.
|
|
3232
|
-
*
|
|
3233
|
-
*
|
|
3234
|
-
*
|
|
3235
|
-
* metric,
|
|
3236
|
-
* parameter.</p>
|
|
3307
|
+
* <p>Defines the objective metric for a hyperparameter tuning job. Hyperparameter tuning
|
|
3308
|
+
* uses the value of this metric to evaluate the training jobs it launches, and returns the
|
|
3309
|
+
* training job that results in either the highest or lowest value for this metric,
|
|
3310
|
+
* depending on the value you specify for the <code>Type</code> parameter. If you want to
|
|
3311
|
+
* define a custom objective metric, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-define-metrics-variables.html">Define metrics and environment variables</a>.</p>
|
|
3237
3312
|
*/
|
|
3238
3313
|
TuningObjective?: HyperParameterTuningJobObjective;
|
|
3239
3314
|
/**
|
|
@@ -10895,26 +10970,6 @@ export interface DeleteCodeRepositoryInput {
|
|
|
10895
10970
|
*/
|
|
10896
10971
|
CodeRepositoryName: string | undefined;
|
|
10897
10972
|
}
|
|
10898
|
-
/**
|
|
10899
|
-
* @public
|
|
10900
|
-
*/
|
|
10901
|
-
export interface DeleteContextRequest {
|
|
10902
|
-
/**
|
|
10903
|
-
* @public
|
|
10904
|
-
* <p>The name of the context to delete.</p>
|
|
10905
|
-
*/
|
|
10906
|
-
ContextName: string | undefined;
|
|
10907
|
-
}
|
|
10908
|
-
/**
|
|
10909
|
-
* @public
|
|
10910
|
-
*/
|
|
10911
|
-
export interface DeleteContextResponse {
|
|
10912
|
-
/**
|
|
10913
|
-
* @public
|
|
10914
|
-
* <p>The Amazon Resource Name (ARN) of the context.</p>
|
|
10915
|
-
*/
|
|
10916
|
-
ContextArn?: string;
|
|
10917
|
-
}
|
|
10918
10973
|
/**
|
|
10919
10974
|
* @internal
|
|
10920
10975
|
*/
|
|
@@ -1,5 +1,25 @@
|
|
|
1
|
-
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, Channel, CheckpointConfig, CognitoConfig, CompilationJobStatus, ContainerDefinition, ContextSource, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources,
|
|
2
|
-
import { _InstanceType, CustomizedMetricSpecification, DataCaptureConfig, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExecutionRoleIdentityConfig, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreConfig, OnlineStoreConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantServerlessConfig, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, UserSettings, VendorGuidance } from "./models_1";
|
|
1
|
+
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, Channel, CheckpointConfig, CognitoConfig, CompilationJobStatus, ContainerDefinition, ContextSource, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, NeoVpcConfig, ObjectiveStatus, OutputConfig, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, CustomizedMetricSpecification, DataCaptureConfig, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExecutionRoleIdentityConfig, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreConfig, OnlineStoreConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantServerlessConfig, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, UserSettings, VendorGuidance } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface DeleteContextRequest {
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
* <p>The name of the context to delete.</p>
|
|
10
|
+
*/
|
|
11
|
+
ContextName: string | undefined;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export interface DeleteContextResponse {
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* <p>The Amazon Resource Name (ARN) of the context.</p>
|
|
20
|
+
*/
|
|
21
|
+
ContextArn?: string;
|
|
22
|
+
}
|
|
3
23
|
/**
|
|
4
24
|
* @public
|
|
5
25
|
*/
|
|
@@ -1144,7 +1164,7 @@ export interface ModelDeployResult {
|
|
|
1144
1164
|
export interface ResolvedAttributes {
|
|
1145
1165
|
/**
|
|
1146
1166
|
* @public
|
|
1147
|
-
* <p>Specifies a metric to minimize or maximize as the objective of
|
|
1167
|
+
* <p>Specifies a metric to minimize or maximize as the objective of an AutoML job.</p>
|
|
1148
1168
|
*/
|
|
1149
1169
|
AutoMLJobObjective?: AutoMLJobObjective;
|
|
1150
1170
|
/**
|
|
@@ -9279,88 +9299,6 @@ export interface MonitoringSchedule {
|
|
|
9279
9299
|
*/
|
|
9280
9300
|
Tags?: Tag[];
|
|
9281
9301
|
}
|
|
9282
|
-
/**
|
|
9283
|
-
* @public
|
|
9284
|
-
* <p>A hosted endpoint for real-time inference.</p>
|
|
9285
|
-
*/
|
|
9286
|
-
export interface Endpoint {
|
|
9287
|
-
/**
|
|
9288
|
-
* @public
|
|
9289
|
-
* <p>The name of the endpoint.</p>
|
|
9290
|
-
*/
|
|
9291
|
-
EndpointName: string | undefined;
|
|
9292
|
-
/**
|
|
9293
|
-
* @public
|
|
9294
|
-
* <p>The Amazon Resource Name (ARN) of the endpoint.</p>
|
|
9295
|
-
*/
|
|
9296
|
-
EndpointArn: string | undefined;
|
|
9297
|
-
/**
|
|
9298
|
-
* @public
|
|
9299
|
-
* <p>The endpoint configuration associated with the endpoint.</p>
|
|
9300
|
-
*/
|
|
9301
|
-
EndpointConfigName: string | undefined;
|
|
9302
|
-
/**
|
|
9303
|
-
* @public
|
|
9304
|
-
* <p>A list of the production variants hosted on the endpoint. Each production variant is a
|
|
9305
|
-
* model.</p>
|
|
9306
|
-
*/
|
|
9307
|
-
ProductionVariants?: ProductionVariantSummary[];
|
|
9308
|
-
/**
|
|
9309
|
-
* @public
|
|
9310
|
-
* <p>The currently active data capture configuration used by your Endpoint.</p>
|
|
9311
|
-
*/
|
|
9312
|
-
DataCaptureConfig?: DataCaptureConfigSummary;
|
|
9313
|
-
/**
|
|
9314
|
-
* @public
|
|
9315
|
-
* <p>The status of the endpoint.</p>
|
|
9316
|
-
*/
|
|
9317
|
-
EndpointStatus: EndpointStatus | undefined;
|
|
9318
|
-
/**
|
|
9319
|
-
* @public
|
|
9320
|
-
* <p>If the endpoint failed, the reason it failed.</p>
|
|
9321
|
-
*/
|
|
9322
|
-
FailureReason?: string;
|
|
9323
|
-
/**
|
|
9324
|
-
* @public
|
|
9325
|
-
* <p>The time that the endpoint was created.</p>
|
|
9326
|
-
*/
|
|
9327
|
-
CreationTime: Date | undefined;
|
|
9328
|
-
/**
|
|
9329
|
-
* @public
|
|
9330
|
-
* <p>The last time the endpoint was modified.</p>
|
|
9331
|
-
*/
|
|
9332
|
-
LastModifiedTime: Date | undefined;
|
|
9333
|
-
/**
|
|
9334
|
-
* @public
|
|
9335
|
-
* <p>A list of monitoring schedules for the endpoint. For information about model
|
|
9336
|
-
* monitoring, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html">Amazon SageMaker Model Monitor</a>.</p>
|
|
9337
|
-
*/
|
|
9338
|
-
MonitoringSchedules?: MonitoringSchedule[];
|
|
9339
|
-
/**
|
|
9340
|
-
* @public
|
|
9341
|
-
* <p>A list of the tags associated with the endpoint. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the <i>Amazon Web Services General
|
|
9342
|
-
* Reference Guide</i>.</p>
|
|
9343
|
-
*/
|
|
9344
|
-
Tags?: Tag[];
|
|
9345
|
-
/**
|
|
9346
|
-
* @public
|
|
9347
|
-
* <p>A list of the shadow variants hosted on the endpoint. Each shadow variant is a model
|
|
9348
|
-
* in shadow mode with production traffic replicated from the production variant.</p>
|
|
9349
|
-
*/
|
|
9350
|
-
ShadowProductionVariants?: ProductionVariantSummary[];
|
|
9351
|
-
}
|
|
9352
|
-
/**
|
|
9353
|
-
* @public
|
|
9354
|
-
* @enum
|
|
9355
|
-
*/
|
|
9356
|
-
export declare const EndpointConfigSortKey: {
|
|
9357
|
-
readonly CreationTime: "CreationTime";
|
|
9358
|
-
readonly Name: "Name";
|
|
9359
|
-
};
|
|
9360
|
-
/**
|
|
9361
|
-
* @public
|
|
9362
|
-
*/
|
|
9363
|
-
export type EndpointConfigSortKey = (typeof EndpointConfigSortKey)[keyof typeof EndpointConfigSortKey];
|
|
9364
9302
|
/**
|
|
9365
9303
|
* @internal
|
|
9366
9304
|
*/
|
|
@@ -1,6 +1,88 @@
|
|
|
1
|
-
import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder,
|
|
2
|
-
import { _InstanceType,
|
|
3
|
-
import { DeploymentRecommendation, DeviceDeploymentSummary, DeviceFleetSummary, DeviceStats, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgeModelStat, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata,
|
|
1
|
+
import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, ModelApprovalStatus, ModelPackageStatus, OutputParameter, Tag, UserContext, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataCaptureConfigSummary, EdgeOutputConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardSecurityConfig, ModelCardStatus, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, RecommendationJobType, ResourceLimits, StudioLifecycleConfigAppType, TrialComponentStatus } from "./models_1";
|
|
3
|
+
import { DeploymentRecommendation, DeviceDeploymentSummary, DeviceFleetSummary, DeviceStats, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgeModelStat, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExperimentStatus, InferenceMetrics, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, MonitoringSchedule, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, PipelineExecutionStatus, ProcessingJobStatus, ProductionVariantSummary, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ScheduleStatus, SpaceStatus, SubscribedWorkteam, TrainingJobStatus, TrainingJobStatusCounters, TransformJobStatus, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* <p>A hosted endpoint for real-time inference.</p>
|
|
7
|
+
*/
|
|
8
|
+
export interface Endpoint {
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
* <p>The name of the endpoint.</p>
|
|
12
|
+
*/
|
|
13
|
+
EndpointName: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* <p>The Amazon Resource Name (ARN) of the endpoint.</p>
|
|
17
|
+
*/
|
|
18
|
+
EndpointArn: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* <p>The endpoint configuration associated with the endpoint.</p>
|
|
22
|
+
*/
|
|
23
|
+
EndpointConfigName: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>A list of the production variants hosted on the endpoint. Each production variant is a
|
|
27
|
+
* model.</p>
|
|
28
|
+
*/
|
|
29
|
+
ProductionVariants?: ProductionVariantSummary[];
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* <p>The currently active data capture configuration used by your Endpoint.</p>
|
|
33
|
+
*/
|
|
34
|
+
DataCaptureConfig?: DataCaptureConfigSummary;
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
* <p>The status of the endpoint.</p>
|
|
38
|
+
*/
|
|
39
|
+
EndpointStatus: EndpointStatus | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
* <p>If the endpoint failed, the reason it failed.</p>
|
|
43
|
+
*/
|
|
44
|
+
FailureReason?: string;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* <p>The time that the endpoint was created.</p>
|
|
48
|
+
*/
|
|
49
|
+
CreationTime: Date | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
* <p>The last time the endpoint was modified.</p>
|
|
53
|
+
*/
|
|
54
|
+
LastModifiedTime: Date | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
* <p>A list of monitoring schedules for the endpoint. For information about model
|
|
58
|
+
* monitoring, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html">Amazon SageMaker Model Monitor</a>.</p>
|
|
59
|
+
*/
|
|
60
|
+
MonitoringSchedules?: MonitoringSchedule[];
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
* <p>A list of the tags associated with the endpoint. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the <i>Amazon Web Services General
|
|
64
|
+
* Reference Guide</i>.</p>
|
|
65
|
+
*/
|
|
66
|
+
Tags?: Tag[];
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
* <p>A list of the shadow variants hosted on the endpoint. Each shadow variant is a model
|
|
70
|
+
* in shadow mode with production traffic replicated from the production variant.</p>
|
|
71
|
+
*/
|
|
72
|
+
ShadowProductionVariants?: ProductionVariantSummary[];
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* @enum
|
|
77
|
+
*/
|
|
78
|
+
export declare const EndpointConfigSortKey: {
|
|
79
|
+
readonly CreationTime: "CreationTime";
|
|
80
|
+
readonly Name: "Name";
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export type EndpointConfigSortKey = (typeof EndpointConfigSortKey)[keyof typeof EndpointConfigSortKey];
|
|
4
86
|
/**
|
|
5
87
|
* @public
|
|
6
88
|
* <p>Provides summary information for an endpoint configuration.</p>
|
|
@@ -8897,223 +8979,6 @@ export interface ModelCard {
|
|
|
8897
8979
|
*/
|
|
8898
8980
|
ModelPackageGroupName?: string;
|
|
8899
8981
|
}
|
|
8900
|
-
/**
|
|
8901
|
-
* @public
|
|
8902
|
-
* <p>An endpoint that hosts a model displayed in the Amazon SageMaker Model Dashboard.</p>
|
|
8903
|
-
*/
|
|
8904
|
-
export interface ModelDashboardEndpoint {
|
|
8905
|
-
/**
|
|
8906
|
-
* @public
|
|
8907
|
-
* <p>The endpoint name.</p>
|
|
8908
|
-
*/
|
|
8909
|
-
EndpointName: string | undefined;
|
|
8910
|
-
/**
|
|
8911
|
-
* @public
|
|
8912
|
-
* <p>The Amazon Resource Name (ARN) of the endpoint.</p>
|
|
8913
|
-
*/
|
|
8914
|
-
EndpointArn: string | undefined;
|
|
8915
|
-
/**
|
|
8916
|
-
* @public
|
|
8917
|
-
* <p>A timestamp that indicates when the endpoint was created.</p>
|
|
8918
|
-
*/
|
|
8919
|
-
CreationTime: Date | undefined;
|
|
8920
|
-
/**
|
|
8921
|
-
* @public
|
|
8922
|
-
* <p>The last time the endpoint was modified.</p>
|
|
8923
|
-
*/
|
|
8924
|
-
LastModifiedTime: Date | undefined;
|
|
8925
|
-
/**
|
|
8926
|
-
* @public
|
|
8927
|
-
* <p>The endpoint status.</p>
|
|
8928
|
-
*/
|
|
8929
|
-
EndpointStatus: EndpointStatus | undefined;
|
|
8930
|
-
}
|
|
8931
|
-
/**
|
|
8932
|
-
* @public
|
|
8933
|
-
* <p>A batch transform job. For information about SageMaker batch transform, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html">Use Batch
|
|
8934
|
-
* Transform</a>.</p>
|
|
8935
|
-
*/
|
|
8936
|
-
export interface TransformJob {
|
|
8937
|
-
/**
|
|
8938
|
-
* @public
|
|
8939
|
-
* <p>The name of the transform job.</p>
|
|
8940
|
-
*/
|
|
8941
|
-
TransformJobName?: string;
|
|
8942
|
-
/**
|
|
8943
|
-
* @public
|
|
8944
|
-
* <p>The Amazon Resource Name (ARN) of the transform job.</p>
|
|
8945
|
-
*/
|
|
8946
|
-
TransformJobArn?: string;
|
|
8947
|
-
/**
|
|
8948
|
-
* @public
|
|
8949
|
-
* <p>The status of the transform job.</p>
|
|
8950
|
-
* <p>Transform job statuses are:</p>
|
|
8951
|
-
* <ul>
|
|
8952
|
-
* <li>
|
|
8953
|
-
* <p>
|
|
8954
|
-
* <code>InProgress</code> - The job is in progress.</p>
|
|
8955
|
-
* </li>
|
|
8956
|
-
* <li>
|
|
8957
|
-
* <p>
|
|
8958
|
-
* <code>Completed</code> - The job has completed.</p>
|
|
8959
|
-
* </li>
|
|
8960
|
-
* <li>
|
|
8961
|
-
* <p>
|
|
8962
|
-
* <code>Failed</code> - The transform job has failed. To see the reason for the failure,
|
|
8963
|
-
* see the <code>FailureReason</code> field in the response to a
|
|
8964
|
-
* <code>DescribeTransformJob</code> call.</p>
|
|
8965
|
-
* </li>
|
|
8966
|
-
* <li>
|
|
8967
|
-
* <p>
|
|
8968
|
-
* <code>Stopping</code> - The transform job is stopping.</p>
|
|
8969
|
-
* </li>
|
|
8970
|
-
* <li>
|
|
8971
|
-
* <p>
|
|
8972
|
-
* <code>Stopped</code> - The transform job has stopped.</p>
|
|
8973
|
-
* </li>
|
|
8974
|
-
* </ul>
|
|
8975
|
-
*/
|
|
8976
|
-
TransformJobStatus?: TransformJobStatus;
|
|
8977
|
-
/**
|
|
8978
|
-
* @public
|
|
8979
|
-
* <p>If the transform job failed, the reason it failed.</p>
|
|
8980
|
-
*/
|
|
8981
|
-
FailureReason?: string;
|
|
8982
|
-
/**
|
|
8983
|
-
* @public
|
|
8984
|
-
* <p>The name of the model associated with the transform job.</p>
|
|
8985
|
-
*/
|
|
8986
|
-
ModelName?: string;
|
|
8987
|
-
/**
|
|
8988
|
-
* @public
|
|
8989
|
-
* <p>The maximum number of parallel requests that can be sent to each instance in a transform
|
|
8990
|
-
* job. If <code>MaxConcurrentTransforms</code> is set to 0 or left unset, SageMaker checks the
|
|
8991
|
-
* optional execution-parameters to determine the settings for your chosen algorithm. If the
|
|
8992
|
-
* execution-parameters endpoint is not enabled, the default value is 1. For built-in algorithms,
|
|
8993
|
-
* you don't need to set a value for <code>MaxConcurrentTransforms</code>.</p>
|
|
8994
|
-
*/
|
|
8995
|
-
MaxConcurrentTransforms?: number;
|
|
8996
|
-
/**
|
|
8997
|
-
* @public
|
|
8998
|
-
* <p>Configures the timeout and maximum number of retries for processing a transform job
|
|
8999
|
-
* invocation.</p>
|
|
9000
|
-
*/
|
|
9001
|
-
ModelClientConfig?: ModelClientConfig;
|
|
9002
|
-
/**
|
|
9003
|
-
* @public
|
|
9004
|
-
* <p>The maximum allowed size of the payload, in MB. A payload is the data portion of a record
|
|
9005
|
-
* (without metadata). The value in <code>MaxPayloadInMB</code> must be greater than, or equal
|
|
9006
|
-
* to, the size of a single record. To estimate the size of a record in MB, divide the size of
|
|
9007
|
-
* your dataset by the number of records. To ensure that the records fit within the maximum
|
|
9008
|
-
* payload size, we recommend using a slightly larger value. The default value is 6 MB. For cases
|
|
9009
|
-
* where the payload might be arbitrarily large and is transmitted using HTTP chunked encoding,
|
|
9010
|
-
* set the value to 0. This feature works only in supported algorithms. Currently, SageMaker built-in
|
|
9011
|
-
* algorithms do not support HTTP chunked encoding.</p>
|
|
9012
|
-
*/
|
|
9013
|
-
MaxPayloadInMB?: number;
|
|
9014
|
-
/**
|
|
9015
|
-
* @public
|
|
9016
|
-
* <p>Specifies the number of records to include in a mini-batch for an HTTP inference request.
|
|
9017
|
-
* A record is a single unit of input data that inference can be made on. For example, a single
|
|
9018
|
-
* line in a CSV file is a record.</p>
|
|
9019
|
-
*/
|
|
9020
|
-
BatchStrategy?: BatchStrategy;
|
|
9021
|
-
/**
|
|
9022
|
-
* @public
|
|
9023
|
-
* <p>The environment variables to set in the Docker container. We support up to 16 key and
|
|
9024
|
-
* values entries in the map.</p>
|
|
9025
|
-
*/
|
|
9026
|
-
Environment?: Record<string, string>;
|
|
9027
|
-
/**
|
|
9028
|
-
* @public
|
|
9029
|
-
* <p>Describes the input source of a transform job and the way the transform job consumes
|
|
9030
|
-
* it.</p>
|
|
9031
|
-
*/
|
|
9032
|
-
TransformInput?: TransformInput;
|
|
9033
|
-
/**
|
|
9034
|
-
* @public
|
|
9035
|
-
* <p>Describes the results of a transform job.</p>
|
|
9036
|
-
*/
|
|
9037
|
-
TransformOutput?: TransformOutput;
|
|
9038
|
-
/**
|
|
9039
|
-
* @public
|
|
9040
|
-
* <p>Describes the resources, including ML instance types and ML instance count, to use for
|
|
9041
|
-
* transform job.</p>
|
|
9042
|
-
*/
|
|
9043
|
-
TransformResources?: TransformResources;
|
|
9044
|
-
/**
|
|
9045
|
-
* @public
|
|
9046
|
-
* <p>A timestamp that shows when the transform Job was created.</p>
|
|
9047
|
-
*/
|
|
9048
|
-
CreationTime?: Date;
|
|
9049
|
-
/**
|
|
9050
|
-
* @public
|
|
9051
|
-
* <p>Indicates when the transform job starts on ML instances. You are billed for the time
|
|
9052
|
-
* interval between this time and the value of <code>TransformEndTime</code>.</p>
|
|
9053
|
-
*/
|
|
9054
|
-
TransformStartTime?: Date;
|
|
9055
|
-
/**
|
|
9056
|
-
* @public
|
|
9057
|
-
* <p>Indicates when the transform job has been completed, or has stopped or failed. You are
|
|
9058
|
-
* billed for the time interval between this time and the value of
|
|
9059
|
-
* <code>TransformStartTime</code>.</p>
|
|
9060
|
-
*/
|
|
9061
|
-
TransformEndTime?: Date;
|
|
9062
|
-
/**
|
|
9063
|
-
* @public
|
|
9064
|
-
* <p>The Amazon Resource Name (ARN) of the labeling job that created the transform job.</p>
|
|
9065
|
-
*/
|
|
9066
|
-
LabelingJobArn?: string;
|
|
9067
|
-
/**
|
|
9068
|
-
* @public
|
|
9069
|
-
* <p>The Amazon Resource Name (ARN) of the AutoML job that created the transform job.</p>
|
|
9070
|
-
*/
|
|
9071
|
-
AutoMLJobArn?: string;
|
|
9072
|
-
/**
|
|
9073
|
-
* @public
|
|
9074
|
-
* <p>The data structure used to specify the data to be used for inference in a batch
|
|
9075
|
-
* transform job and to associate the data that is relevant to the prediction results in
|
|
9076
|
-
* the output. The input filter provided allows you to exclude input data that is not
|
|
9077
|
-
* needed for inference in a batch transform job. The output filter provided allows you to
|
|
9078
|
-
* include input data relevant to interpreting the predictions in the output from the job.
|
|
9079
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform-data-processing.html">Associate Prediction
|
|
9080
|
-
* Results with their Corresponding Input Records</a>.</p>
|
|
9081
|
-
*/
|
|
9082
|
-
DataProcessing?: DataProcessing;
|
|
9083
|
-
/**
|
|
9084
|
-
* @public
|
|
9085
|
-
* <p>Associates a SageMaker job as a trial component with an experiment and trial. Specified when
|
|
9086
|
-
* you call the following APIs:</p>
|
|
9087
|
-
* <ul>
|
|
9088
|
-
* <li>
|
|
9089
|
-
* <p>
|
|
9090
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateProcessingJob.html">CreateProcessingJob</a>
|
|
9091
|
-
* </p>
|
|
9092
|
-
* </li>
|
|
9093
|
-
* <li>
|
|
9094
|
-
* <p>
|
|
9095
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html">CreateTrainingJob</a>
|
|
9096
|
-
* </p>
|
|
9097
|
-
* </li>
|
|
9098
|
-
* <li>
|
|
9099
|
-
* <p>
|
|
9100
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTransformJob.html">CreateTransformJob</a>
|
|
9101
|
-
* </p>
|
|
9102
|
-
* </li>
|
|
9103
|
-
* </ul>
|
|
9104
|
-
*/
|
|
9105
|
-
ExperimentConfig?: ExperimentConfig;
|
|
9106
|
-
/**
|
|
9107
|
-
* @public
|
|
9108
|
-
* <p>A list of tags associated with the transform job.</p>
|
|
9109
|
-
*/
|
|
9110
|
-
Tags?: Tag[];
|
|
9111
|
-
/**
|
|
9112
|
-
* @public
|
|
9113
|
-
* <p>Configuration to control how SageMaker captures inference data for batch transform jobs.</p>
|
|
9114
|
-
*/
|
|
9115
|
-
DataCaptureConfig?: BatchDataCaptureConfig;
|
|
9116
|
-
}
|
|
9117
8982
|
/**
|
|
9118
8983
|
* @internal
|
|
9119
8984
|
*/
|