@aws-sdk/client-sagemaker 3.485.0 → 3.489.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.
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateModelCardRequestFilterSensitiveLog = exports.StudioLifecycleConfigAppType = exports.SharingType = exports.CustomFileSystem = exports.ProcessingS3DataType = exports.ProcessingS3CompressionType = exports.RedshiftResultFormat = exports.RedshiftResultCompressionType = exports.InputMode = exports.DataDistributionType = exports.RootAccess = exports.DirectInternetAccess = exports.NotebookInstanceAcceleratorType = exports.MonitoringType = exports.MonitoringProblemType = exports.SkipModelValidation = exports.ModelCardStatus = exports.InferenceExecutionMode = exports.FlatInvocations = exports.RecommendationJobType = exports.TrafficType = exports.RecommendationJobSupportedEndpointType = exports.InferenceExperimentType = exports._InstanceType = exports.ModelInfrastructureType = exports.VendorGuidance = exports.Processor = exports.JobType = exports.HyperParameterTuningJobWarmStartType = exports.HyperParameterTuningAllocationStrategy = exports.TrainingJobEarlyStoppingType = exports.HyperParameterTuningJobStrategyType = exports.TtlDurationUnit = exports.StorageType = exports.TableFormat = exports.FeatureType = exports.RoutingStrategy = exports.ManagedInstanceScalingStatus = exports.ProductionVariantAcceleratorType = exports.DeviceSubsetType = exports.FailureHandlingPolicy = exports.ExecutionRoleIdentityConfig = exports.StudioWebPortal = exports.NotebookOutputOption = exports.RStudioServerProUserGroup = exports.RStudioServerProAccessStatus = exports.CustomFileSystemConfig = exports.EdgePresetDeploymentType = exports.ProcessingInstanceType = exports.ProcessingS3UploadMode = void 0;
3
+ exports.StudioLifecycleConfigAppType = exports.SharingType = exports.CustomFileSystem = exports.ProcessingS3DataType = exports.ProcessingS3CompressionType = exports.RedshiftResultFormat = exports.RedshiftResultCompressionType = exports.InputMode = exports.DataDistributionType = exports.RootAccess = exports.DirectInternetAccess = exports.NotebookInstanceAcceleratorType = exports.MonitoringType = exports.MonitoringProblemType = exports.SkipModelValidation = exports.ModelCardStatus = exports.InferenceExecutionMode = exports.FlatInvocations = exports.RecommendationJobType = exports.TrafficType = exports.RecommendationJobSupportedEndpointType = exports.InferenceExperimentType = exports._InstanceType = exports.ModelInfrastructureType = exports.VendorGuidance = exports.Processor = exports.JobType = exports.HyperParameterTuningJobWarmStartType = exports.HyperParameterTuningAllocationStrategy = exports.TrainingJobEarlyStoppingType = exports.HyperParameterTuningJobStrategyType = exports.ThroughputMode = exports.TtlDurationUnit = exports.StorageType = exports.TableFormat = exports.FeatureType = exports.RoutingStrategy = exports.ManagedInstanceScalingStatus = exports.ProductionVariantAcceleratorType = exports.DeviceSubsetType = exports.FailureHandlingPolicy = exports.ExecutionRoleIdentityConfig = exports.StudioWebPortal = exports.NotebookOutputOption = exports.RStudioServerProUserGroup = exports.RStudioServerProAccessStatus = exports.CustomFileSystemConfig = exports.EdgePresetDeploymentType = exports.ProcessingInstanceType = exports.ProcessingS3UploadMode = void 0;
4
+ exports.CreateModelCardRequestFilterSensitiveLog = void 0;
4
5
  const smithy_client_1 = require("@smithy/smithy-client");
5
6
  exports.ProcessingS3UploadMode = {
6
7
  CONTINUOUS: "Continuous",
@@ -129,6 +130,10 @@ exports.TtlDurationUnit = {
129
130
  SECONDS: "Seconds",
130
131
  WEEKS: "Weeks",
131
132
  };
133
+ exports.ThroughputMode = {
134
+ ON_DEMAND: "OnDemand",
135
+ PROVISIONED: "Provisioned",
136
+ };
132
137
  exports.HyperParameterTuningJobStrategyType = {
133
138
  BAYESIAN: "Bayesian",
134
139
  GRID: "Grid",
@@ -15866,6 +15866,7 @@ const de_DescribeFeatureGroupResponse = (output, context) => {
15866
15866
  OnlineStoreTotalSizeBytes: smithy_client_1.expectLong,
15867
15867
  RecordIdentifierFeatureName: smithy_client_1.expectString,
15868
15868
  RoleArn: smithy_client_1.expectString,
15869
+ ThroughputConfig: (_) => de_ThroughputConfigDescription(_, context),
15869
15870
  });
15870
15871
  };
15871
15872
  const de_DescribeFeatureMetadataResponse = (output, context) => {
@@ -21168,6 +21169,13 @@ const de_TextGenerationResolvedAttributes = (output, context) => {
21168
21169
  BaseModelName: smithy_client_1.expectString,
21169
21170
  });
21170
21171
  };
