@aws-sdk/client-sagemaker 3.171.0 → 3.176.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist-cjs/commands/DescribeFeatureGroupCommand.js +2 -1
  3. package/dist-cjs/commands/DescribeFeatureMetadataCommand.js +3 -3
  4. package/dist-cjs/commands/ListNotebookInstanceLifecycleConfigsCommand.js +3 -3
  5. package/dist-cjs/models/models_0.js +17 -17
  6. package/dist-cjs/models/models_1.js +29 -27
  7. package/dist-cjs/models/models_2.js +25 -28
  8. package/dist-cjs/models/models_3.js +27 -4
  9. package/dist-cjs/protocols/Aws_json1_1.js +64 -0
  10. package/dist-es/commands/DescribeFeatureGroupCommand.js +2 -1
  11. package/dist-es/commands/DescribeFeatureMetadataCommand.js +1 -1
  12. package/dist-es/commands/ListNotebookInstanceLifecycleConfigsCommand.js +1 -1
  13. package/dist-es/models/models_0.js +7 -7
  14. package/dist-es/models/models_1.js +10 -5
  15. package/dist-es/models/models_2.js +5 -14
  16. package/dist-es/models/models_3.js +14 -0
  17. package/dist-es/protocols/Aws_json1_1.js +55 -3
  18. package/dist-types/SageMaker.d.ts +9 -9
  19. package/dist-types/commands/CreateAppCommand.d.ts +1 -2
  20. package/dist-types/commands/CreateTrainingJobCommand.d.ts +6 -5
  21. package/dist-types/commands/CreateUserProfileCommand.d.ts +1 -1
  22. package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +2 -1
  24. package/dist-types/commands/DescribeFeatureMetadataCommand.d.ts +1 -1
  25. package/dist-types/commands/ListNotebookInstanceLifecycleConfigsCommand.d.ts +1 -1
  26. package/dist-types/models/models_0.d.ts +76 -80
  27. package/dist-types/models/models_1.d.ts +167 -197
  28. package/dist-types/models/models_2.d.ts +194 -108
  29. package/dist-types/models/models_3.d.ts +101 -2
  30. package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +2 -4
  31. package/dist-types/ts3.4/commands/DescribeFeatureMetadataCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/ListNotebookInstanceLifecycleConfigsCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +18 -19
  34. package/dist-types/ts3.4/models/models_1.d.ts +37 -63
  35. package/dist-types/ts3.4/models/models_2.d.ts +58 -43
  36. package/dist-types/ts3.4/models/models_3.d.ts +41 -2
  37. package/package.json +1 -1
