@aws-sdk/client-sagemaker 3.583.0 → 3.588.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.
Files changed (36) hide show
  1. package/dist-cjs/index.js +1358 -1303
  2. package/dist-es/commands/CreateModelPackageCommand.js +2 -1
  3. package/dist-es/commands/DescribeModelPackageCommand.js +2 -1
  4. package/dist-es/commands/UpdateModelPackageCommand.js +2 -1
  5. package/dist-es/models/models_0.js +6 -0
  6. package/dist-es/models/models_1.js +8 -6
  7. package/dist-es/models/models_2.js +11 -0
  8. package/dist-es/models/models_4.js +10 -0
  9. package/dist-es/protocols/Aws_json1_1.js +193 -175
  10. package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -1
  11. package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +12 -3
  12. package/dist-types/commands/CreateModelPackageCommand.d.ts +7 -0
  13. package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -2
  14. package/dist-types/commands/DescribeAutoMLJobCommand.d.ts +1 -1
  15. package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +12 -3
  16. package/dist-types/commands/DescribeModelPackageCommand.d.ts +12 -0
  17. package/dist-types/commands/DescribeProcessingJobCommand.d.ts +2 -1
  18. package/dist-types/commands/DescribeProjectCommand.d.ts +1 -2
  19. package/dist-types/commands/ListNotebookInstancesCommand.d.ts +2 -1
  20. package/dist-types/commands/SearchCommand.d.ts +7 -0
  21. package/dist-types/commands/UpdateModelPackageCommand.d.ts +4 -0
  22. package/dist-types/models/models_0.d.ts +182 -99
  23. package/dist-types/models/models_1.d.ts +78 -36
  24. package/dist-types/models/models_2.d.ts +68 -133
  25. package/dist-types/models/models_3.d.ts +131 -93
  26. package/dist-types/models/models_4.d.ts +131 -4
  27. package/dist-types/ts3.4/commands/CreateStudioLifecycleConfigCommand.d.ts +4 -2
  28. package/dist-types/ts3.4/commands/DescribeProcessingJobCommand.d.ts +2 -4
  29. package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/commands/ListNotebookInstancesCommand.d.ts +2 -4
  31. package/dist-types/ts3.4/models/models_0.d.ts +7 -0
  32. package/dist-types/ts3.4/models/models_1.d.ts +15 -14
  33. package/dist-types/ts3.4/models/models_2.d.ts +21 -32
  34. package/dist-types/ts3.4/models/models_3.d.ts +34 -18
  35. package/dist-types/ts3.4/models/models_4.d.ts +27 -1
  36. package/package.json +18 -18
@@ -8995,6 +8995,49 @@ export interface DriftCheckBaselines {
8995
8995
  */
8996
8996
  ModelDataQuality?: DriftCheckModelDataQuality;
8997
8997
  }
8998
+ /**
8999
+ * <p>The model card associated with the model package. Since <code>ModelPackageModelCard</code> is
9000
+ * tied to a model package, it is a specific usage of a model card and its schema is
9001
+ * simplified compared to the schema of <code>ModelCard</code>. The
9002
+ * <code>ModelPackageModelCard</code> schema does not include <code>model_package_details</code>,
9003
+ * and <code>model_overview</code> is composed of the <code>model_creator</code> and
9004
+ * <code>model_artifact</code> properties. For more information about
9005
+ * the model card associated with the model package, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html">View
9006
+ * the Details of a Model Version</a>.</p>
9007
+ * @public
9008
+ */
9009
+ export interface ModelPackageModelCard {
9010
+ /**
9011
+ * <p>The content of the model card.</p>
9012
+ * @public
9013
+ */
9014
+ ModelCardContent?: string;
9015
+ /**
9016
+ * <p>The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.</p>
9017
+ * <ul>
9018
+ * <li>
9019
+ * <p>
9020
+ * <code>Draft</code>: The model card is a work in progress.</p>
9021
+ * </li>
9022
+ * <li>
9023
+ * <p>
9024
+ * <code>PendingReview</code>: The model card is pending review.</p>
9025
+ * </li>
9026
+ * <li>
9027
+ * <p>
9028
+ * <code>Approved</code>: The model card is approved.</p>
9029
+ * </li>
9030
+ * <li>
9031
+ * <p>
9032
+ * <code>Archived</code>: The model card is archived. No more updates can be made to the model
9033
+ * card content. If you try to update the model card content, you will receive the message <code>Model Card
9034
+ * is in Archived state</code>.</p>
9035
+ * </li>
9036
+ * </ul>
9037
+ * @public
9038
+ */
9039
+ ModelCardStatus?: ModelCardStatus;
9040
+ }
8998
9041
  /**
8999
9042
  * <p>Contains explainability metrics for a model.</p>
9000
9043
  * @public
@@ -9064,6 +9107,19 @@ export interface ModelMetrics {
9064
9107
  */