21172
+ const de_ThroughputConfigDescription = (output, context) => {
21173
+ return (0, smithy_client_1.take)(output, {
21174
+ ProvisionedReadCapacityUnits: smithy_client_1.expectInt32,
21175
+ ProvisionedWriteCapacityUnits: smithy_client_1.expectInt32,
21176
+ ThroughputMode: smithy_client_1.expectString,
21177
+ });
21178
+ };
21171
21179
  const de_TimeSeriesConfig = (output, context) => {
21172
21180
  return (0, smithy_client_1.take)(output, {
21173
21181
  GroupingAttributeNames: (_) => de_GroupingAttributeNames(_, context),
@@ -126,6 +126,10 @@ export const TtlDurationUnit = {
126
126
  SECONDS: "Seconds",
127
127
  WEEKS: "Weeks",
128
128
  };
129
+ export const ThroughputMode = {
130
+ ON_DEMAND: "OnDemand",
131
+ PROVISIONED: "Provisioned",
132
+ };
129
133
  export const HyperParameterTuningJobStrategyType = {
130
134
  BAYESIAN: "Bayesian",
131
135
  GRID: "Grid",
@@ -15215,6 +15215,7 @@ const de_DescribeFeatureGroupResponse = (output, context) => {
15215
15215
  OnlineStoreTotalSizeBytes: __expectLong,
15216
15216
  RecordIdentifierFeatureName: __expectString,
15217
15217
  RoleArn: __expectString,
15218
+ ThroughputConfig: (_) => de_ThroughputConfigDescription(_, context),
15218
15219
  });
15219
15220
  };
15220
15221
  const de_DescribeFeatureMetadataResponse = (output, context) => {
@@ -20517,6 +20518,13 @@ const de_TextGenerationResolvedAttributes = (output, context) => {
20517
20518
  BaseModelName: __expectString,
20518
20519
  });
20519
20520
  };
20521
+ const de_ThroughputConfigDescription = (output, context) => {
20522
+ return take(output, {
20523
+ ProvisionedReadCapacityUnits: __expectInt32,
20524
+ ProvisionedWriteCapacityUnits: __expectInt32,
20525
+ ThroughputMode: __expectString,
20526
+ });
20527
+ };
20520
20528
  const de_TimeSeriesConfig = (output, context) => {
20521
20529
  return take(output, {
20522
20530
  GroupingAttributeNames: (_) => de_GroupingAttributeNames(_, context),
@@ -91,6 +91,11 @@ declare const CreateFeatureGroupCommand_base: {
91
91
  * },
92
92
  * TableFormat: "Default" || "Glue" || "Iceberg",
93
93
  * },
94
+ * ThroughputConfig: { // ThroughputConfig
95
+ * ThroughputMode: "OnDemand" || "Provisioned", // required
96
+ * ProvisionedReadCapacityUnits: Number("int"),
97
+ * ProvisionedWriteCapacityUnits: Number("int"),
98
+ * },
94
99
  * RoleArn: "STRING_VALUE",
95
100
  * Description: "STRING_VALUE",
96
101
  * Tags: [ // TagList
@@ -85,6 +85,11 @@ declare const DescribeFeatureGroupCommand_base: {
85
85
  * // },
86
86
  * // TableFormat: "Default" || "Glue" || "Iceberg",
87
87
  * // },
88
+ * // ThroughputConfig: { // ThroughputConfigDescription
89
+ * // ThroughputMode: "OnDemand" || "Provisioned", // required
90
+ * // ProvisionedReadCapacityUnits: Number("int"),
91
+ * // ProvisionedWriteCapacityUnits: Number("int"),
92
+ * // },
88
93
  * // RoleArn: "STRING_VALUE",
89
94
  * // FeatureGroupStatus: "Creating" || "Created" || "CreateFailed" || "Deleting" || "DeleteFailed",
90
95
  * // OfflineStoreStatus: { // OfflineStoreStatus
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeSubscribedWorkteamRequest, DescribeSubscribedWorkteamResponse } from "../models/models_2";
3
+ import { DescribeSubscribedWorkteamRequest, DescribeSubscribedWorkteamResponse } from "../models/models_3";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -64,6 +64,11 @@ declare const UpdateFeatureGroupCommand_base: {
64
64
  * Value: Number("int"),
65
65
  * },
66
66
  * },
67
+ * ThroughputConfig: { // ThroughputConfigUpdate
68
+ * ThroughputMode: "OnDemand" || "Provisioned",
69
+ * ProvisionedReadCapacityUnits: Number("int"),
70
+ * ProvisionedWriteCapacityUnits: Number("int"),
71
+ * },
67
72
  * };
68
73
  * const command = new UpdateFeatureGroupCommand(input);
69
74
  * const response = await client.send(command);
@@ -2431,6 +2431,56 @@ export interface OnlineStoreConfig {
2431
2431
  */
2432
2432
  StorageType?: StorageType;
2433
2433
  }
2434
+ /**
2435
+ * @public
2436
+ * @enum
2437
+ */
2438
+ export declare const ThroughputMode: {
2439
+ readonly ON_DEMAND: "OnDemand";
2440
+ readonly PROVISIONED: "Provisioned";
2441
+ };
2442
+ /**
2443
+ * @public
2444
+ */
2445
+ export type ThroughputMode = (typeof ThroughputMode)[keyof typeof ThroughputMode];
2446
+ /**
2447
+ * @public
2448
+ * <p>Used to set feature group throughput configuration. There are two modes:
2449
+ * <code>ON_DEMAND</code> and <code>PROVISIONED</code>. With on-demand mode, you are
2450
+ * charged for data reads and writes that your application performs on your feature group. You
2451
+ * do not need to specify read and write throughput because Feature Store accommodates your
2452
+ * workloads as they ramp up and down. You can switch a feature group to on-demand only once
2453
+ * in a 24 hour period. With provisioned throughput mode, you specify the read and write
2454
+ * capacity per second that you expect your application to require, and you are billed based
2455
+ * on those limits. Exceeding provisioned throughput will result in your requests being
2456
+ * throttled. </p>
2457
+ * <p>Note: <code>PROVISIONED</code> throughput mode is supported only for feature groups that
2458
+ * are offline-only, or use the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType">
2459
+ * <code>Standard</code>
2460
+ * </a> tier online store. </p>
2461
+ */
2462
+ export interface ThroughputConfig {
2463
+ /**
2464
+ * @public
2465
+ * <p>The mode used for your feature group throughput: <code>ON_DEMAND</code> or
2466
+ * <code>PROVISIONED</code>. </p>
2467
+ */
2468
+ ThroughputMode: ThroughputMode | undefined;
2469
+ /**
2470
+ * @public
2471
+ * <p> For provisioned feature groups with online store enabled, this indicates the read
2472
+ * throughput you are billed for and can consume without throttling. </p>
2473
+ * <p>This field is not applicable for on-demand feature groups. </p>
2474
+ */
2475
+ ProvisionedReadCapacityUnits?: number;
2476
+ /**
2477
+ * @public
2478
+ * <p> For provisioned feature groups, this indicates the write throughput you are billed for
2479
+ * and can consume without throttling. </p>
2480
+ * <p>This field is not applicable for on-demand feature groups. </p>
2481
+ */
2482
+ ProvisionedWriteCapacityUnits?: number;
2483
+ }
2434
2484
  /**
2435
2485
  * @public
2436
2486
  */
@@ -2549,6 +2599,23 @@ export interface CreateFeatureGroupRequest {
2549
2599
  * <p>To learn more about this parameter, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OfflineStoreConfig.html">OfflineStoreConfig</a>.</p>
2550
2600
  */
2551
2601
  OfflineStoreConfig?: OfflineStoreConfig;
2602
+ /**
2603
+ * @public
2604
+ * <p>Used to set feature group throughput configuration. There are two modes:
2605
+ * <code>ON_DEMAND</code> and <code>PROVISIONED</code>. With on-demand mode, you are
2606
+ * charged for data reads and writes that your application performs on your feature group. You
2607
+ * do not need to specify read and write throughput because Feature Store accommodates your
2608
+ * workloads as they ramp up and down. You can switch a feature group to on-demand only once
2609
+ * in a 24 hour period. With provisioned throughput mode, you specify the read and write
2610
+ * capacity per second that you expect your application to require, and you are billed based
2611
+ * on those limits. Exceeding provisioned throughput will result in your requests being
2612
+ * throttled. </p>
2613
+ * <p>Note: <code>PROVISIONED</code> throughput mode is supported only for feature groups that
2614
+ * are offline-only, or use the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType">
2615
+ * <code>Standard</code>
2616
+ * </a> tier online store. </p>
2617
+ */
2618
+ ThroughputConfig?: ThroughputConfig;
2552
2619
  /**
2553
2620
  * @public
2554
2621
  * <p>The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the
@@ -10677,63 +10744,6 @@ export interface DebugHookConfig {
10677
10744
  */
10678
10745
  CollectionConfigurations?: CollectionConfiguration[];
10679
10746
  }
10680
- /**
10681
- * @public
10682
- * <p>Configuration information for SageMaker Debugger rules for debugging. To learn more about
10683
- * how to configure the <code>DebugRuleConfiguration</code> parameter,
10684
- * see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html">Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job</a>.</p>
10685
- */
10686
- export interface DebugRuleConfiguration {
10687
- /**
10688
- * @public
10689
- * <p>The name of the rule configuration. It must be unique relative to other rule
10690
- * configuration names.</p>
10691
- */
10692
- RuleConfigurationName: string | undefined;
10693
- /**
10694
- * @public
10695
- * <p>Path to local storage location for output of rules. Defaults to
10696
- * <code>/opt/ml/processing/output/rule/</code>.</p>
10697
- */
10698
- LocalPath?: string;
10699
- /**
10700
- * @public
10701
- * <p>Path to Amazon S3 storage location for rules.</p>
10702
- */
10703
- S3OutputPath?: string;
10704
- /**
10705
- * @public
10706
- * <p>The Amazon Elastic Container (ECR) Image for the managed rule evaluation.</p>
10707
- */
10708
- RuleEvaluatorImage: string | undefined;
10709
- /**
10710
- * @public
10711
- * <p>The instance type to deploy a custom rule for debugging a training job.</p>
10712
- */
10713
- InstanceType?: ProcessingInstanceType;
10714
- /**
10715
- * @public
10716
- * <p>The size, in GB, of the ML storage volume attached to the processing instance.</p>
10717
- */
10718
- VolumeSizeInGB?: number;
10719
- /**
10720
- * @public
10721
- * <p>Runtime configuration for rule container.</p>
10722
- */
10723
- RuleParameters?: Record<string, string>;
10724
- }
10725
- /**
10726
- * @public
10727
- * <p>Configuration information for the infrastructure health check of a training job. A SageMaker-provided health check tests the health of instance hardware and cluster network
10728
- * connectivity.</p>
10729
- */
10730
- export interface InfraCheckConfig {
10731
- /**
10732
- * @public
10733
- * <p>Enables an infrastructure health check.</p>
10734
- */
10735
- EnableInfraCheck?: boolean;
10736
- }
10737
10747
  /**
10738
10748
  * @internal
10739
10749
  */
@@ -1,5 +1,62 @@
1
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, CognitoConfig, CognitoMemberDefinition, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, NeoVpcConfig, ObjectiveStatus, OutputConfig, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
- import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DebugHookConfig, DebugRuleConfiguration, 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, InfraCheckConfig, 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, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OwnershipSettings, ParallelismConfiguration, ProcessingInput, ProcessingInstanceType, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, UserSettings, VendorGuidance } from "./models_1";
2
+ import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DebugHookConfig, 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, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OwnershipSettings, ParallelismConfiguration, ProcessingInput, ProcessingInstanceType, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, ThroughputMode, UserSettings, VendorGuidance } from "./models_1";
3
+ /**
4
+ * @public
5
+ * <p>Configuration information for SageMaker Debugger rules for debugging. To learn more about
6
+ * how to configure the <code>DebugRuleConfiguration</code> parameter,
7
+ * see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html">Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job</a>.</p>
8
+ */
9
+ export interface DebugRuleConfiguration {
10
+ /**
11
+ * @public
12
+ * <p>The name of the rule configuration. It must be unique relative to other rule
13
+ * configuration names.</p>
14
+ */
15
+ RuleConfigurationName: string | undefined;
16
+ /**
17
+ * @public
18
+ * <p>Path to local storage location for output of rules. Defaults to
19
+ * <code>/opt/ml/processing/output/rule/</code>.</p>
20
+ */
21
+ LocalPath?: string;
22
+ /**
23
+ * @public
24
+ * <p>Path to Amazon S3 storage location for rules.</p>
25
+ */
26
+ S3OutputPath?: string;
27
+ /**
28
+ * @public
29
+ * <p>The Amazon Elastic Container (ECR) Image for the managed rule evaluation.</p>
30
+ */
31
+ RuleEvaluatorImage: string | undefined;
32
+ /**
33
+ * @public
34
+ * <p>The instance type to deploy a custom rule for debugging a training job.</p>
35
+ */
36
+ InstanceType?: ProcessingInstanceType;
37
+ /**
38
+ * @public
39
+ * <p>The size, in GB, of the ML storage volume attached to the processing instance.</p>
40
+ */
41
+ VolumeSizeInGB?: number;
42
+ /**
43
+ * @public
44
+ * <p>Runtime configuration for rule container.</p>
45
+ */
46
+ RuleParameters?: Record<string, string>;
47
+ }
48
+ /**
49
+ * @public
50
+ * <p>Configuration information for the infrastructure health check of a training job. A SageMaker-provided health check tests the health of instance hardware and cluster network
51
+ * connectivity.</p>
52
+ */
53
+ export interface InfraCheckConfig {
54
+ /**
55
+ * @public
56
+ * <p>Enables an infrastructure health check.</p>
57
+ */
58
+ EnableInfraCheck?: boolean;
59
+ }
3
60
  /**
4
61
  * @public
5
62
  * <p>Configuration information for Amazon SageMaker Debugger system monitoring, framework profiling, and
@@ -4483,6 +4540,44 @@ export interface OfflineStoreStatus {
4483
4540
  */