@@ -30,6 +30,7 @@ import {
30
30
  Bias,
31
31
  CaptureStatus,
32
32
  CategoricalParameter,
33
+ CategoricalParameterRange,
33
34
  Channel,
34
35
  CheckpointConfig,
35
36
  CognitoConfig,
@@ -39,6 +40,7 @@ import {
39
40
  ContainerDefinition,
40
41
  ContentClassifier,
41
42
  ContextSource,
43
+ ContinuousParameterRange,
42
44
  DataCaptureConfig,
43
45
  DataQualityAppSpecification,
44
46
  DataQualityBaselineConfig,
@@ -51,13 +53,11 @@ import {
51
53
  EdgeOutputConfig,
52
54
  EdgePresetDeploymentType,
53
55
  EndpointInput,
54
- FeatureDefinition,
55
- FeatureType,
56
56
  GitConfig,
57
57
  HyperParameterTuningJobObjective,
58
- HyperParameterTuningJobStrategyType,
59
58
  InferenceSpecification,
60
59
  InputConfig,
60
+ IntegerParameterRange,
61
61
  KernelGatewayImageConfig,
62
62
  MetadataProperties,
63
63
  MetricDefinition,
@@ -71,11 +71,8 @@ import {
71
71
  MonitoringStatisticsResource,
72
72
  MonitoringStoppingCondition,
73
73
  NeoVpcConfig,
74
- OfflineStoreConfig,
75
- OnlineStoreConfig,
76
74
  OutputConfig,
77
75
  OutputDataConfig,
78
- ParameterRanges,
79
76
  ProblemType,
80
77
  ProcessingInstanceType,
81
78
  ProcessingS3DataDistributionType,
@@ -87,7 +84,6 @@ import {
87
84
  ProductionVariantServerlessConfig,
88
85
  PublicWorkforceTaskPrice,
89
86
  ResourceConfig,
90
- ResourceLimits,
91
87
  ResourceSpec,
92
88
  StoppingCondition,
93
89
  Tag,
@@ -102,6 +98,27 @@ import {
102
98
  UserSettings,
103
99
  VpcConfig,
104
100
  } from "./models_0";
101
+ export interface ParameterRanges {
102
+ IntegerParameterRanges?: IntegerParameterRange[];
103
+ ContinuousParameterRanges?: ContinuousParameterRange[];
104
+ CategoricalParameterRanges?: CategoricalParameterRange[];
105
+ }
106
+ export interface ResourceLimits {
107
+ MaxNumberOfTrainingJobs: number | undefined;
108
+ MaxParallelTrainingJobs: number | undefined;
109
+ }
110
+ export declare enum HyperParameterTuningJobStrategyType {
111
+ BAYESIAN = "Bayesian",
112
+ HYPERBAND = "Hyperband",
113
+ RANDOM = "Random",
114
+ }
115
+ export interface HyperbandStrategyConfig {
116
+ MinResource?: number;
117
+ MaxResource?: number;
118
+ }
119
+ export interface HyperParameterTuningJobStrategyConfig {
120
+ HyperbandStrategyConfig?: HyperbandStrategyConfig;
121
+ }
105
122
  export declare enum TrainingJobEarlyStoppingType {
106
123
  AUTO = "Auto",
107
124
  OFF = "Off",
@@ -111,6 +128,7 @@ export interface TuningJobCompletionCriteria {
111
128
  }
112
129
  export interface HyperParameterTuningJobConfig {
113
130
  Strategy: HyperParameterTuningJobStrategyType | string | undefined;
131
+ StrategyConfig?: HyperParameterTuningJobStrategyConfig;
114
132
  HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
115
133
  ResourceLimits: ResourceLimits | undefined;
116
134
  ParameterRanges?: ParameterRanges;
@@ -1799,47 +1817,18 @@ export declare enum OfflineStoreStatusValue {
1799
1817
  BLOCKED = "Blocked",
1800
1818
  DISABLED = "Disabled",
1801
1819
  }
1802
- export interface OfflineStoreStatus {
1803
- Status: OfflineStoreStatusValue | string | undefined;
1804
- BlockedReason?: string;
1805
- }
1806
- export interface DescribeFeatureGroupResponse {
1807
- FeatureGroupArn: string | undefined;
1808
- FeatureGroupName: string | undefined;
1809
- RecordIdentifierFeatureName: string | undefined;
1810
- EventTimeFeatureName: string | undefined;
1811
- FeatureDefinitions: FeatureDefinition[] | undefined;
1812
- CreationTime: Date | undefined;
1813
- LastModifiedTime?: Date;
1814
- OnlineStoreConfig?: OnlineStoreConfig;
1815
- OfflineStoreConfig?: OfflineStoreConfig;
1816
- RoleArn?: string;
1817
- FeatureGroupStatus?: FeatureGroupStatus | string;
1818
- OfflineStoreStatus?: OfflineStoreStatus;
1819
- LastUpdateStatus?: LastUpdateStatus;
1820
- FailureReason?: string;
1821
- Description?: string;
1822
- NextToken: string | undefined;
1823
- OnlineStoreTotalSizeBytes?: number;
1824
- }
1825
- export interface DescribeFeatureMetadataRequest {
1826
- FeatureGroupName: string | undefined;
1827
- FeatureName: string | undefined;
1828
- }
1829
- export interface FeatureParameter {
1830
- Key?: string;
1831
- Value?: string;
1832
- }
1833
- export interface DescribeFeatureMetadataResponse {
1834
- FeatureGroupArn: string | undefined;
1835
- FeatureGroupName: string | undefined;
1836
- FeatureName: string | undefined;
1837
- FeatureType: FeatureType | string | undefined;
1838
- CreationTime: Date | undefined;
1839
- LastModifiedTime: Date | undefined;
1840
- Description?: string;
1841
- Parameters?: FeatureParameter[];
1842
- }
1820
+ export declare const ParameterRangesFilterSensitiveLog: (
1821
+ obj: ParameterRanges
1822
+ ) => any;
1823
+ export declare const ResourceLimitsFilterSensitiveLog: (
1824
+ obj: ResourceLimits
1825
+ ) => any;
1826
+ export declare const HyperbandStrategyConfigFilterSensitiveLog: (
1827
+ obj: HyperbandStrategyConfig
1828
+ ) => any;
1829
+ export declare const HyperParameterTuningJobStrategyConfigFilterSensitiveLog: (
1830
+ obj: HyperParameterTuningJobStrategyConfig
1831
+ ) => any;
1843
1832
  export declare const TuningJobCompletionCriteriaFilterSensitiveLog: (
1844
1833
  obj: TuningJobCompletionCriteria
1845
1834
  ) => any;
@@ -2613,18 +2602,3 @@ export declare const DescribeFeatureGroupRequestFilterSensitiveLog: (
2613
2602
  export declare const LastUpdateStatusFilterSensitiveLog: (
2614
2603
  obj: LastUpdateStatus
2615
2604
  ) => any;
2616
- export declare const OfflineStoreStatusFilterSensitiveLog: (
2617
- obj: OfflineStoreStatus
2618
- ) => any;
2619
- export declare const DescribeFeatureGroupResponseFilterSensitiveLog: (
2620
- obj: DescribeFeatureGroupResponse
2621
- ) => any;
2622
- export declare const DescribeFeatureMetadataRequestFilterSensitiveLog: (
2623
- obj: DescribeFeatureMetadataRequest
2624
- ) => any;
2625
- export declare const FeatureParameterFilterSensitiveLog: (
2626
- obj: FeatureParameter
2627
- ) => any;
2628
- export declare const DescribeFeatureMetadataResponseFilterSensitiveLog: (
2629
- obj: DescribeFeatureMetadataResponse
2630
- ) => any;
@@ -40,7 +40,6 @@ import {
40
40
  HumanLoopConfig,
41
41
  HumanLoopRequestSource,
42
42
  HyperParameterTuningJobObjectiveType,
43
- HyperParameterTuningJobStrategyType,
44
43
  InferenceSpecification,
45
44
  MetadataProperties,
46
45
  ModelApprovalStatus,
@@ -56,7 +55,6 @@ import {
56
55
  OutputParameter,
57
56
  ProductionVariantInstanceType,
58
57
  ResourceConfig,
59
- ResourceLimits,
60
58
  ResourceSpec,
61
59
  StoppingCondition,
62
60
  Tag,
@@ -82,10 +80,10 @@ import {
82
80
  ExperimentConfig,
83
81
  ExperimentSource,
84
82
  FeatureGroupStatus,
85
- FeatureParameter,
86
83
  HumanTaskConfig,
87
84
  HyperParameterTrainingJobDefinition,
88
85
  HyperParameterTuningJobConfig,
86
+ HyperParameterTuningJobStrategyType,
89
87
  HyperParameterTuningJobWarmStartConfig,
90
88
  InferenceExecutionConfig,
91
89
  InstanceMetadataServiceConfiguration,
@@ -114,7 +112,6 @@ import {
114
112
  NotebookInstanceAcceleratorType,
115
113
  NotebookInstanceLifecycleHook,
116
114
  NotificationConfiguration,
117
- OfflineStoreStatus,
118
115
  OfflineStoreStatusValue,
119
116
  ParallelismConfiguration,
120
117
  ProcessingInput,
@@ -127,6 +124,7 @@ import {
127
124
  RecommendationJobInputConfig,
128
125
  RecommendationJobStoppingConditions,
129
126
  RecommendationJobType,
127
+ ResourceLimits,
130
128
  RetryStrategy,
131
129
  RootAccess,
132
130
  RuleEvaluationStatus,
@@ -139,6 +137,47 @@ import {
139
137
  TrialComponentParameterValue,
140
138
  TrialComponentStatus,
141
139
  } from "./models_1";
140
+ export interface OfflineStoreStatus {
141
+ Status: OfflineStoreStatusValue | string | undefined;
142
+ BlockedReason?: string;
143
+ }
144
+ export interface DescribeFeatureGroupResponse {
145
+ FeatureGroupArn: string | undefined;
146
+ FeatureGroupName: string | undefined;
147
+ RecordIdentifierFeatureName: string | undefined;
148
+ EventTimeFeatureName: string | undefined;
149
+ FeatureDefinitions: FeatureDefinition[] | undefined;
150
+ CreationTime: Date | undefined;
151
+ LastModifiedTime?: Date;
152
+ OnlineStoreConfig?: OnlineStoreConfig;
153
+ OfflineStoreConfig?: OfflineStoreConfig;
154
+ RoleArn?: string;
155
+ FeatureGroupStatus?: FeatureGroupStatus | string;
156
+ OfflineStoreStatus?: OfflineStoreStatus;
157
+ LastUpdateStatus?: LastUpdateStatus;
158
+ FailureReason?: string;
159
+ Description?: string;
160
+ NextToken: string | undefined;
161
+ OnlineStoreTotalSizeBytes?: number;
162
+ }
163
+ export interface DescribeFeatureMetadataRequest {
164
+ FeatureGroupName: string | undefined;
165
+ FeatureName: string | undefined;
166
+ }
167
+ export interface FeatureParameter {
168
+ Key?: string;
169
+ Value?: string;
170
+ }
171
+ export interface DescribeFeatureMetadataResponse {
172
+ FeatureGroupArn: string | undefined;
173
+ FeatureGroupName: string | undefined;
174
+ FeatureName: string | undefined;
175
+ FeatureType: FeatureType | string | undefined;
176
+ CreationTime: Date | undefined;
177
+ LastModifiedTime: Date | undefined;
178
+ Description?: string;
179
+ Parameters?: FeatureParameter[];
180
+ }
142
181
  export interface DescribeFlowDefinitionRequest {
143
182
  FlowDefinitionName: string | undefined;
144
183
  }
@@ -2213,36 +2252,21 @@ export declare enum NotebookInstanceLifecycleConfigSortKey {
2213
2252
  LAST_MODIFIED_TIME = "LastModifiedTime",
2214
2253
  NAME = "Name",
2215
2254
  }
2216
- export declare enum NotebookInstanceLifecycleConfigSortOrder {
2217
- ASCENDING = "Ascending",
2218
- DESCENDING = "Descending",
2219
- }
2220
- export interface ListNotebookInstanceLifecycleConfigsInput {
2221
- NextToken?: string;
2222
- MaxResults?: number;
2223
- SortBy?: NotebookInstanceLifecycleConfigSortKey | string;
2224
- SortOrder?: NotebookInstanceLifecycleConfigSortOrder | string;
2225
- NameContains?: string;
2226
- CreationTimeBefore?: Date;
2227
- CreationTimeAfter?: Date;
2228
- LastModifiedTimeBefore?: Date;
2229
- LastModifiedTimeAfter?: Date;
2230
- }
2231
- export interface NotebookInstanceLifecycleConfigSummary {
2232
- NotebookInstanceLifecycleConfigName: string | undefined;
2233
- NotebookInstanceLifecycleConfigArn: string | undefined;
2234
- CreationTime?: Date;
2235
- LastModifiedTime?: Date;
2236
- }
2237
- export interface ListNotebookInstanceLifecycleConfigsOutput {
2238
- NextToken?: string;
2239
- NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
2240
- }
2241
- export declare enum NotebookInstanceSortKey {
2242
- CREATION_TIME = "CreationTime",
2243
- NAME = "Name",
2244
- STATUS = "Status",
2245
- }
2255
+ export declare const OfflineStoreStatusFilterSensitiveLog: (
2256
+ obj: OfflineStoreStatus
2257
+ ) => any;
2258
+ export declare const DescribeFeatureGroupResponseFilterSensitiveLog: (
2259
+ obj: DescribeFeatureGroupResponse
2260
+ ) => any;
2261
+ export declare const DescribeFeatureMetadataRequestFilterSensitiveLog: (
2262
+ obj: DescribeFeatureMetadataRequest
2263
+ ) => any;
2264
+ export declare const FeatureParameterFilterSensitiveLog: (
2265
+ obj: FeatureParameter
2266
+ ) => any;
2267
+ export declare const DescribeFeatureMetadataResponseFilterSensitiveLog: (
2268
+ obj: DescribeFeatureMetadataResponse
2269
+ ) => any;
2246
2270
  export declare const DescribeFlowDefinitionRequestFilterSensitiveLog: (
2247
2271
  obj: DescribeFlowDefinitionRequest
2248
2272
  ) => any;
@@ -2917,12 +2941,3 @@ export declare const MonitoringScheduleSummaryFilterSensitiveLog: (
2917
2941
  export declare const ListMonitoringSchedulesResponseFilterSensitiveLog: (
2918
2942
  obj: ListMonitoringSchedulesResponse
2919
2943
  ) => any;
2920
- export declare const ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog: (
2921
- obj: ListNotebookInstanceLifecycleConfigsInput
2922
- ) => any;
2923
- export declare const NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog: (
2924
- obj: NotebookInstanceLifecycleConfigSummary
2925
- ) => any;
2926
- export declare const ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog: (
2927
- obj: ListNotebookInstanceLifecycleConfigsOutput
2928
- ) => any;
@@ -40,7 +40,6 @@ import {
40
40
  DebugRuleEvaluationStatus,
41
41
  DriftCheckBaselines,
42
42
  ExperimentConfig,
43
- FeatureParameter,
44
43
  InstanceMetadataServiceConfiguration,
45
44
  MemberDefinition,
46
45
  ModelArtifacts,
@@ -86,6 +85,7 @@ import {
86
85
  FailStepMetadata,
87
86
  FeatureGroup,
88
87
  FeatureMetadata,
88
+ FeatureParameter,
89
89
  Filter,
90
90
  GitConfigForUpdate,
91
91
  HyperParameterTrainingJobSummary,
@@ -95,7 +95,7 @@ import {
95
95
  MetricData,
96
96
  ModelPackageGroupStatus,
97
97
  ModelPackageStatusDetails,
98
- NotebookInstanceSortKey,
98
+ NotebookInstanceLifecycleConfigSortKey,
99
99
  NotebookInstanceStatus,
100
100
  PipelineExecutionStatus,
101
101
  PipelineExperimentConfig,
@@ -118,6 +118,36 @@ import {
118
118
  Workforce,
119
119
  Workteam,
120
120
  } from "./models_2";
121
+ export declare enum NotebookInstanceLifecycleConfigSortOrder {
122
+ ASCENDING = "Ascending",
123
+ DESCENDING = "Descending",
124
+ }
125
+ export interface ListNotebookInstanceLifecycleConfigsInput {
126
+ NextToken?: string;
127
+ MaxResults?: number;
128
+ SortBy?: NotebookInstanceLifecycleConfigSortKey | string;
129
+ SortOrder?: NotebookInstanceLifecycleConfigSortOrder | string;
130
+ NameContains?: string;
131
+ CreationTimeBefore?: Date;
132
+ CreationTimeAfter?: Date;
133
+ LastModifiedTimeBefore?: Date;
134
+ LastModifiedTimeAfter?: Date;
135
+ }
136
+ export interface NotebookInstanceLifecycleConfigSummary {
137
+ NotebookInstanceLifecycleConfigName: string | undefined;
138
+ NotebookInstanceLifecycleConfigArn: string | undefined;
139
+ CreationTime?: Date;
140
+ LastModifiedTime?: Date;
141
+ }
142
+ export interface ListNotebookInstanceLifecycleConfigsOutput {
143
+ NextToken?: string;
144
+ NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
145
+ }
146
+ export declare enum NotebookInstanceSortKey {
147
+ CREATION_TIME = "CreationTime",
148
+ NAME = "Name",
149
+ STATUS = "Status",
150
+ }
121
151
  export declare enum NotebookInstanceSortOrder {
122
152
  ASCENDING = "Ascending",
123
153
  DESCENDING = "Descending",
@@ -1247,6 +1277,15 @@ export interface SearchRequest {
1247
1277
  NextToken?: string;
1248
1278
  MaxResults?: number;
1249
1279
  }
1280
+ export declare const ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog: (
1281
+ obj: ListNotebookInstanceLifecycleConfigsInput
1282
+ ) => any;
1283
+ export declare const NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog: (
1284
+ obj: NotebookInstanceLifecycleConfigSummary
1285
+ ) => any;
1286
+ export declare const ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog: (
1287
+ obj: ListNotebookInstanceLifecycleConfigsOutput
1288
+ ) => any;
1250
1289
  export declare const ListNotebookInstancesInputFilterSensitiveLog: (
1251
1290
  obj: ListNotebookInstancesInput
1252
1291
  ) => any;
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.171.0",
4
+ "version": "3.176.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",