9065
9108
  Explainability?: Explainability;
9066
9109
  }
9110
+ /**
9111
+ * <p>An optional Key Management Service
9112
+ * key to encrypt, decrypt, and re-encrypt model package information for regulated workloads with
9113
+ * highly sensitive data.</p>
9114
+ * @public
9115
+ */
9116
+ export interface ModelPackageSecurityConfig {
9117
+ /**
9118
+ * <p>The KMS Key ID (<code>KMSKeyId</code>) used for encryption of model package information.</p>
9119
+ * @public
9120
+ */
9121
+ KmsKeyId: string | undefined;
9122
+ }
9067
9123
  /**
9068
9124
  * @public
9069
9125
  * @enum
@@ -9305,6 +9361,23 @@ export interface CreateModelPackageInput {
9305
9361
  * @public
9306
9362
  */
9307
9363
  SourceUri?: string;
9364
+ /**
9365
+ * <p>The KMS Key ID (<code>KMSKeyId</code>) used for encryption of model package information.</p>
9366
+ * @public
9367
+ */
9368
+ SecurityConfig?: ModelPackageSecurityConfig;
9369
+ /**
9370
+ * <p>The model card associated with the model package. Since <code>ModelPackageModelCard</code> is
9371
+ * tied to a model package, it is a specific usage of a model card and its schema is
9372
+ * simplified compared to the schema of <code>ModelCard</code>. The
9373
+ * <code>ModelPackageModelCard</code> schema does not include <code>model_package_details</code>,
9374
+ * and <code>model_overview</code> is composed of the <code>model_creator</code> and
9375
+ * <code>model_artifact</code> properties. For more information about
9376
+ * the model card associated with the model package, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html">View
9377
+ * the Details of a Model Version</a>.</p>
9378
+ * @public
9379
+ */
9380
+ ModelCard?: ModelPackageModelCard;
9308
9381
  }
9309
9382
  /**
9310
9383
  * @public
@@ -11152,45 +11225,14 @@ export interface CreateSpaceResponse {
11152
11225
  SpaceArn?: string;
11153
11226
  }
11154
11227
  /**
11155
- * @public
11156
- * @enum
11157
- */
11158
- export declare const StudioLifecycleConfigAppType: {
11159
- readonly CodeEditor: "CodeEditor";
11160
- readonly JupyterLab: "JupyterLab";
11161
- readonly JupyterServer: "JupyterServer";
11162
- readonly KernelGateway: "KernelGateway";
11163
- };
11164
- /**
11165
- * @public
11228
+ * @internal
11166
11229
  */
11167
- export type StudioLifecycleConfigAppType = (typeof StudioLifecycleConfigAppType)[keyof typeof StudioLifecycleConfigAppType];
11230
+ export declare const CreateModelCardRequestFilterSensitiveLog: (obj: CreateModelCardRequest) => any;
11168
11231
  /**
11169
- * @public
11232
+ * @internal
11170
11233
  */
11171
- export interface CreateStudioLifecycleConfigRequest {
11172
- /**
11173
- * <p>The name of the Amazon SageMaker Studio Lifecycle Configuration to create.</p>
11174
- * @public
11175
- */
11176
- StudioLifecycleConfigName: string | undefined;
11177
- /**
11178
- * <p>The content of your Amazon SageMaker Studio Lifecycle Configuration script. This content must be base64 encoded.</p>
11179
- * @public
11180
- */
11181
- StudioLifecycleConfigContent: string | undefined;
11182
- /**
11183
- * <p>The App type that the Lifecycle Configuration is attached to.</p>
11184
- * @public
11185
- */
11186
- StudioLifecycleConfigAppType: StudioLifecycleConfigAppType | undefined;
11187
- /**
11188
- * <p>Tags to be associated with the Lifecycle Configuration. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API. </p>
11189
- * @public
11190
- */
11191
- Tags?: Tag[];
11192
- }
11234
+ export declare const ModelPackageModelCardFilterSensitiveLog: (obj: ModelPackageModelCard) => any;
11193
11235
  /**
11194
11236
  * @internal
11195
11237
  */