4484
4541
  BlockedReason?: string;
4485
4542
  }
4543
+ /**
4544
+ * @public
4545
+ * <p>Active throughput configuration of the feature group. Used to set feature group
4546
+ * throughput configuration. There are two modes: <code>ON_DEMAND</code> and
4547
+ * <code>PROVISIONED</code>. With on-demand mode, you are charged for data reads and writes
4548
+ * that your application performs on your feature group. You do not need to specify read and
4549
+ * write throughput because Feature Store accommodates your workloads as they ramp up and
4550
+ * down. You can switch a feature group to on-demand only once in a 24 hour period. With
4551
+ * provisioned throughput mode, you specify the read and write capacity per second that you
4552
+ * expect your application to require, and you are billed based on those limits. Exceeding
4553
+ * provisioned throughput will result in your requests being throttled. </p>
4554
+ * <p>Note: <code>PROVISIONED</code> throughput mode is supported only for feature groups that
4555
+ * are offline-only, or use the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType">
4556
+ * <code>Standard</code>
4557
+ * </a> tier online store. </p>
4558
+ */
4559
+ export interface ThroughputConfigDescription {
4560
+ /**
4561
+ * @public
4562
+ * <p>The mode used for your feature group throughput: <code>ON_DEMAND</code> or
4563
+ * <code>PROVISIONED</code>. </p>
4564
+ */
4565
+ ThroughputMode: ThroughputMode | undefined;
4566
+ /**
4567
+ * @public
4568
+ * <p> For provisioned feature groups with online store enabled, this indicates the read
4569
+ * throughput you are billed for and can consume without throttling. </p>
4570
+ * <p>This field is not applicable for on-demand feature groups. </p>
4571
+ */
4572
+ ProvisionedReadCapacityUnits?: number;
4573
+ /**
4574
+ * @public
4575
+ * <p> For provisioned feature groups, this indicates the write throughput you are billed for
4576
+ * and can consume without throttling. </p>
4577
+ * <p>This field is not applicable for on-demand feature groups. </p>
4578
+ */
4579
+ ProvisionedWriteCapacityUnits?: number;
4580
+ }
4486
4581
  /**
4487
4582
  * @public
4488
4583
  */
