@aws-sdk/client-sagemaker 3.864.0 → 3.866.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/index.js CHANGED
@@ -14012,6 +14012,7 @@ var de_DescribeAppResponse = /* @__PURE__ */ __name((output, context) => {
14012
14012
  BuiltInLifecycleConfigArn: import_smithy_client.expectString,
14013
14013
  CreationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreationTime"),
14014
14014
  DomainId: import_smithy_client.expectString,
14015
+ EffectiveTrustedIdentityPropagationStatus: import_smithy_client.expectString,
14015
14016
  FailureReason: import_smithy_client.expectString,
14016
14017
  LastHealthCheckTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastHealthCheckTimestamp"),
14017
14018
  LastUserActivityTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUserActivityTimestamp"),
@@ -15249,6 +15250,7 @@ var de_DomainSettings = /* @__PURE__ */ __name((output, context) => {
15249
15250
  ExecutionRoleIdentityConfig: import_smithy_client.expectString,
15250
15251
  RStudioServerProDomainSettings: /* @__PURE__ */ __name((_) => de_RStudioServerProDomainSettings(_, context), "RStudioServerProDomainSettings"),
15251
15252
  SecurityGroupIds: /* @__PURE__ */ __name((_) => de_DomainSecurityGroupIds(_, context), "SecurityGroupIds"),
15253
+ TrustedIdentityPropagationSettings: /* @__PURE__ */ __name((_) => de_TrustedIdentityPropagationSettings(_, context), "TrustedIdentityPropagationSettings"),
15252
15254
  UnifiedStudioSettings: /* @__PURE__ */ __name((_) => de_UnifiedStudioSettings(_, context), "UnifiedStudioSettings")
15253
15255
  });
15254
15256
  }, "de_DomainSettings");
@@ -20792,6 +20794,11 @@ var de_TrialSummary = /* @__PURE__ */ __name((output, context) => {
20792
20794
  TrialSource: /* @__PURE__ */ __name((_) => de_TrialSource(_, context), "TrialSource")
20793
20795
  });
20794
20796
  }, "de_TrialSummary");