11196
- export declare const CreateModelCardRequestFilterSensitiveLog: (obj: CreateModelCardRequest) => any;
11238
+ export declare const CreateModelPackageInputFilterSensitiveLog: (obj: CreateModelPackageInput) => any;
@@ -1,5 +1,44 @@
1
- import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CaptureStatus, Channel, CheckpointConfig, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterStatus, CodeEditorAppImageConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
- import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NeoVpcConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, ParallelismConfiguration, ProcessingInput, ProcessingInstanceType, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, ThroughputMode, UserSettings, VendorGuidance } from "./models_1";
1
+ import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CaptureStatus, Channel, CheckpointConfig, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterStatus, CodeEditorAppImageConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
+ import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NeoVpcConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, ParallelismConfiguration, ProcessingInstanceType, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, ThroughputMode, UserSettings, VendorGuidance } from "./models_1";
3
+ /**
4
+ * @public
5
+ * @enum
6
+ */
7
+ export declare const StudioLifecycleConfigAppType: {
8
+ readonly CodeEditor: "CodeEditor";
9
+ readonly JupyterLab: "JupyterLab";
10
+ readonly JupyterServer: "JupyterServer";
11
+ readonly KernelGateway: "KernelGateway";
12
+ };
13
+ /**
14
+ * @public
15
+ */
16
+ export type StudioLifecycleConfigAppType = (typeof StudioLifecycleConfigAppType)[keyof typeof StudioLifecycleConfigAppType];
17
+ /**
18
+ * @public
19
+ */
20
+ export interface CreateStudioLifecycleConfigRequest {
21
+ /**
22
+ * <p>The name of the Amazon SageMaker Studio Lifecycle Configuration to create.</p>
23
+ * @public
24
+ */
25
+ StudioLifecycleConfigName: string | undefined;
26
+ /**
27
+ * <p>The content of your Amazon SageMaker Studio Lifecycle Configuration script. This content must be base64 encoded.</p>
28
+ * @public
29
+ */
30
+ StudioLifecycleConfigContent: string | undefined;
31
+ /**
32
+ * <p>The App type that the Lifecycle Configuration is attached to.</p>
33
+ * @public
34
+ */
35
+ StudioLifecycleConfigAppType: StudioLifecycleConfigAppType | undefined;
36
+ /**
37
+ * <p>Tags to be associated with the Lifecycle Configuration. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API. </p>
38
+ * @public
39
+ */
40
+ Tags?: Tag[];
41
+ }
3
42
  /**
4
43
  * @public
5
44
  */