@@ -4557,6 +4652,23 @@ export interface DescribeFeatureGroupResponse {
4557
4652
  * </ul>
4558
4653
  */
4559
4654
  OfflineStoreConfig?: OfflineStoreConfig;
4655
+ /**
4656
+ * @public
4657
+ * <p>Active throughput configuration of the feature group. Used to set feature group
4658
+ * throughput configuration. There are two modes: <code>ON_DEMAND</code> and
4659
+ * <code>PROVISIONED</code>. With on-demand mode, you are charged for data reads and writes
4660
+ * that your application performs on your feature group. You do not need to specify read and
4661
+ * write throughput because Feature Store accommodates your workloads as they ramp up and
4662
+ * down. You can switch a feature group to on-demand only once in a 24 hour period. With
4663
+ * provisioned throughput mode, you specify the read and write capacity per second that you
4664
+ * expect your application to require, and you are billed based on those limits. Exceeding
4665
+ * provisioned throughput will result in your requests being throttled. </p>
4666
+ * <p>Note: <code>PROVISIONED</code> throughput mode is supported only for feature groups that
4667
+ * are offline-only, or use the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType">
4668
+ * <code>Standard</code>
4669
+ * </a> tier online store. </p>
4670
+ */
4671
+ ThroughputConfig?: ThroughputConfigDescription;
4560
4672
  /**
4561
4673
  * @public
4562
4674
  * <p>The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the
@@ -8619,57 +8731,6 @@ export interface DescribeStudioLifecycleConfigResponse {
8619
8731
  */
8620
8732
  StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
8621
8733
  }