20797
+ var de_TrustedIdentityPropagationSettings = /* @__PURE__ */ __name((output, context) => {
20798
+ return (0, import_smithy_client.take)(output, {
20799
+ Status: import_smithy_client.expectString
20800
+ });
20801
+ }, "de_TrustedIdentityPropagationSettings");
20795
20802
  var de_TtlDuration = /* @__PURE__ */ __name((output, context) => {
20796
20803
  return (0, import_smithy_client.take)(output, {
20797
20804
  Unit: import_smithy_client.expectString,
@@ -10811,6 +10811,7 @@ const de_DescribeAppResponse = (output, context) => {
10811
10811
  BuiltInLifecycleConfigArn: __expectString,
10812
10812
  CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
10813
10813
  DomainId: __expectString,
10814
+ EffectiveTrustedIdentityPropagationStatus: __expectString,
10814
10815
  FailureReason: __expectString,
10815
10816
  LastHealthCheckTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
10816
10817
  LastUserActivityTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -12060,6 +12061,7 @@ const de_DomainSettings = (output, context) => {
12060
12061
  ExecutionRoleIdentityConfig: __expectString,
12061
12062
  RStudioServerProDomainSettings: (_) => de_RStudioServerProDomainSettings(_, context),
12062
12063
  SecurityGroupIds: (_) => de_DomainSecurityGroupIds(_, context),
12064
+ TrustedIdentityPropagationSettings: (_) => de_TrustedIdentityPropagationSettings(_, context),
12063
12065
  UnifiedStudioSettings: (_) => de_UnifiedStudioSettings(_, context),
12064
12066
  });
12065
12067
  };
@@ -17953,6 +17955,11 @@ const de_TrialSummary = (output, context) => {
17953
17955
  TrialSource: (_) => de_TrialSource(_, context),
17954
17956
  });
17955
17957
  };
17958
+ const de_TrustedIdentityPropagationSettings = (output, context) => {
17959
+ return take(output, {
17960
+ Status: __expectString,
17961
+ });
17962
+ };
17956
17963
  const de_TtlDuration = (output, context) => {
17957
17964
  return take(output, {
17958
17965
  Unit: __expectString,
@@ -269,6 +269,9 @@ declare const CreateDomainCommand_base: {
269
269
  * DefaultResourceSpec: "<ResourceSpec>",
270
270
  * },
271
271
  * ExecutionRoleIdentityConfig: "USER_PROFILE_NAME" || "DISABLED",
272
+ * TrustedIdentityPropagationSettings: { // TrustedIdentityPropagationSettings
273
+ * Status: "ENABLED" || "DISABLED", // required
274
+ * },
272
275
  * DockerSettings: { // DockerSettings
273
276
  * EnableDockerAccess: "ENABLED" || "DISABLED",
274
277
  * VpcOnlyTrustedAccounts: [ // VpcOnlyTrustedAccounts
@@ -51,6 +51,7 @@ declare const DescribeAppCommand_base: {
51
51
  * // UserProfileName: "STRING_VALUE",
52
52
  * // SpaceName: "STRING_VALUE",
53
53
  * // Status: "Deleted" || "Deleting" || "Failed" || "InService" || "Pending",
54
+ * // EffectiveTrustedIdentityPropagationStatus: "ENABLED" || "DISABLED",
54
55
  * // RecoveryMode: true || false,
55
56
  * // LastHealthCheckTimestamp: new Date("TIMESTAMP"),
56
57
  * // LastUserActivityTimestamp: new Date("TIMESTAMP"),
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeCompilationJobRequest, DescribeCompilationJobResponse } from "../models/models_2";
3
+ import { DescribeCompilationJobRequest } from "../models/models_2";
4
+ import { DescribeCompilationJobResponse } from "../models/models_3";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @public
@@ -284,6 +284,9 @@ declare const DescribeDomainCommand_base: {
284
284
  * // DefaultResourceSpec: "<ResourceSpec>",
285
285
  * // },
286
286
  * // ExecutionRoleIdentityConfig: "USER_PROFILE_NAME" || "DISABLED",
287
+ * // TrustedIdentityPropagationSettings: { // TrustedIdentityPropagationSettings
288
+ * // Status: "ENABLED" || "DISABLED", // required
289
+ * // },
287
290
  * // DockerSettings: { // DockerSettings
288
291
  * // EnableDockerAccess: "ENABLED" || "DISABLED",
289
292
  * // VpcOnlyTrustedAccounts: [ // VpcOnlyTrustedAccounts
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListWorkforcesRequest, ListWorkforcesResponse } from "../models/models_4";
3
+ import { ListWorkforcesRequest } from "../models/models_4";
4
+ import { ListWorkforcesResponse } from "../models/models_5";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @public
@@ -268,6 +268,9 @@ declare const UpdateDomainCommand_base: {
268
268
  * SecurityGroupIds: [ // DomainSecurityGroupIds
269
269
  * "STRING_VALUE",
270
270
  * ],
271
+ * TrustedIdentityPropagationSettings: { // TrustedIdentityPropagationSettings
272
+ * Status: "ENABLED" || "DISABLED", // required
273
+ * },
271
274
  * DockerSettings: { // DockerSettings
272
275
  * EnableDockerAccess: "ENABLED" || "DISABLED",
273
276
  * VpcOnlyTrustedAccounts: [ // VpcOnlyTrustedAccounts
@@ -3230,6 +3230,17 @@ export interface RStudioServerProDomainSettings {
3230
3230
  */
3231
3231
  DefaultResourceSpec?: ResourceSpec | undefined;
3232
3232
  }
3233
+ /**
3234
+ * <p>The Trusted Identity Propagation (TIP) settings for the SageMaker domain. These settings determine how user identities from IAM Identity Center are propagated through the domain to TIP enabled Amazon Web Services services.</p>
3235
+ * @public
3236
+ */
3237
+ export interface TrustedIdentityPropagationSettings {
3238
+ /**
3239
+ * <p>The status of Trusted Identity Propagation (TIP) at the SageMaker domain level. </p> <p>When disabled, standard IAM role-based access is used. </p> <p>When enabled:</p> <ul> <li> <p>User identities from IAM Identity Center are propagated through the application to TIP enabled Amazon Web Services services.</p> </li> <li> <p>New applications or existing applications that are automatically patched, will use the domain level configuration.</p> </li> </ul>
3240
+ * @public
3241
+ */
3242
+ Status: FeatureStatus | undefined;
3243
+ }
3233
3244
  /**
3234
3245
  * <p>The settings that apply to an Amazon SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.</p>
3235
3246
  * @public
@@ -3296,6 +3307,11 @@ export interface DomainSettings {
3296
3307
  * @public
3297
3308
  */
3298
3309
  ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | undefined;
3310
+ /**
3311
+ * <p>The Trusted Identity Propagation (TIP) settings for the SageMaker domain. These settings determine how user identities from IAM Identity Center are propagated through the domain to TIP enabled Amazon Web Services services.</p>
3312
+ * @public
3313
+ */
3314
+ TrustedIdentityPropagationSettings?: TrustedIdentityPropagationSettings | undefined;
3299
3315
  /**
3300
3316
  * <p>A collection of settings that configure the domain's Docker interaction.</p>
3301
3317
  * @public
@@ -6627,7 +6643,7 @@ export interface CreateLabelingJobRequest {
6627
6643
  */
6628
6644
  LabelingJobName: string | undefined;
6629
6645
  /**
6630
- * <p>The attribute name to use for the label in the output manifest file. This is the key for the key/value pair formed with the label that a worker assigns to the object. The <code>LabelAttributeName</code> must meet the following requirements.</p> <ul> <li> <p>The name can't end with "-metadata". </p> </li> <li> <p>If you are using one of the following <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-task-types.html">built-in task types</a>, the attribute name <i>must</i> end with "-ref". If the task type you are using is not listed below, the attribute name <i>must not</i> end with "-ref".</p> <ul> <li> <p>Image semantic segmentation (<code>SemanticSegmentation)</code>, and adjustment (<code>AdjustmentSemanticSegmentation</code>) and verification (<code>VerificationSemanticSegmentation</code>) labeling jobs for this task type.</p> </li> <li> <p>Video frame object detection (<code>VideoObjectDetection</code>), and adjustment and verification (<code>AdjustmentVideoObjectDetection</code>) labeling jobs for this task type.</p> </li> <li> <p>Video frame object tracking (<code>VideoObjectTracking</code>), and adjustment and verification (<code>AdjustmentVideoObjectTracking</code>) labeling jobs for this task type.</p> </li> <li> <p>3D point cloud semantic segmentation (<code>3DPointCloudSemanticSegmentation</code>), and adjustment and verification (<code>Adjustment3DPointCloudSemanticSegmentation</code>) labeling jobs for this task type. </p> </li> <li> <p>3D point cloud object tracking (<code>3DPointCloudObjectTracking</code>), and adjustment and verification (<code>Adjustment3DPointCloudObjectTracking</code>) labeling jobs for this task type. </p> </li> </ul> </li> </ul> <p/> <important> <p>If you are creating an adjustment or verification labeling job, you must use a <i>different</i> <code>LabelAttributeName</code> than the one used in the original labeling job. The original labeling job is the Ground Truth labeling job that produced the labels that you want verified or adjusted. To learn more about adjustment and verification labeling jobs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-verification-data.html">Verify and Adjust Labels</a>.</p> </important>
6646
+ * <p>The attribute name to use for the label in the output manifest file. This is the key for the key/value pair formed with the label that a worker assigns to the object. The <code>LabelAttributeName</code> must meet the following requirements.</p> <ul> <li> <p>The name can't end with "-metadata". </p> </li> <li> <p>If you are using one of the following <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-task-types.html">built-in task types</a>, the attribute name <i>must</i> end with "-ref". If the task type you are using is not listed below, the attribute name <i>must not</i> end with "-ref".</p> <ul> <li> <p>Verification (<code>VerificationSemanticSegmentation</code>) labeling jobs for this task type.</p> </li> <li> <p>Video frame object detection (<code>VideoObjectDetection</code>), and adjustment and verification (<code>AdjustmentVideoObjectDetection</code>) labeling jobs for this task type.</p> </li> <li> <p>Video frame object tracking (<code>VideoObjectTracking</code>), and adjustment and verification (<code>AdjustmentVideoObjectTracking</code>) labeling jobs for this task type.</p> </li> <li> <p>3D point cloud semantic segmentation (<code>3DPointCloudSemanticSegmentation</code>), and adjustment and verification (<code>Adjustment3DPointCloudSemanticSegmentation</code>) labeling jobs for this task type. </p> </li> <li> <p>3D point cloud object tracking (<code>3DPointCloudObjectTracking</code>), and adjustment and verification (<code>Adjustment3DPointCloudObjectTracking</code>) labeling jobs for this task type. </p> </li> </ul> </li> </ul> <p/> <important> <p>If you are creating an adjustment or verification labeling job, you must use a <i>different</i> <code>LabelAttributeName</code> than the one used in the original labeling job. The original labeling job is the Ground Truth labeling job that produced the labels that you want verified or adjusted. To learn more about adjustment and verification labeling jobs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-verification-data.html">Verify and Adjust Labels</a>.</p> </important>
6631
6647
  * @public
6632
6648
  */
6633
6649
  LabelAttributeName: string | undefined;
@@ -6849,19 +6865,3 @@ export interface ModelBiasAppSpecification {
6849
6865
  */
6850
6866
  Environment?: Record<string, string> | undefined;
6851
6867
  }
6852
- /**
6853
- * <p>The configuration for a baseline model bias job.</p>
6854
- * @public
6855
- */
6856
- export interface ModelBiasBaselineConfig {
6857
- /**
6858
- * <p>The name of the baseline model bias job.</p>
6859
- * @public
6860
- */
6861
- BaseliningJobName?: string | undefined;
6862
- /**
6863
- * <p>The constraints resource for a monitoring job.</p>
6864
- * @public
6865
- */
6866
- ConstraintsResource?: MonitoringConstraintsResource | undefined;
6867
- }
@@ -1,5 +1,21 @@
1
1
  import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppSpecification, AppStatus, AppType, ArtifactSource, AthenaDatasetDefinition, AutoMLCandidate, AutoMLChannel, AutoMLComputeConfig, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, Bias, CaptureStatus, CfnCreateTemplateProvider, Channel, CheckpointConfig, ClusterEventDetail, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterNodeProvisioningMode, ClusterNodeRecovery, ClusterOrchestrator, ClusterRestrictedInstanceGroupDetails, CodeEditorAppImageConfig, FeatureStatus, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, SchedulerResourceStatus, StoppingCondition, Tag, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
- import { _InstanceType, ClusterStatus, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, DeviceSelectionConfig, EdgeDeploymentConfig, EndpointInput, GitConfig, HubContentType, InputConfig, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, NeoVpcConfig, OutputConfig, ProcessingInstanceType, ProcessingS3UploadMode, RetryStrategy, SchedulerConfig, TrainingSpecification, UserSettings } from "./models_1";
2
+ import { _InstanceType, ClusterStatus, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, DeviceSelectionConfig, EdgeDeploymentConfig, EndpointInput, GitConfig, HubContentType, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, ModelBiasAppSpecification, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, ProcessingInstanceType, ProcessingS3UploadMode, RetryStrategy, SchedulerConfig, TrainingSpecification, UserSettings } from "./models_1";
3
+ /**
4
+ * <p>The configuration for a baseline model bias job.</p>
5
+ * @public
6
+ */
7
+ export interface ModelBiasBaselineConfig {
8
+ /**
9
+ * <p>The name of the baseline model bias job.</p>
10
+ * @public
11
+ */
12
+ BaseliningJobName?: string | undefined;
13
+ /**
14
+ * <p>The constraints resource for a monitoring job.</p>
15
+ * @public
16
+ */
17
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
18
+ }
3
19
  /**
4
20
  * <p>The ground truth labels for the dataset used for the monitoring job.</p>
5
21
  * @public
@@ -5275,6 +5291,11 @@ export interface DescribeAppResponse {
5275
5291
  * @public
5276
5292
  */
5277
5293
  Status?: AppStatus | undefined;
5294
+ /**
5295
+ * <p>The effective status of Trusted Identity Propagation (TIP) for this application. When enabled, user identities from IAM Identity Center are being propagated through the application to TIP enabled Amazon Web Services services. When disabled, standard IAM role-based access is used. </p>
5296
+ * @public
5297
+ */
5298
+ EffectiveTrustedIdentityPropagationStatus?: FeatureStatus | undefined;
5278
5299
  /**
5279
5300
  * <p> Indicates whether the application is launched in recovery mode. </p>
5280
5301
  * @public
@@ -5995,101 +6016,6 @@ export interface ModelDigests {
5995
6016
  */
5996
6017
  ArtifactDigest?: string | undefined;
5997
6018
  }
5998
- /**
5999
- * @public
6000
- */
6001
- export interface DescribeCompilationJobResponse {
6002
- /**
6003
- * <p>The name of the model compilation job.</p>
6004
- * @public
6005
- */
6006
- CompilationJobName: string | undefined;
6007
- /**
6008
- * <p>The Amazon Resource Name (ARN) of the model compilation job.</p>
6009
- * @public
6010
- */
6011
- CompilationJobArn: string | undefined;
6012
- /**
6013
- * <p>The status of the model compilation job.</p>
6014
- * @public
6015
- */
6016
- CompilationJobStatus: CompilationJobStatus | undefined;
6017
- /**
6018
- * <p>The time when the model compilation job started the <code>CompilationJob</code> instances. </p> <p>You are billed for the time between this timestamp and the timestamp in the <code>CompilationEndTime</code> field. In Amazon CloudWatch Logs, the start time might be later than this time. That's because it takes time to download the compilation job, which depends on the size of the compilation job container. </p>
6019
- * @public
6020
- */
6021
- CompilationStartTime?: Date | undefined;
6022
- /**
6023
- * <p>The time when the model compilation job on a compilation job instance ended. For a successful or stopped job, this is when the job's model artifacts have finished uploading. For a failed job, this is when Amazon SageMaker AI detected that the job failed. </p>
6024
- * @public
6025
- */
6026
- CompilationEndTime?: Date | undefined;
6027
- /**
6028
- * <p>Specifies a limit to how long a model compilation job can run. When the job reaches the time limit, Amazon SageMaker AI ends the compilation job. Use this API to cap model training costs.</p>
6029
- * @public
6030
- */
6031
- StoppingCondition: StoppingCondition | undefined;
6032
- /**
6033
- * <p>The inference image to use when compiling a model. Specify an image only if the target device is a cloud instance.</p>
6034
- * @public
6035
- */
6036
- InferenceImage?: string | undefined;
6037
- /**
6038
- * <p>The Amazon Resource Name (ARN) of the versioned model package that was provided to SageMaker Neo when you initiated a compilation job.</p>
6039
- * @public
6040
- */
6041
- ModelPackageVersionArn?: string | undefined;
6042
- /**
6043
- * <p>The time that the model compilation job was created.</p>
6044
- * @public
6045
- */
6046
- CreationTime: Date | undefined;
6047
- /**
6048
- * <p>The time that the status of the model compilation job was last modified.</p>
6049
- * @public
6050
- */
6051
- LastModifiedTime: Date | undefined;
6052
- /**
6053
- * <p>If a model compilation job failed, the reason it failed. </p>
6054
- * @public
6055
- */
6056
- FailureReason: string | undefined;
6057
- /**
6058
- * <p>Information about the location in Amazon S3 that has been configured for storing the model artifacts used in the compilation job.</p>
6059
- * @public
6060
- */
6061
- ModelArtifacts: ModelArtifacts | undefined;
6062
- /**
6063
- * <p>Provides a BLAKE2 hash value that identifies the compiled model artifacts in Amazon S3.</p>
6064
- * @public
6065
- */
6066
- ModelDigests?: ModelDigests | undefined;
6067
- /**
6068
- * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker AI assumes to perform the model compilation job.</p>
6069
- * @public
6070
- */
6071
- RoleArn: string | undefined;
6072
- /**
6073
- * <p>Information about the location in Amazon S3 of the input model artifacts, the name and shape of the expected data inputs, and the framework in which the model was trained.</p>
6074
- * @public
6075
- */
6076
- InputConfig: InputConfig | undefined;
6077
- /**
6078
- * <p>Information about the output location for the compiled model and the target device that the model runs on.</p>
6079
- * @public
6080
- */
6081
- OutputConfig: OutputConfig | undefined;
6082
- /**
6083
- * <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your compilation job to connect to. Control access to your models by configuring the VPC. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html">Protect Compilation Jobs by Using an Amazon Virtual Private Cloud</a>.</p>
6084
- * @public
6085
- */
6086
- VpcConfig?: NeoVpcConfig | undefined;
6087
- /**
6088
- * <p>Information that SageMaker Neo automatically derived about the model.</p>
6089
- * @public
6090
- */
6091
- DerivedInformation?: DerivedInformation | undefined;
6092
- }
6093
6019
  /**
6094
6020
  * @internal
6095
6021
  */
@@ -1,6 +1,101 @@
1
1
  import { ActivationState, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSpecification, AmazonQSettings, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoRollbackConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CapacityReservationPreference, CfnTemplateProviderDetail, Channel, CheckpointConfig, InferenceSpecification, ModelApprovalStatus, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, SchedulerResourceStatus, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VolumeAttachmentStatus, VpcConfig } from "./models_0";
2
- import { _InstanceType, CognitoConfig, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DockerSettings, DomainSettings, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExecutionRoleIdentityConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MetadataProperties, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelInfrastructureConfig, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, OfflineStoreConfig, OnlineStoreConfig, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, ShadowModeConfig, TagPropagation, ThroughputMode, TrackingServerSize, UnifiedStudioSettings, UserSettings, VendorGuidance } from "./models_1";
3
- import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeployedImage, DeploymentRecommendation, DeploymentStageStatusSummary, DirectInternetAccess, DriftCheckBaselines, ExperimentConfig, InfraCheckConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OptimizationConfig, OptimizationJobDeploymentInstanceType, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, OwnershipSettings, ParallelismConfiguration, PartnerAppAuthType, PartnerAppConfig, PartnerAppMaintenanceConfig, PartnerAppType, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, RemoteDebugConfig, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType } from "./models_2";
2
+ import { _InstanceType, CognitoConfig, CompilationJobStatus, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DockerSettings, DomainSettings, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExecutionRoleIdentityConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MetadataProperties, ModelBiasAppSpecification, ModelInfrastructureConfig, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, ShadowModeConfig, TagPropagation, ThroughputMode, TrackingServerSize, TrustedIdentityPropagationSettings, UnifiedStudioSettings, UserSettings, VendorGuidance } from "./models_1";
3
+ import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeployedImage, DeploymentRecommendation, DeploymentStageStatusSummary, DerivedInformation, DirectInternetAccess, DriftCheckBaselines, ExperimentConfig, InfraCheckConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelDigests, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OptimizationConfig, OptimizationJobDeploymentInstanceType, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, OwnershipSettings, ParallelismConfiguration, PartnerAppAuthType, PartnerAppConfig, PartnerAppMaintenanceConfig, PartnerAppType, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, RemoteDebugConfig, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType } from "./models_2";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface DescribeCompilationJobResponse {
8
+ /**
9
+ * <p>The name of the model compilation job.</p>
10
+ * @public
11
+ */
12
+ CompilationJobName: string | undefined;
13
+ /**
14
+ * <p>The Amazon Resource Name (ARN) of the model compilation job.</p>
15
+ * @public
16
+ */
17
+ CompilationJobArn: string | undefined;
18
+ /**
19
+ * <p>The status of the model compilation job.</p>
20
+ * @public
21
+ */
22
+ CompilationJobStatus: CompilationJobStatus | undefined;
23
+ /**
24
+ * <p>The time when the model compilation job started the <code>CompilationJob</code> instances. </p> <p>You are billed for the time between this timestamp and the timestamp in the <code>CompilationEndTime</code> field. In Amazon CloudWatch Logs, the start time might be later than this time. That's because it takes time to download the compilation job, which depends on the size of the compilation job container. </p>
25
+ * @public
26
+ */
27
+ CompilationStartTime?: Date | undefined;
28
+ /**
29
+ * <p>The time when the model compilation job on a compilation job instance ended. For a successful or stopped job, this is when the job's model artifacts have finished uploading. For a failed job, this is when Amazon SageMaker AI detected that the job failed. </p>
30
+ * @public
31
+ */
32
+ CompilationEndTime?: Date | undefined;
33
+ /**
34
+ * <p>Specifies a limit to how long a model compilation job can run. When the job reaches the time limit, Amazon SageMaker AI ends the compilation job. Use this API to cap model training costs.</p>
35
+ * @public
36
+ */
37
+ StoppingCondition: StoppingCondition | undefined;
38
+ /**
39
+ * <p>The inference image to use when compiling a model. Specify an image only if the target device is a cloud instance.</p>
40
+ * @public
41
+ */
42
+ InferenceImage?: string | undefined;
43
+ /**
44
+ * <p>The Amazon Resource Name (ARN) of the versioned model package that was provided to SageMaker Neo when you initiated a compilation job.</p>
45
+ * @public
46
+ */
47
+ ModelPackageVersionArn?: string | undefined;
48
+ /**
49
+ * <p>The time that the model compilation job was created.</p>
50
+ * @public
51
+ */
52
+ CreationTime: Date | undefined;
53
+ /**
54
+ * <p>The time that the status of the model compilation job was last modified.</p>
55
+ * @public
56
+ */
57
+ LastModifiedTime: Date | undefined;
58
+ /**
59
+ * <p>If a model compilation job failed, the reason it failed. </p>
60
+ * @public
61
+ */
62
+ FailureReason: string | undefined;
63
+ /**
64
+ * <p>Information about the location in Amazon S3 that has been configured for storing the model artifacts used in the compilation job.</p>
65
+ * @public
66
+ */
67
+ ModelArtifacts: ModelArtifacts | undefined;
68
+ /**
69
+ * <p>Provides a BLAKE2 hash value that identifies the compiled model artifacts in Amazon S3.</p>
70
+ * @public
71
+ */
72
+ ModelDigests?: ModelDigests | undefined;
73
+ /**
74
+ * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker AI assumes to perform the model compilation job.</p>
75
+ * @public
76
+ */
77
+ RoleArn: string | undefined;
78
+ /**
79
+ * <p>Information about the location in Amazon S3 of the input model artifacts, the name and shape of the expected data inputs, and the framework in which the model was trained.</p>
80
+ * @public
81
+ */
82
+ InputConfig: InputConfig | undefined;
83
+ /**
84
+ * <p>Information about the output location for the compiled model and the target device that the model runs on.</p>
85
+ * @public
86
+ */
87
+ OutputConfig: OutputConfig | undefined;
88
+ /**
89
+ * <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your compilation job to connect to. Control access to your models by configuring the VPC. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html">Protect Compilation Jobs by Using an Amazon Virtual Private Cloud</a>.</p>
90
+ * @public
91
+ */
92
+ VpcConfig?: NeoVpcConfig | undefined;
93
+ /**
94
+ * <p>Information that SageMaker Neo automatically derived about the model.</p>
95
+ * @public
96
+ */
97
+ DerivedInformation?: DerivedInformation | undefined;
98
+ }
4
99
  /**
5
100
  * @public
6
101
  */
@@ -7508,6 +7603,11 @@ export interface DomainSettingsForUpdate {
7508
7603
  * @public
7509
7604
  */
7510
7605
  SecurityGroupIds?: string[] | undefined;
7606
+ /**
7607
+ * <p>The Trusted Identity Propagation (TIP) settings for the SageMaker domain. These settings determine how user identities from IAM Identity Center are propagated through the domain to TIP enabled Amazon Web Services services.</p>
7608
+ * @public
7609
+ */
7610
+ TrustedIdentityPropagationSettings?: TrustedIdentityPropagationSettings | undefined;
7511
7611
  /**
7512
7612
  * <p>A collection of settings that configure the domain's Docker interaction.</p>
7513
7613
  * @public
@@ -8850,52 +8950,6 @@ export declare const HubContentSortBy: {
8850
8950
  * @public
8851
8951
  */
8852
8952
  export type HubContentSortBy = (typeof HubContentSortBy)[keyof typeof HubContentSortBy];
8853
- /**
8854
- * <p>Information about a hub.</p>
8855
- * @public
8856
- */
8857
- export interface HubInfo {
8858
- /**
8859
- * <p>The name of the hub.</p>
8860
- * @public
8861
- */
8862
- HubName: string | undefined;
8863
- /**
8864
- * <p>The Amazon Resource Name (ARN) of the hub.</p>
8865
- * @public
8866
- */
8867
- HubArn: string | undefined;
8868
- /**
8869
- * <p>The display name of the hub.</p>
8870
- * @public
8871
- */
8872
- HubDisplayName?: string | undefined;
8873
- /**
8874
- * <p>A description of the hub.</p>
8875
- * @public
8876
- */
8877
- HubDescription?: string | undefined;
8878
- /**
8879
- * <p>The searchable keywords for the hub.</p>
8880
- * @public
8881
- */
8882
- HubSearchKeywords?: string[] | undefined;
8883
- /**
8884
- * <p>The status of the hub.</p>
8885
- * @public
8886
- */
8887
- HubStatus: HubStatus | undefined;
8888
- /**
8889
- * <p>The date and time that the hub was created.</p>
8890
- * @public
8891
- */
8892
- CreationTime: Date | undefined;
8893
- /**
8894
- * <p>The date and time that the hub was last modified.</p>
8895
- * @public
8896
- */
8897
- LastModifiedTime: Date | undefined;
8898
- }
8899
8953
  /**
8900
8954
  * @internal
8901
8955
  */
@@ -1,7 +1,53 @@
1
1
  import { ActionSummary, AlgorithmSortBy, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppType, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, ClarifyCheckStepMetadata, ClusterEventResourceType, ClusterEventSummary, ClusterNodeSummary, FeatureStatus, ModelApprovalStatus, ModelPackageStatus, OutputParameter, SchedulerResourceStatus, Tag, UserContext } from "./models_0";
2
2
  import { _InstanceType, ClusterSchedulerConfigSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ComputeQuotaSummary, ConditionStepMetadata, ContextSummary, HubContentType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, RecommendationJobType, ResourceLimits } from "./models_1";
3
3
  import { CrossAccountFilterOption, ModelCardStatus, ModelLifeCycle, MonitoringType, OptimizationJobDeploymentInstanceType, PartnerAppType, SharingType, SpaceStorageSettings, StudioLifecycleConfigAppType, TrialComponentStatus } from "./models_2";
4
- import { DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, DomainDetails, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigStepMetadata, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointStepMetadata, EndpointSummary, EventSortBy, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FlowDefinitionSummary, HubContentInfo, HubContentSortBy, HubContentSupportStatus, HubInfo, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, OptimizationJobStatus, PartnerAppStatus, PipelineExecutionStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ReservedCapacityInstanceType, ReservedCapacitySummary, SageMakerResourceName, ScheduleStatus, SecondaryStatus, SpaceStatus, SubscribedWorkteam, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrainingPlanStatus, TransformJobStatus, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce } from "./models_3";
4
+ import { DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, DomainDetails, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigStepMetadata, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointStepMetadata, EndpointSummary, EventSortBy, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FlowDefinitionSummary, HubContentInfo, HubContentSortBy, HubContentSupportStatus, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, OptimizationJobStatus, PartnerAppStatus, PipelineExecutionStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ReservedCapacityInstanceType, ReservedCapacitySummary, SageMakerResourceName, ScheduleStatus, SecondaryStatus, SpaceStatus, SubscribedWorkteam, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrainingPlanStatus, TransformJobStatus, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus } from "./models_3";
5
+ /**
6
+ * <p>Information about a hub.</p>
7
+ * @public
8
+ */
9
+ export interface HubInfo {
10
+ /**
11
+ * <p>The name of the hub.</p>
12
+ * @public
13
+ */
14
+ HubName: string | undefined;
15
+ /**
16
+ * <p>The Amazon Resource Name (ARN) of the hub.</p>
17
+ * @public
18
+ */
19
+ HubArn: string | undefined;
20
+ /**
21
+ * <p>The display name of the hub.</p>
22
+ * @public
23
+ */
24
+ HubDisplayName?: string | undefined;
25
+ /**
26
+ * <p>A description of the hub.</p>
27
+ * @public
28
+ */
29
+ HubDescription?: string | undefined;
30
+ /**
31
+ * <p>The searchable keywords for the hub.</p>
32
+ * @public
33
+ */
34
+ HubSearchKeywords?: string[] | undefined;
35
+ /**
36
+ * <p>The status of the hub.</p>
37
+ * @public
38
+ */
39
+ HubStatus: HubStatus | undefined;
40
+ /**
41
+ * <p>The date and time that the hub was created.</p>
42
+ * @public
43
+ */
44
+ CreationTime: Date | undefined;
45
+ /**
46
+ * <p>The date and time that the hub was last modified.</p>
47
+ * @public
48
+ */
49
+ LastModifiedTime: Date | undefined;
50
+ }
5
51
  /**
6
52
  * @public
7
53
  * @enum
@@ -8193,18 +8239,3 @@ export interface ListWorkforcesRequest {
8193
8239
  */
8194
8240
  MaxResults?: number | undefined;
8195
8241
  }
8196
- /**
8197
- * @public
8198
- */
8199
- export interface ListWorkforcesResponse {
8200
- /**
8201
- * <p>A list containing information about your workforce.</p>
8202
- * @public
8203
- */
8204
- Workforces: Workforce[] | undefined;
8205
- /**
8206
- * <p>A token to resume pagination.</p>
8207
- * @public
8208
- */
8209
- NextToken?: string | undefined;
8210
- }
@@ -3,6 +3,21 @@ import { _InstanceType, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinit
3
3
  import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, DriftCheckBaselines, ExperimentConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PartnerAppConfig, PartnerAppMaintenanceConfig, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType, WorkforceVpcConfigRequest } from "./models_2";
4
4
  import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, EndpointStatus, Experiment, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, GitConfigForUpdate, HubContentSupportStatus, InferenceComponentDeploymentConfig, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ReservedCapacityInstanceType, ReservedCapacityType, ResourceType, SageMakerResourceName, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, TemplateProviderDetail, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, Workforce, Workteam } from "./models_3";
5
5
  import { HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, MonitoringAlertSummary, Parameter, SortOrder } from "./models_4";
6
+ /**
7
+ * @public
8
+ */
9
+ export interface ListWorkforcesResponse {
10
+ /**
11
+ * <p>A list containing information about your workforce.</p>
12
+ * @public
13
+ */
14
+ Workforces: Workforce[] | undefined;
15
+ /**
16
+ * <p>A token to resume pagination.</p>
17
+ * @public
18
+ */
19
+ NextToken?: string | undefined;
20
+ }
6
21
  /**
7
22
  * @public
8
23
  * @enum
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DescribeCompilationJobRequest,
5
- DescribeCompilationJobResponse,
6
- } from "../models/models_2";
3
+ import { DescribeCompilationJobRequest } from "../models/models_2";
4
+ import { DescribeCompilationJobResponse } from "../models/models_3";
7
5
  import {
8
6
  SageMakerClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ListWorkforcesRequest,
5
- ListWorkforcesResponse,
6
- } from "../models/models_4";
3
+ import { ListWorkforcesRequest } from "../models/models_4";
4
+ import { ListWorkforcesResponse } from "../models/models_5";
7
5
  import {
8
6
  SageMakerClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -1135,6 +1135,9 @@ export interface RStudioServerProDomainSettings {
1135
1135
  RStudioPackageManagerUrl?: string | undefined;
1136
1136
  DefaultResourceSpec?: ResourceSpec | undefined;
1137
1137
  }
1138
+ export interface TrustedIdentityPropagationSettings {
1139
+ Status: FeatureStatus | undefined;
1140
+ }
1138
1141
  export interface UnifiedStudioSettings {
1139
1142
  StudioWebPortalAccess?: FeatureStatus | undefined;
1140
1143
  DomainAccountId?: string | undefined;
@@ -1149,6 +1152,9 @@ export interface DomainSettings {
1149
1152
  SecurityGroupIds?: string[] | undefined;
1150
1153
  RStudioServerProDomainSettings?: RStudioServerProDomainSettings | undefined;
1151
1154
  ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | undefined;
1155
+ TrustedIdentityPropagationSettings?:
1156
+ | TrustedIdentityPropagationSettings
1157
+ | undefined;
1152
1158
  DockerSettings?: DockerSettings | undefined;
1153
1159
  AmazonQSettings?: AmazonQSettings | undefined;
1154
1160
  UnifiedStudioSettings?: UnifiedStudioSettings | undefined;
@@ -2232,7 +2238,3 @@ export interface ModelBiasAppSpecification {
2232
2238
  ConfigUri: string | undefined;
2233
2239
  Environment?: Record<string, string> | undefined;
2234
2240
  }
2235
- export interface ModelBiasBaselineConfig {
2236
- BaseliningJobName?: string | undefined;
2237
- ConstraintsResource?: MonitoringConstraintsResource | undefined;
2238
- }
@@ -75,18 +75,15 @@ import {
75
75
  CognitoConfig,
76
76
  CognitoMemberDefinition,
77
77
  CollectionConfiguration,
78
- CompilationJobStatus,
79
78
  DeviceSelectionConfig,
80
79
  EdgeDeploymentConfig,
81
80
  EndpointInput,
82
81
  GitConfig,
83
82
  HubContentType,
84
- InputConfig,
85
83
  JupyterServerAppSettings,
86
84
  KernelGatewayAppSettings,
87
85
  MetadataProperties,
88
86
  ModelBiasAppSpecification,
89
- ModelBiasBaselineConfig,
90
87
  ModelDeployConfig,
91
88
  MonitoringConstraintsResource,
92
89
  MonitoringNetworkConfig,
@@ -94,8 +91,6 @@ import {
94
91
  MonitoringResources,
95
92
  MonitoringStatisticsResource,
96
93
  MonitoringStoppingCondition,
97
- NeoVpcConfig,
98
- OutputConfig,
99
94
  ProcessingInstanceType,
100
95
  ProcessingS3UploadMode,
101
96
  RetryStrategy,
@@ -103,6 +98,10 @@ import {
103
98
  TrainingSpecification,
104
99
  UserSettings,
105
100
  } from "./models_1";
101
+ export interface ModelBiasBaselineConfig {
102
+ BaseliningJobName?: string | undefined;
103
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
104
+ }
106
105
  export interface MonitoringGroundTruthS3Input {
107
106
  S3Uri?: string | undefined;
108
107
  }
@@ -1608,6 +1607,7 @@ export interface DescribeAppResponse {
1608
1607
  UserProfileName?: string | undefined;
1609
1608
  SpaceName?: string | undefined;
1610
1609
  Status?: AppStatus | undefined;
1610
+ EffectiveTrustedIdentityPropagationStatus?: FeatureStatus | undefined;
1611
1611
  RecoveryMode?: boolean | undefined;
1612
1612
  LastHealthCheckTimestamp?: Date | undefined;
1613
1613
  LastUserActivityTimestamp?: Date | undefined;
@@ -1777,26 +1777,6 @@ export interface ModelArtifacts {
1777
1777
  export interface ModelDigests {
1778
1778
  ArtifactDigest?: string | undefined;
1779
1779
  }
1780
- export interface DescribeCompilationJobResponse {
1781
- CompilationJobName: string | undefined;
1782
- CompilationJobArn: string | undefined;
1783
- CompilationJobStatus: CompilationJobStatus | undefined;
1784
- CompilationStartTime?: Date | undefined;
1785
- CompilationEndTime?: Date | undefined;
1786
- StoppingCondition: StoppingCondition | undefined;
1787
- InferenceImage?: string | undefined;
1788
- ModelPackageVersionArn?: string | undefined;
1789
- CreationTime: Date | undefined;
1790
- LastModifiedTime: Date | undefined;
1791
- FailureReason: string | undefined;
1792
- ModelArtifacts: ModelArtifacts | undefined;
1793
- ModelDigests?: ModelDigests | undefined;
1794
- RoleArn: string | undefined;
1795
- InputConfig: InputConfig | undefined;
1796
- OutputConfig: OutputConfig | undefined;
1797
- VpcConfig?: NeoVpcConfig | undefined;
1798
- DerivedInformation?: DerivedInformation | undefined;
1799
- }
1800
1780
  export declare const CreateModelCardRequestFilterSensitiveLog: (
1801
1781
  obj: CreateModelCardRequest
1802
1782
  ) => any;
@@ -39,6 +39,7 @@ import {
39
39
  import {
40
40
  _InstanceType,
41
41
  CognitoConfig,
42
+ CompilationJobStatus,
42
43
  ComputeQuotaConfig,
43
44
  ComputeQuotaTarget,
44
45
  ContainerDefinition,
@@ -76,6 +77,7 @@ import {
76
77
  InferenceExperimentDataStorageConfig,
77
78
  InferenceExperimentSchedule,
78
79
  InferenceExperimentType,
80
+ InputConfig,
79
81
  JobType,
80
82
  LabelingJobAlgorithmsConfig,
81
83
  LabelingJobInputConfig,
@@ -83,14 +85,15 @@ import {
83
85
  LabelingJobStoppingConditions,
84
86
  MetadataProperties,
85
87
  ModelBiasAppSpecification,
86
- ModelBiasBaselineConfig,
87
88
  ModelInfrastructureConfig,
88
89
  MonitoringNetworkConfig,
89
90
  MonitoringOutputConfig,
90
91
  MonitoringResources,
91
92
  MonitoringStoppingCondition,
93
+ NeoVpcConfig,
92
94
  OfflineStoreConfig,
93
95
  OnlineStoreConfig,
96
+ OutputConfig,
94
97
  Processor,
95
98
  ProductionVariant,
96
99
  ProductionVariantAcceleratorType,
@@ -105,6 +108,7 @@ import {
105
108
  TagPropagation,
106
109
  ThroughputMode,
107
110
  TrackingServerSize,
111
+ TrustedIdentityPropagationSettings,
108
112
  UnifiedStudioSettings,
109
113
  UserSettings,
110
114
  VendorGuidance,
@@ -119,6 +123,7 @@ import {
119
123
  DeployedImage,
120
124
  DeploymentRecommendation,
121
125
  DeploymentStageStatusSummary,
126
+ DerivedInformation,
122
127
  DirectInternetAccess,
123
128
  DriftCheckBaselines,
124
129
  ExperimentConfig,
@@ -126,11 +131,13 @@ import {
126
131
  InstanceMetadataServiceConfiguration,
127
132
  MemberDefinition,
128
133
  ModelArtifacts,
134
+ ModelBiasBaselineConfig,
129
135
  ModelBiasJobInput,
130
136
  ModelCardExportOutputConfig,
131
137
  ModelCardSecurityConfig,
132
138
  ModelCardStatus,
133
139
  ModelClientConfig,
140
+ ModelDigests,
134
141
  ModelExplainabilityAppSpecification,
135
142
  ModelExplainabilityBaselineConfig,
136
143
  ModelExplainabilityJobInput,
@@ -182,6 +189,26 @@ import {
182
189
  WorkerAccessConfiguration,
183
190
  WorkforceIpAddressType,
184
191
  } from "./models_2";
192
+ export interface DescribeCompilationJobResponse {
193
+ CompilationJobName: string | undefined;
194
+ CompilationJobArn: string | undefined;
195
+ CompilationJobStatus: CompilationJobStatus | undefined;
196
+ CompilationStartTime?: Date | undefined;
197
+ CompilationEndTime?: Date | undefined;
198
+ StoppingCondition: StoppingCondition | undefined;
199
+ InferenceImage?: string | undefined;
200
+ ModelPackageVersionArn?: string | undefined;
201
+ CreationTime: Date | undefined;
202
+ LastModifiedTime: Date | undefined;
203
+ FailureReason: string | undefined;
204
+ ModelArtifacts: ModelArtifacts | undefined;
205
+ ModelDigests?: ModelDigests | undefined;
206
+ RoleArn: string | undefined;
207
+ InputConfig: InputConfig | undefined;
208
+ OutputConfig: OutputConfig | undefined;
209
+ VpcConfig?: NeoVpcConfig | undefined;
210
+ DerivedInformation?: DerivedInformation | undefined;
211
+ }
185
212
  export interface DescribeComputeQuotaRequest {
186
213
  ComputeQuotaId: string | undefined;
187
214
  ComputeQuotaVersion?: number | undefined;
@@ -2212,6 +2239,9 @@ export interface DomainSettingsForUpdate {
2212
2239
  | undefined;
2213
2240
  ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | undefined;
2214
2241
  SecurityGroupIds?: string[] | undefined;
2242
+ TrustedIdentityPropagationSettings?:
2243
+ | TrustedIdentityPropagationSettings
2244
+ | undefined;
2215
2245
  DockerSettings?: DockerSettings | undefined;
2216
2246
  AmazonQSettings?: AmazonQSettings | undefined;
2217
2247
  UnifiedStudioSettings?: UnifiedStudioSettings | undefined;
@@ -2597,16 +2627,6 @@ export declare const HubContentSortBy: {
2597
2627
  };
2598
2628
  export type HubContentSortBy =
2599
2629
  (typeof HubContentSortBy)[keyof typeof HubContentSortBy];
2600
- export interface HubInfo {
2601
- HubName: string | undefined;
2602
- HubArn: string | undefined;
2603
- HubDisplayName?: string | undefined;
2604
- HubDescription?: string | undefined;
2605
- HubSearchKeywords?: string[] | undefined;
2606
- HubStatus: HubStatus | undefined;
2607
- CreationTime: Date | undefined;
2608
- LastModifiedTime: Date | undefined;
2609
- }
2610
2630
  export declare const DescribeModelCardResponseFilterSensitiveLog: (
2611
2631
  obj: DescribeModelCardResponse
2612
2632
  ) => any;
@@ -97,7 +97,7 @@ import {
97
97
  HubContentInfo,
98
98
  HubContentSortBy,
99
99
  HubContentSupportStatus,
100
- HubInfo,
100
+ HubStatus,
101
101
  HyperParameterTrainingJobSummary,
102
102
  HyperParameterTuningJobCompletionDetails,
103
103
  HyperParameterTuningJobConsumedResources,
@@ -142,8 +142,17 @@ import {
142
142
  UserProfileStatus,
143
143
  WarmPoolResourceStatus,
144
144
  WarmPoolStatus,
145
- Workforce,
146
145
  } from "./models_3";
146
+ export interface HubInfo {
147
+ HubName: string | undefined;
148
+ HubArn: string | undefined;
149
+ HubDisplayName?: string | undefined;
150
+ HubDescription?: string | undefined;
151
+ HubSearchKeywords?: string[] | undefined;
152
+ HubStatus: HubStatus | undefined;
153
+ CreationTime: Date | undefined;
154
+ LastModifiedTime: Date | undefined;
155
+ }
147
156
  export declare const HubSortBy: {
148
157
  readonly ACCOUNT_ID_OWNER: "AccountIdOwner";
149
158
  readonly CREATION_TIME: "CreationTime";
@@ -2265,7 +2274,3 @@ export interface ListWorkforcesRequest {
2265
2274
  NextToken?: string | undefined;
2266
2275
  MaxResults?: number | undefined;
2267
2276
  }
2268
- export interface ListWorkforcesResponse {
2269
- Workforces: Workforce[] | undefined;
2270
- NextToken?: string | undefined;
2271
- }
@@ -167,6 +167,10 @@ import {
167
167
  Parameter,
168
168
  SortOrder,
169
169
  } from "./models_4";
170
+ export interface ListWorkforcesResponse {
171
+ Workforces: Workforce[] | undefined;
172
+ NextToken?: string | undefined;
173
+ }
170
174
  export declare const ListWorkteamsSortByOptions: {
171
175
  readonly CreateDate: "CreateDate";
172
176
  readonly Name: "Name";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
4
- "version": "3.864.0",
4
+ "version": "3.866.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sagemaker",