@@ -2870,8 +2909,8 @@ export interface DescribeAutoMLJobResponse {
2870
2909
  */
2871
2910
  PartialFailureReasons?: AutoMLPartialFailureReason[];
2872
2911
  /**
2873
- * <p>The best model candidate selected by SageMaker Autopilot using both the best objective metric and
2874
- * lowest <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-metrics-validation.html">InferenceLatency</a> for
2912
+ * <p>The best model candidate selected by SageMaker Autopilot using both the best
2913
+ * objective metric and lowest <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-metrics-validation.html">InferenceLatency</a> for
2875
2914
  * an experiment.</p>
2876
2915
  * @public
2877
2916
  */
@@ -2952,8 +2991,8 @@ export interface DescribeAutoMLJobV2Response {
2952
2991
  */
2953
2992
  OutputDataConfig: AutoMLOutputDataConfig | undefined;
2954
2993
  /**
2955
- * <p>The ARN of the IAM role that has read permission to the input data location and
2956
- * write permission to the output data location in Amazon S3.</p>
2994
+ * <p>The ARN of the IAM role that has read permission to the input data
2995
+ * location and write permission to the output data location in Amazon S3.</p>
2957
2996
  * @public
2958
2997
  */
2959
2998
  RoleArn: string | undefined;
@@ -3041,7 +3080,8 @@ export interface DescribeAutoMLJobV2Response {
3041
3080
  */
3042
3081
  DataSplitConfig?: AutoMLDataSplitConfig;
3043
3082
  /**
3044
- * <p>Returns the security configuration for traffic encryption or Amazon VPC settings.</p>
3083
+ * <p>Returns the security configuration for traffic encryption or Amazon VPC
3084
+ * settings.</p>
3045
3085
  * @public
3046
3086
  */
3047
3087
  SecurityConfig?: AutoMLSecurityConfig;
@@ -7645,6 +7685,23 @@ export interface DescribeModelPackageOutput {
7645
7685
  * @public
7646
7686
  */
7647
7687
  SourceUri?: string;
7688
+ /**
7689
+ * <p>The KMS Key ID (<code>KMSKeyId</code>) used for encryption of model package information.</p>
7690
+ * @public
7691
+ */
7692
+ SecurityConfig?: ModelPackageSecurityConfig;
7693
+ /**
7694
+ * <p>The model card associated with the model package. Since <code>ModelPackageModelCard</code> is
7695
+ * tied to a model package, it is a specific usage of a model card and its schema is
7696
+ * simplified compared to the schema of <code>ModelCard</code>. The
7697
+ * <code>ModelPackageModelCard</code> schema does not include <code>model_package_details</code>,
7698
+ * and <code>model_overview</code> is composed of the <code>model_creator</code> and
7699
+ * <code>model_artifact</code> properties. For more information about
7700
+ * the model card associated with the model package, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html">View
7701
+ * the Details of a Model Version</a>.</p>
7702
+ * @public
7703
+ */
7704
+ ModelCard?: ModelPackageModelCard;
7648
7705
  }
7649
7706
  /**
7650
7707
  * @public
@@ -8468,132 +8525,6 @@ export declare const ProcessingJobStatus: {
8468
8525
  * @public
8469
8526
  */
8470
8527
  export type ProcessingJobStatus = (typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
8471
- /**
8472
- * @public
8473
- */
8474
- export interface DescribeProcessingJobResponse {
8475
- /**
8476
- * <p>The inputs for a processing job.</p>
8477
- * @public
8478
- */
8479
- ProcessingInputs?: ProcessingInput[];
8480
- /**
8481
- * <p>Output configuration for the processing job.</p>
8482
- * @public
8483
- */
8484
- ProcessingOutputConfig?: ProcessingOutputConfig;
8485
- /**
8486
- * <p>The name of the processing job. The name must be unique within an Amazon Web Services Region in the
8487
- * Amazon Web Services account.</p>
8488
- * @public
8489
- */
8490
- ProcessingJobName: string | undefined;
8491
- /**
8492
- * <p>Identifies the resources, ML compute instances, and ML storage volumes to deploy for a
8493
- * processing job. In distributed training, you specify more than one instance.</p>
8494
- * @public
8495
- */
8496
- ProcessingResources: ProcessingResources | undefined;
8497
- /**
8498
- * <p>The time limit for how long the processing job is allowed to run.</p>
8499
- * @public
8500
- */
8501
- StoppingCondition?: ProcessingStoppingCondition;
8502
- /**
8503
- * <p>Configures the processing job to run a specified container image.</p>
8504
- * @public
8505
- */
8506
- AppSpecification: AppSpecification | undefined;
8507
- /**
8508
- * <p>The environment variables set in the Docker container.</p>
8509
- * @public
8510
- */
8511
- Environment?: Record<string, string>;
8512
- /**
8513
- * <p>Networking options for a processing job.</p>
8514
- * @public
8515
- */
8516
- NetworkConfig?: NetworkConfig;
8517
- /**
8518
- * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on
8519
- * your behalf.</p>
8520
- * @public
8521
- */
8522
- RoleArn?: string;
8523
- /**
8524
- * <p>The configuration information used to create an experiment.</p>
8525
- * @public
8526
- */
8527
- ExperimentConfig?: ExperimentConfig;
8528
- /**
8529
- * <p>The Amazon Resource Name (ARN) of the processing job.</p>
8530
- * @public
8531
- */
8532
- ProcessingJobArn: string | undefined;
8533
- /**
8534
- * <p>Provides the status of a processing job.</p>
8535
- * @public
8536
- */
8537
- ProcessingJobStatus: ProcessingJobStatus | undefined;
8538
- /**
8539
- * <p>An optional string, up to one KB in size, that contains metadata from the processing
8540
- * container when the processing job exits.</p>
8541
- * @public
8542
- */
8543
- ExitMessage?: string;
8544
- /**
8545
- * <p>A string, up to one KB in size, that contains the reason a processing job failed, if
8546
- * it failed.</p>
8547
- * @public
8548
- */
8549
- FailureReason?: string;
8550
- /**
8551
- * <p>The time at which the processing job completed.</p>
8552
- * @public
8553
- */
8554
- ProcessingEndTime?: Date;
8555
- /**
8556
- * <p>The time at which the processing job started.</p>
8557
- * @public
8558
- */
8559
- ProcessingStartTime?: Date;
8560
- /**
8561
- * <p>The time at which the processing job was last modified.</p>
8562
- * @public
8563
- */
8564
- LastModifiedTime?: Date;
8565
- /**
8566
- * <p>The time at which the processing job was created.</p>
8567
- * @public
8568
- */
8569
- CreationTime: Date | undefined;
8570
- /**
8571
- * <p>The ARN of a monitoring schedule for an endpoint associated with this processing
8572
- * job.</p>
8573
- * @public
8574
- */
8575
- MonitoringScheduleArn?: string;
8576
- /**
8577
- * <p>The ARN of an AutoML job associated with this processing job.</p>
8578
- * @public
8579
- */
8580
- AutoMLJobArn?: string;
8581
- /**
8582
- * <p>The ARN of a training job associated with this processing job.</p>
8583
- * @public
8584
- */
8585
- TrainingJobArn?: string;
8586
- }
8587
- /**
8588
- * @public
8589
- */
8590
- export interface DescribeProjectInput {
8591
- /**
8592
- * <p>The name of the project to describe.</p>
8593
- * @public
8594
- */
8595
- ProjectName: string | undefined;
8596
- }
8597
8528
  /**
8598
8529
  * @internal
8599
8530
  */
@@ -8606,3 +8537,7 @@ export declare const CreateWorkforceRequestFilterSensitiveLog: (obj: CreateWorkf
8606
8537
  * @internal
8607
8538
  */
8608
8539
  export declare const DescribeModelCardResponseFilterSensitiveLog: (obj: DescribeModelCardResponse) => any;
8540
+ /**
8541
+ * @internal
8542
+ */
8543
+ export declare const DescribeModelPackageOutputFilterSensitiveLog: (obj: DescribeModelPackageOutput) => any;
@@ -1,6 +1,132 @@
1
- import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClusterNodeSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContextSummary, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
- import { _InstanceType, DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, OwnershipSettings, RecommendationJobType, ResourceLimits, RetryStrategy, ServiceCatalogProvisioningDetails, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, UserSettings } from "./models_1";
3
- import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ScheduleStatus, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration } from "./models_2";
1
+ import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClusterNodeSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContextSummary, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
+ import { DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, NetworkConfig, OfflineStoreConfig, OnlineStoreConfig, OwnershipSettings, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, RecommendationJobType, ResourceLimits, RetryStrategy, ServiceCatalogProvisioningDetails, SpaceSettings, SpaceSharingSettings, UserSettings } from "./models_1";
3
+ import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ProcessingJobStatus, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ScheduleStatus, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration } from "./models_2";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface DescribeProcessingJobResponse {
8
+ /**
9
+ * <p>The inputs for a processing job.</p>
10
+ * @public
11
+ */
12
+ ProcessingInputs?: ProcessingInput[];
13
+ /**
14
+ * <p>Output configuration for the processing job.</p>
15
+ * @public
16
+ */
17
+ ProcessingOutputConfig?: ProcessingOutputConfig;
18
+ /**
19
+ * <p>The name of the processing job. The name must be unique within an Amazon Web Services Region in the
20
+ * Amazon Web Services account.</p>
21
+ * @public
22
+ */
23
+ ProcessingJobName: string | undefined;
24
+ /**
25
+ * <p>Identifies the resources, ML compute instances, and ML storage volumes to deploy for a
26
+ * processing job. In distributed training, you specify more than one instance.</p>
27
+ * @public
28
+ */
29
+ ProcessingResources: ProcessingResources | undefined;
30
+ /**
31
+ * <p>The time limit for how long the processing job is allowed to run.</p>
32
+ * @public
33
+ */
34
+ StoppingCondition?: ProcessingStoppingCondition;
35
+ /**
36
+ * <p>Configures the processing job to run a specified container image.</p>
37
+ * @public
38
+ */
39
+ AppSpecification: AppSpecification | undefined;
40
+ /**
41
+ * <p>The environment variables set in the Docker container.</p>
42
+ * @public
43
+ */
44
+ Environment?: Record<string, string>;
45
+ /**
46
+ * <p>Networking options for a processing job.</p>
47
+ * @public
48
+ */
49
+ NetworkConfig?: NetworkConfig;
50
+ /**
51
+ * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on
52
+ * your behalf.</p>
53
+ * @public
54
+ */
55
+ RoleArn?: string;
56
+ /**
57
+ * <p>The configuration information used to create an experiment.</p>
58
+ * @public
59
+ */
60
+ ExperimentConfig?: ExperimentConfig;
61
+ /**
62
+ * <p>The Amazon Resource Name (ARN) of the processing job.</p>
63
+ * @public
64
+ */
65
+ ProcessingJobArn: string | undefined;
66
+ /**
67
+ * <p>Provides the status of a processing job.</p>
68
+ * @public
69
+ */
70
+ ProcessingJobStatus: ProcessingJobStatus | undefined;
71
+ /**
72
+ * <p>An optional string, up to one KB in size, that contains metadata from the processing
73
+ * container when the processing job exits.</p>
74
+ * @public
75
+ */
76
+ ExitMessage?: string;
77
+ /**
78
+ * <p>A string, up to one KB in size, that contains the reason a processing job failed, if
79
+ * it failed.</p>
80
+ * @public
81
+ */
82
+ FailureReason?: string;
83
+ /**
84
+ * <p>The time at which the processing job completed.</p>
85
+ * @public
86
+ */
87
+ ProcessingEndTime?: Date;
88
+ /**
89
+ * <p>The time at which the processing job started.</p>
90
+ * @public
91
+ */
92
+ ProcessingStartTime?: Date;
93
+ /**
94
+ * <p>The time at which the processing job was last modified.</p>
95
+ * @public
96
+ */
97
+ LastModifiedTime?: Date;
98
+ /**
99
+ * <p>The time at which the processing job was created.</p>
100
+ * @public
101
+ */
102
+ CreationTime: Date | undefined;
103
+ /**
104
+ * <p>The ARN of a monitoring schedule for an endpoint associated with this processing
105
+ * job.</p>
106
+ * @public
107
+ */
108
+ MonitoringScheduleArn?: string;
109
+ /**
110
+ * <p>The ARN of an AutoML job associated with this processing job.</p>
111
+ * @public
112
+ */
113
+ AutoMLJobArn?: string;
114
+ /**
115
+ * <p>The ARN of a training job associated with this processing job.</p>
116
+ * @public
117
+ */
118
+ TrainingJobArn?: string;
119
+ }
120
+ /**
121
+ * @public
122
+ */
123
+ export interface DescribeProjectInput {
124
+ /**
125
+ * <p>The name of the project to describe.</p>
126
+ * @public
127
+ */
128
+ ProjectName: string | undefined;
129
+ }
4
130
  /**
5
131
  * @public
6
132
  * @enum
@@ -5180,7 +5306,7 @@ export interface ListAppsRequest {
5180
5306
  */
5181
5307
  NextToken?: string;
5182
5308
  /**
5183
- * <p>This parameter defines the maximum number of results that can be returned in a single response. The <code>MaxResults</code> parameter is an upper bound, not a target. If there are
5309
+ * <p>This parameter defines the maximum number of results that can be return in a single response. The <code>MaxResults</code> parameter is an upper bound, not a target. If there are
5184
5310
  * more results available than the value specified, a <code>NextToken</code>
5185
5311
  * is provided in the response. The <code>NextToken</code> indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for <code>MaxResults</code> is 10.</p>
5186
5312
  * @public
@@ -6208,7 +6334,7 @@ export interface ListDomainsRequest {
6208
6334
  */
6209
6335
  NextToken?: string;
6210
6336
  /**
6211
- * <p>This parameter defines the maximum number of results that can be returned in a single response. The <code>MaxResults</code> parameter is an upper bound, not a target. If there are
6337
+ * <p>This parameter defines the maximum number of results that can be return in a single response. The <code>MaxResults</code> parameter is an upper bound, not a target. If there are
6212
6338
  * more results available than the value specified, a <code>NextToken</code>
6213
6339
  * is provided in the response. The <code>NextToken</code> indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for <code>MaxResults</code> is 10.</p>
6214
6340
  * @public
@@ -9604,91 +9730,3 @@ export interface ListNotebookInstancesInput {
9604
9730
  */
9605
9731
  AdditionalCodeRepositoryEquals?: string;
9606
9732
  }
9607
- /**
9608
- * <p>Provides summary information for an SageMaker notebook instance.</p>
9609
- * @public
9610
- */
9611
- export interface NotebookInstanceSummary {
9612
- /**
9613
- * <p>The name of the notebook instance that you want a summary for.</p>
9614
- * @public
9615
- */
9616
- NotebookInstanceName: string | undefined;
9617
- /**
9618
- * <p>The Amazon Resource Name (ARN) of the notebook instance.</p>
9619
- * @public
9620
- */
9621
- NotebookInstanceArn: string | undefined;
9622
- /**
9623
- * <p>The status of the notebook instance.</p>
9624
- * @public
9625
- */
9626
- NotebookInstanceStatus?: NotebookInstanceStatus;
9627
- /**
9628
- * <p>The URL that you use to connect to the Jupyter notebook running in your notebook
9629
- * instance. </p>
9630
- * @public
9631
- */
9632
- Url?: string;
9633
- /**
9634
- * <p>The type of ML compute instance that the notebook instance is running on.</p>
9635
- * @public
9636
- */
9637
- InstanceType?: _InstanceType;
9638
- /**
9639
- * <p>A timestamp that shows when the notebook instance was created.</p>
9640
- * @public
9641
- */
9642
- CreationTime?: Date;
9643
- /**
9644
- * <p>A timestamp that shows when the notebook instance was last modified.</p>
9645
- * @public
9646
- */
9647
- LastModifiedTime?: Date;
9648
- /**
9649
- * <p>The name of a notebook instance lifecycle configuration associated with this notebook
9650
- * instance.</p>
9651
- * <p>For information about notebook instance lifestyle configurations, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html">Step
9652
- * 2.1: (Optional) Customize a Notebook Instance</a>.</p>
9653
- * @public
9654
- */
9655
- NotebookInstanceLifecycleConfigName?: string;
9656
- /**
9657
- * <p>The Git repository associated with the notebook instance as its default code
9658
- * repository. This can be either the name of a Git repository stored as a resource in your
9659
- * account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
9660
- * or in any other Git repository. When you open a notebook instance, it opens in the
9661
- * directory that contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
9662
- * Repositories with SageMaker Notebook Instances</a>.</p>
9663
- * @public
9664
- */
9665
- DefaultCodeRepository?: string;
9666
- /**
9667
- * <p>An array of up to three Git repositories associated with the notebook instance. These
9668
- * can be either the names of Git repositories stored as resources in your account, or the
9669
- * URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
9670
- * or in any other Git repository. These repositories are cloned at the same level as the
9671
- * default repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
9672
- * Repositories with SageMaker Notebook Instances</a>.</p>
9673
- * @public
9674
- */
9675
- AdditionalCodeRepositories?: string[];
9676
- }
9677
- /**
9678
- * @public
9679
- */
9680
- export interface ListNotebookInstancesOutput {
9681
- /**
9682
- * <p>If the response to the previous <code>ListNotebookInstances</code> request was
9683
- * truncated, SageMaker returns this token. To retrieve the next set of notebook instances, use
9684
- * the token in the next request.</p>
9685
- * @public
9686
- */
9687
- NextToken?: string;
9688
- /**
9689
- * <p>An array of <code>NotebookInstanceSummary</code> objects, one for each notebook
9690
- * instance.</p>
9691
- * @public
9692
- */
9693
- NotebookInstances?: NotebookInstanceSummary[];
9694
- }