8622
- /**
8623
- * @public
8624
- */
8625
- export interface DescribeSubscribedWorkteamRequest {
8626
- /**
8627
- * @public
8628
- * <p>The Amazon Resource Name (ARN) of the subscribed work team to describe.</p>
8629
- */
8630
- WorkteamArn: string | undefined;
8631
- }
8632
- /**
8633
- * @public
8634
- * <p>Describes a work team of a vendor that does the a labelling job.</p>
8635
- */
8636
- export interface SubscribedWorkteam {
8637
- /**
8638
- * @public
8639
- * <p>The Amazon Resource Name (ARN) of the vendor that you have subscribed.</p>
8640
- */
8641
- WorkteamArn: string | undefined;
8642
- /**
8643
- * @public
8644
- * <p>The title of the service provided by the vendor in the Amazon Marketplace.</p>
8645
- */
8646
- MarketplaceTitle?: string;
8647
- /**
8648
- * @public
8649
- * <p>The name of the vendor in the Amazon Marketplace.</p>
8650
- */
8651
- SellerName?: string;
8652
- /**
8653
- * @public
8654
- * <p>The description of the vendor from the Amazon Marketplace.</p>
8655
- */
8656
- MarketplaceDescription?: string;
8657
- /**
8658
- * @public
8659
- * <p>Marketplace product listing ID.</p>
8660
- */
8661
- ListingId?: string;
8662
- }
8663
- /**
8664
- * @public
8665
- */
8666
- export interface DescribeSubscribedWorkteamResponse {
8667
- /**
8668
- * @public
8669
- * <p>A <code>Workteam</code> instance that contains information about the work team.</p>
8670
- */
8671
- SubscribedWorkteam: SubscribedWorkteam | undefined;
8672
- }
8673
8734
  /**
8674
8735
  * @internal
8675
8736
  */
@@ -1,6 +1,57 @@
1
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, DebugHookConfig, DebugRuleConfiguration, DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, InfraCheckConfig, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, RecommendationJobType, ResourceLimits, RetryStrategy, UserSettings } from "./models_1";
3
- import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, PipelineExecutionStatus, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ScheduleStatus, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_2";
2
+ import { _InstanceType, DebugHookConfig, DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, RecommendationJobType, ResourceLimits, RetryStrategy, UserSettings } from "./models_1";
3
+ import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, 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, PipelineExecutionStatus, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ScheduleStatus, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_2";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface DescribeSubscribedWorkteamRequest {
8
+ /**
9
+ * @public
10
+ * <p>The Amazon Resource Name (ARN) of the subscribed work team to describe.</p>
11
+ */
12
+ WorkteamArn: string | undefined;
13
+ }
14
+ /**
15
+ * @public
16
+ * <p>Describes a work team of a vendor that does the a labelling job.</p>
17
+ */
18
+ export interface SubscribedWorkteam {
19
+ /**
20
+ * @public
21
+ * <p>The Amazon Resource Name (ARN) of the vendor that you have subscribed.</p>
22
+ */
23
+ WorkteamArn: string | undefined;
24
+ /**
25
+ * @public
26
+ * <p>The title of the service provided by the vendor in the Amazon Marketplace.</p>
27
+ */
28
+ MarketplaceTitle?: string;
29
+ /**
30
+ * @public
31
+ * <p>The name of the vendor in the Amazon Marketplace.</p>
32
+ */
33
+ SellerName?: string;
34
+ /**
35
+ * @public
36
+ * <p>The description of the vendor from the Amazon Marketplace.</p>
37
+ */
38
+ MarketplaceDescription?: string;
39
+ /**
40
+ * @public
41
+ * <p>Marketplace product listing ID.</p>
42
+ */
43
+ ListingId?: string;
44
+ }
45
+ /**
46
+ * @public
47
+ */
48
+ export interface DescribeSubscribedWorkteamResponse {
49
+ /**
50
+ * @public
51
+ * <p>A <code>Workteam</code> instance that contains information about the work team.</p>
52
+ */
53
+ SubscribedWorkteam: SubscribedWorkteam | undefined;
54
+ }
4
55
  /**
5
56
  * @public
6
57
  */
@@ -9573,36 +9624,3 @@ export interface QualityCheckStepMetadata {
9573
9624
  */
9574
9625
  RegisterNewBaseline?: boolean;
9575
9626
  }
9576
- /**
9577
- * @public
9578
- * <p>Metadata for a register model job step.</p>
9579
- */
9580
- export interface RegisterModelStepMetadata {
9581
- /**
9582
- * @public
9583
- * <p>The Amazon Resource Name (ARN) of the model package.</p>
9584
- */
9585
- Arn?: string;
9586
- }
9587
- /**
9588
- * @public
9589
- * <p>Metadata for a training job step.</p>
9590
- */
9591
- export interface TrainingJobStepMetadata {
9592
- /**
9593
- * @public
9594
- * <p>The Amazon Resource Name (ARN) of the training job that was run by this step execution.</p>
9595
- */
9596
- Arn?: string;
9597
- }
9598
- /**
9599
- * @public
9600
- * <p>Metadata for a transform job step.</p>
9601
- */
9602
- export interface TransformJobStepMetadata {
9603
- /**
9604
- * @public
9605
- * <p>The Amazon Resource Name (ARN) of the transform job that was run by this step execution.</p>
9606
- */
9607
- Arn?: string;
9608
- }
@@ -1,7 +1,40 @@
1
1
  import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AutoMLJobStepMetadata, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ClusterInstanceGroupSpecification, ConditionStepMetadata, ContainerDefinition, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
- import { _InstanceType, DebugHookConfig, DebugRuleConfiguration, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, ModelCardSecurityConfig, ModelCardStatus, ModelMetrics, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SharingType, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceStorageSettings, StudioLifecycleConfigAppType, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
3
- import { CrossAccountFilterOption, DataProcessing, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotificationConfiguration, OidcConfig, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProfilerConfig, ProfilerRuleConfiguration, ProjectStatus, ScheduleStatus, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SourceIpConfig, SpaceStatus, SubscribedWorkteam, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_2";
4
- import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData, ModelStepMetadata, MonitoringAlertSummary, ProcessingJobStepMetadata, QualityCheckStepMetadata, RegisterModelStepMetadata, ResourceType, SecondaryStatus, SecondaryStatusTransition, SortBy, SortOrder, TrainingJobStepMetadata, TransformJobStatus, TransformJobStepMetadata, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
2
+ import { _InstanceType, DebugHookConfig, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, ModelCardSecurityConfig, ModelCardStatus, ModelMetrics, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SharingType, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceStorageSettings, StudioLifecycleConfigAppType, ThroughputMode, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
3
+ import { CrossAccountFilterOption, DataProcessing, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotificationConfiguration, OidcConfig, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProfilerConfig, ProfilerRuleConfiguration, ProjectStatus, ScheduleStatus, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SourceIpConfig, SpaceStatus, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_2";
4
+ import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData, ModelStepMetadata, MonitoringAlertSummary, ProcessingJobStepMetadata, QualityCheckStepMetadata, ResourceType, SecondaryStatus, SecondaryStatusTransition, SortBy, SortOrder, SubscribedWorkteam, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
5
+ /**
6
+ * @public
7
+ * <p>Metadata for a register model job step.</p>
8
+ */
9
+ export interface RegisterModelStepMetadata {
10
+ /**
11
+ * @public
12
+ * <p>The Amazon Resource Name (ARN) of the model package.</p>
13
+ */
14
+ Arn?: string;
15
+ }
16
+ /**
17
+ * @public
18
+ * <p>Metadata for a training job step.</p>
19
+ */
20
+ export interface TrainingJobStepMetadata {
21
+ /**
22
+ * @public
23
+ * <p>The Amazon Resource Name (ARN) of the training job that was run by this step execution.</p>
24
+ */
25
+ Arn?: string;
26
+ }
27
+ /**
28
+ * @public
29
+ * <p>Metadata for a transform job step.</p>
30
+ */
31
+ export interface TransformJobStepMetadata {
32
+ /**
33
+ * @public
34
+ * <p>The Amazon Resource Name (ARN) of the transform job that was run by this step execution.</p>
35
+ */
36
+ Arn?: string;
37
+ }
5
38
  /**
6
39
  * @public
7
40
  * <p>Metadata for a tuning step.</p>
@@ -5231,6 +5264,34 @@ export interface UpdateExperimentResponse {
5231
5264
  */
5232
5265
  ExperimentArn?: string;
5233
5266
  }
5267
+ /**
5268
+ * @public
5269
+ * <p>The new throughput configuration for the feature group. You can switch between on-demand
5270
+ * and provisioned modes or update the read / write capacity of provisioned feature groups.
5271
+ * You can switch a feature group to on-demand only once in a 24 hour period. </p>
5272
+ */
5273
+ export interface ThroughputConfigUpdate {
5274
+ /**
5275
+ * @public
5276
+ * <p>Target throughput mode of the feature group. Throughput update is an asynchronous
5277
+ * operation, and the outcome should be monitored by polling <code>LastUpdateStatus</code>
5278
+ * field in <code>DescribeFeatureGroup</code> response. You cannot update a feature group's
5279
+ * throughput while another update is in progress. </p>
5280
+ */
5281
+ ThroughputMode?: ThroughputMode;
5282
+ /**
5283
+ * @public
5284
+ * <p>For provisioned feature groups with online store enabled, this indicates the read
5285
+ * throughput you are billed for and can consume without throttling. </p>
5286
+ */
5287
+ ProvisionedReadCapacityUnits?: number;
5288
+ /**
5289
+ * @public
5290
+ * <p>For provisioned feature groups, this indicates the write throughput you are billed for
5291
+ * and can consume without throttling. </p>
5292
+ */
5293
+ ProvisionedWriteCapacityUnits?: number;
5294
+ }
5234
5295
  /**
5235
5296
  * @public
5236
5297
  */
@@ -5252,6 +5313,13 @@ export interface UpdateFeatureGroupRequest {
5252
5313
  * <p>Updates the feature group online store configuration.</p>
5253
5314
  */
5254
5315
  OnlineStoreConfig?: OnlineStoreConfigUpdate;
5316
+ /**
5317
+ * @public
5318
+ * <p>The new throughput configuration for the feature group. You can switch between on-demand
5319
+ * and provisioned modes or update the read / write capacity of provisioned feature groups.
5320
+ * You can switch a feature group to on-demand only once in a 24 hour period. </p>
5321
+ */
5322
+ ThroughputConfig?: ThroughputConfigUpdate;
5255
5323
  }
5256
5324
  /**
5257
5325
  * @public
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeSubscribedWorkteamRequest,
5
5
  DescribeSubscribedWorkteamResponse,
6
- } from "../models/models_2";
6
+ } from "../models/models_3";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -609,6 +609,17 @@ export interface OnlineStoreConfig {
609
609
  TtlDuration?: TtlDuration;
610
610
  StorageType?: StorageType;
611
611
  }
612
+ export declare const ThroughputMode: {
613
+ readonly ON_DEMAND: "OnDemand";
614
+ readonly PROVISIONED: "Provisioned";
615
+ };
616
+ export type ThroughputMode =
617
+ (typeof ThroughputMode)[keyof typeof ThroughputMode];
618
+ export interface ThroughputConfig {
619
+ ThroughputMode: ThroughputMode | undefined;
620
+ ProvisionedReadCapacityUnits?: number;
621
+ ProvisionedWriteCapacityUnits?: number;
622
+ }
612
623
  export interface CreateFeatureGroupRequest {
613
624
  FeatureGroupName: string | undefined;
614
625
  RecordIdentifierFeatureName: string | undefined;
@@ -616,6 +627,7 @@ export interface CreateFeatureGroupRequest {
616
627
  FeatureDefinitions: FeatureDefinition[] | undefined;
617
628
  OnlineStoreConfig?: OnlineStoreConfig;
618
629
  OfflineStoreConfig?: OfflineStoreConfig;
630
+ ThroughputConfig?: ThroughputConfig;
619
631
  RoleArn?: string;
620
632
  Description?: string;
621
633
  Tags?: Tag[];
@@ -1865,18 +1877,6 @@ export interface DebugHookConfig {
1865
1877
  HookParameters?: Record<string, string>;
1866
1878
  CollectionConfigurations?: CollectionConfiguration[];
1867
1879
  }
1868
- export interface DebugRuleConfiguration {
1869
- RuleConfigurationName: string | undefined;
1870
- LocalPath?: string;
1871
- S3OutputPath?: string;
1872
- RuleEvaluatorImage: string | undefined;
1873
- InstanceType?: ProcessingInstanceType;
1874
- VolumeSizeInGB?: number;
1875
- RuleParameters?: Record<string, string>;
1876
- }
1877
- export interface InfraCheckConfig {
1878
- EnableInfraCheck?: boolean;
1879
- }
1880
1880
  export declare const CreateModelCardRequestFilterSensitiveLog: (
1881
1881
  obj: CreateModelCardRequest
1882
1882
  ) => any;
@@ -78,7 +78,6 @@ import {
78
78
  DataQualityBaselineConfig,
79
79
  DataQualityJobInput,
80
80
  DebugHookConfig,
81
- DebugRuleConfiguration,
82
81
  DefaultSpaceSettings,
83
82
  DeploymentConfig,
84
83
  DeviceSelectionConfig,
@@ -109,7 +108,6 @@ import {
109
108
  InferenceExperimentDataStorageConfig,
110
109
  InferenceExperimentSchedule,
111
110
  InferenceExperimentType,
112
- InfraCheckConfig,
113
111
  InstanceMetadataServiceConfiguration,
114
112
  JobType,
115
113
  LabelingJobAlgorithmsConfig,
@@ -167,9 +165,22 @@ import {
167
165
  SpaceSettings,
168
166
  SpaceSharingSettings,
169
167
  StudioLifecycleConfigAppType,
168
+ ThroughputMode,
170
169
  UserSettings,
171
170
  VendorGuidance,
172
171
  } from "./models_1";
172
+ export interface DebugRuleConfiguration {
173
+ RuleConfigurationName: string | undefined;
174
+ LocalPath?: string;
175
+ S3OutputPath?: string;
176
+ RuleEvaluatorImage: string | undefined;
177
+ InstanceType?: ProcessingInstanceType;
178
+ VolumeSizeInGB?: number;
179
+ RuleParameters?: Record<string, string>;
180
+ }
181
+ export interface InfraCheckConfig {
182
+ EnableInfraCheck?: boolean;
183
+ }
173
184
  export interface ProfilerConfig {
174
185
  S3OutputPath?: string;
175
186
  ProfilingIntervalInMilliseconds?: number;
@@ -1215,6 +1226,11 @@ export interface OfflineStoreStatus {
1215
1226
  Status: OfflineStoreStatusValue | undefined;
1216
1227
  BlockedReason?: string;
1217
1228
  }
1229
+ export interface ThroughputConfigDescription {
1230
+ ThroughputMode: ThroughputMode | undefined;
1231
+ ProvisionedReadCapacityUnits?: number;
1232
+ ProvisionedWriteCapacityUnits?: number;
1233
+ }
1218
1234
  export interface DescribeFeatureGroupResponse {
1219
1235
  FeatureGroupArn: string | undefined;
1220
1236
  FeatureGroupName: string | undefined;
@@ -1225,6 +1241,7 @@ export interface DescribeFeatureGroupResponse {
1225
1241
  LastModifiedTime?: Date;
1226
1242
  OnlineStoreConfig?: OnlineStoreConfig;
1227
1243
  OfflineStoreConfig?: OfflineStoreConfig;
1244
+ ThroughputConfig?: ThroughputConfigDescription;
1228
1245
  RoleArn?: string;
1229
1246
  FeatureGroupStatus?: FeatureGroupStatus;
1230
1247
  OfflineStoreStatus?: OfflineStoreStatus;
@@ -2178,19 +2195,6 @@ export interface DescribeStudioLifecycleConfigResponse {
2178
2195
  StudioLifecycleConfigContent?: string;
2179
2196
  StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
2180
2197
  }
2181
- export interface DescribeSubscribedWorkteamRequest {
2182
- WorkteamArn: string | undefined;
2183
- }
2184
- export interface SubscribedWorkteam {
2185
- WorkteamArn: string | undefined;
2186
- MarketplaceTitle?: string;
2187
- SellerName?: string;
2188
- MarketplaceDescription?: string;
2189
- ListingId?: string;
2190
- }
2191
- export interface DescribeSubscribedWorkteamResponse {
2192
- SubscribedWorkteam: SubscribedWorkteam | undefined;
2193
- }
2194
2198
  export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
2195
2199
  export declare const CreateWorkforceRequestFilterSensitiveLog: (
2196
2200
  obj: CreateWorkforceRequest
@@ -50,7 +50,6 @@ import {
50
50
  import {
51
51
  _InstanceType,
52
52
  DebugHookConfig,
53
- DebugRuleConfiguration,
54
53
  DockerSettings,
55
54
  EdgeOutputConfig,
56
55
  ExecutionRoleIdentityConfig,
@@ -63,7 +62,6 @@ import {
63
62
  HyperParameterTuningJobWarmStartConfig,
64
63
  InferenceExperimentSchedule,
65
64
  InferenceExperimentType,
66
- InfraCheckConfig,
67
65
  LabelingJobInputConfig,
68
66
  ModelCardStatus,
69
67
  MonitoringScheduleConfig,
@@ -79,6 +77,7 @@ import {
79
77
  CustomizedMetricSpecification,
80
78
  DataCaptureConfigSummary,
81
79
  DataProcessing,
80
+ DebugRuleConfiguration,
82
81
  DebugRuleEvaluationStatus,
83
82
  DomainStatus,
84
83
  EdgePackagingJobStatus,
@@ -101,6 +100,7 @@ import {
101
100
  InferenceComponentStatus,
102
101
  InferenceExperimentStatus,
103
102
  InferenceMetrics,
103
+ InfraCheckConfig,
104
104
  LabelCounters,
105
105
  LabelingJobOutput,
106
106
  LabelingJobStatus,
@@ -134,6 +134,19 @@ import {
134
134
  TrialComponentParameterValue,
135
135
  TrialComponentStatus,
136
136
  } from "./models_2";
137
+ export interface DescribeSubscribedWorkteamRequest {
138
+ WorkteamArn: string | undefined;
139
+ }
140
+ export interface SubscribedWorkteam {
141
+ WorkteamArn: string | undefined;
142
+ MarketplaceTitle?: string;
143
+ SellerName?: string;
144
+ MarketplaceDescription?: string;
145
+ ListingId?: string;
146
+ }
147
+ export interface DescribeSubscribedWorkteamResponse {
148
+ SubscribedWorkteam: SubscribedWorkteam | undefined;
149
+ }
137
150
  export interface DescribeTrainingJobRequest {
138
151
  TrainingJobName: string | undefined;
139
152
  }
@@ -2308,12 +2321,3 @@ export interface QualityCheckStepMetadata {
2308
2321
  SkipCheck?: boolean;
2309
2322
  RegisterNewBaseline?: boolean;
2310
2323
  }
2311
- export interface RegisterModelStepMetadata {
2312
- Arn?: string;
2313
- }
2314
- export interface TrainingJobStepMetadata {
2315
- Arn?: string;
2316
- }
2317
- export interface TransformJobStepMetadata {
2318
- Arn?: string;
2319
- }
@@ -39,7 +39,6 @@ import {
39
39
  import {
40
40
  _InstanceType,
41
41
  DebugHookConfig,
42
- DebugRuleConfiguration,
43
42
  DefaultSpaceSettings,
44
43
  DeploymentConfig,
45
44
  DriftCheckBaselines,
@@ -81,6 +80,7 @@ import {
81
80
  SpaceSettings,
82
81
  SpaceStorageSettings,
83
82
  StudioLifecycleConfigAppType,
83
+ ThroughputMode,
84
84
  TtlDuration,
85
85
  UiTemplate,
86
86
  UserSettings,
@@ -89,6 +89,7 @@ import {
89
89
  import {
90
90
  CrossAccountFilterOption,
91
91
  DataProcessing,
92
+ DebugRuleConfiguration,
92
93
  DebugRuleEvaluationStatus,
93
94
  DeploymentRecommendation,
94
95
  EndpointStatus,
@@ -114,7 +115,6 @@ import {
114
115
  ServiceCatalogProvisionedProductDetails,
115
116
  SourceIpConfig,
116
117
  SpaceStatus,
117
- SubscribedWorkteam,
118
118
  TensorBoardOutputConfig,
119
119
  TrainingJobStatus,
120
120
  TrialComponentArtifact,
@@ -146,15 +146,13 @@ import {
146
146
  MonitoringAlertSummary,
147
147
  ProcessingJobStepMetadata,
148
148
  QualityCheckStepMetadata,
149
- RegisterModelStepMetadata,
150
149
  ResourceType,
151
150
  SecondaryStatus,
152
151
  SecondaryStatusTransition,
153
152
  SortBy,
154
153
  SortOrder,
155
- TrainingJobStepMetadata,
154
+ SubscribedWorkteam,
156
155
  TransformJobStatus,
157
- TransformJobStepMetadata,
158
156
  TrialComponentMetricSummary,
159
157
  TrialComponentSource,
160
158
  TrialSource,
@@ -164,6 +162,15 @@ import {
164
162
  Workforce,
165
163
  Workteam,
166
164
  } from "./models_3";
165
+ export interface RegisterModelStepMetadata {
166
+ Arn?: string;
167
+ }
168
+ export interface TrainingJobStepMetadata {
169
+ Arn?: string;
170
+ }
171
+ export interface TransformJobStepMetadata {
172
+ Arn?: string;
173
+ }
167
174
  export interface TuningJobStepMetaData {
168
175
  Arn?: string;
169
176
  }
@@ -1255,10 +1262,16 @@ export interface UpdateExperimentRequest {
1255
1262
  export interface UpdateExperimentResponse {
1256
1263
  ExperimentArn?: string;
1257
1264
  }
1265
+ export interface ThroughputConfigUpdate {
1266
+ ThroughputMode?: ThroughputMode;
1267
+ ProvisionedReadCapacityUnits?: number;
1268
+ ProvisionedWriteCapacityUnits?: number;
1269
+ }
1258
1270
  export interface UpdateFeatureGroupRequest {
1259
1271
  FeatureGroupName: string | undefined;
1260
1272
  FeatureAdditions?: FeatureDefinition[];
1261
1273
  OnlineStoreConfig?: OnlineStoreConfigUpdate;
1274
+ ThroughputConfig?: ThroughputConfigUpdate;
1262
1275
  }
1263
1276
  export interface UpdateFeatureGroupResponse {
1264
1277
  FeatureGroupArn: string | undefined;
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.485.0",
4
+ "version": "3.489.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.485.0",
23
+ "@aws-sdk/client-sts": "3.489.0",
24
24
  "@aws-sdk/core": "3.485.0",
25
- "@aws-sdk/credential-provider-node": "3.485.0",
26
- "@aws-sdk/middleware-host-header": "3.485.0",
27
- "@aws-sdk/middleware-logger": "3.485.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.485.0",
29
- "@aws-sdk/middleware-signing": "3.485.0",
30
- "@aws-sdk/middleware-user-agent": "3.485.0",
31
- "@aws-sdk/region-config-resolver": "3.485.0",
32
- "@aws-sdk/types": "3.485.0",
33
- "@aws-sdk/util-endpoints": "3.485.0",
34
- "@aws-sdk/util-user-agent-browser": "3.485.0",
35
- "@aws-sdk/util-user-agent-node": "3.485.0",
25
+ "@aws-sdk/credential-provider-node": "3.489.0",
26
+ "@aws-sdk/middleware-host-header": "3.489.0",
27
+ "@aws-sdk/middleware-logger": "3.489.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.489.0",
29
+ "@aws-sdk/middleware-signing": "3.489.0",
30
+ "@aws-sdk/middleware-user-agent": "3.489.0",
31
+ "@aws-sdk/region-config-resolver": "3.489.0",
32
+ "@aws-sdk/types": "3.489.0",
33
+ "@aws-sdk/util-endpoints": "3.489.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.489.0",
35
+ "@aws-sdk/util-user-agent-node": "3.489.0",
36
36
  "@smithy/config-resolver": "^2.0.23",
37
37
  "@smithy/core": "^1.2.2",
38
38
  "@smithy/fetch-http-handler": "^2.3.2",