@aws-sdk/client-sagemaker 3.172.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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/commands/DescribeFeatureGroupCommand.js +2 -1
- package/dist-cjs/commands/DescribeFeatureMetadataCommand.js +1 -2
- package/dist-cjs/commands/ListNotebookInstanceLifecycleConfigsCommand.js +1 -2
- package/dist-cjs/models/models_0.js +17 -18
- package/dist-cjs/models/models_1.js +21 -19
- package/dist-cjs/models/models_2.js +17 -18
- package/dist-cjs/models/models_3.js +17 -4
- package/dist-cjs/protocols/Aws_json1_1.js +32 -0
- package/dist-es/commands/DescribeFeatureGroupCommand.js +2 -1
- package/dist-es/commands/DescribeFeatureMetadataCommand.js +1 -2
- package/dist-es/commands/ListNotebookInstanceLifecycleConfigsCommand.js +1 -2
- package/dist-es/models/models_0.js +7 -8
- package/dist-es/models/models_1.js +8 -3
- package/dist-es/models/models_2.js +3 -7
- package/dist-es/models/models_3.js +7 -0
- package/dist-es/protocols/Aws_json1_1.js +27 -1
- package/dist-types/SageMaker.d.ts +8 -7
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +6 -5
- package/dist-types/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFeatureMetadataCommand.d.ts +1 -2
- package/dist-types/commands/ListNotebookInstanceLifecycleConfigsCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +75 -78
- package/dist-types/models/models_1.d.ts +73 -138
- package/dist-types/models/models_2.d.ts +137 -83
- package/dist-types/models/models_3.d.ts +79 -1
- package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeFeatureMetadataCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListNotebookInstanceLifecycleConfigsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +18 -20
- package/dist-types/ts3.4/models/models_1.d.ts +23 -42
- package/dist-types/ts3.4/models/models_2.d.ts +38 -30
- package/dist-types/ts3.4/models/models_3.d.ts +28 -1
- package/package.json +1 -1
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
MetadataBearer as __MetadataBearer,
|
|
6
6
|
MiddlewareStack,
|
|
7
7
|
} from "@aws-sdk/types";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListNotebookInstanceLifecycleConfigsInput,
|
|
10
|
+
ListNotebookInstanceLifecycleConfigsOutput,
|
|
11
|
+
} from "../models/models_3";
|
|
10
12
|
import {
|
|
11
13
|
SageMakerClientResolvedConfig,
|
|
12
14
|
ServiceInputTypes,
|
|
@@ -981,6 +981,17 @@ export declare enum CandidateSortBy {
|
|
|
981
981
|
FinalObjectiveMetricValue = "FinalObjectiveMetricValue",
|
|
982
982
|
Status = "Status",
|
|
983
983
|
}
|
|
984
|
+
export declare enum FeatureStatus {
|
|
985
|
+
Disabled = "DISABLED",
|
|
986
|
+
Enabled = "ENABLED",
|
|
987
|
+
}
|
|
988
|
+
export interface TimeSeriesForecastingSettings {
|
|
989
|
+
Status?: FeatureStatus | string;
|
|
990
|
+
AmazonForecastRoleArn?: string;
|
|
991
|
+
}
|
|
992
|
+
export interface CanvasAppSettings {
|
|
993
|
+
TimeSeriesForecastingSettings?: TimeSeriesForecastingSettings;
|
|
994
|
+
}
|
|
984
995
|
export interface CaptureContentTypeHeader {
|
|
985
996
|
CsvContentTypes?: string[];
|
|
986
997
|
JsonContentTypes?: string[];
|
|
@@ -1622,6 +1633,7 @@ export interface UserSettings {
|
|
|
1622
1633
|
TensorBoardAppSettings?: TensorBoardAppSettings;
|
|
1623
1634
|
RStudioServerProAppSettings?: RStudioServerProAppSettings;
|
|
1624
1635
|
RSessionAppSettings?: RSessionAppSettings;
|
|
1636
|
+
CanvasAppSettings?: CanvasAppSettings;
|
|
1625
1637
|
}
|
|
1626
1638
|
export declare enum ExecutionRoleIdentityConfig {
|
|
1627
1639
|
DISABLED = "DISABLED",
|
|
@@ -1887,20 +1899,6 @@ export interface IntegerParameterRange {
|
|
|
1887
1899
|
MaxValue: string | undefined;
|
|
1888
1900
|
ScalingType?: HyperParameterScalingType | string;
|
|
1889
1901
|
}
|
|
1890
|
-
export interface ParameterRanges {
|
|
1891
|
-
IntegerParameterRanges?: IntegerParameterRange[];
|
|
1892
|
-
ContinuousParameterRanges?: ContinuousParameterRange[];
|
|
1893
|
-
CategoricalParameterRanges?: CategoricalParameterRange[];
|
|
1894
|
-
}
|
|
1895
|
-
export interface ResourceLimits {
|
|
1896
|
-
MaxNumberOfTrainingJobs: number | undefined;
|
|
1897
|
-
MaxParallelTrainingJobs: number | undefined;
|
|
1898
|
-
}
|
|
1899
|
-
export declare enum HyperParameterTuningJobStrategyType {
|
|
1900
|
-
BAYESIAN = "Bayesian",
|
|
1901
|
-
HYPERBAND = "Hyperband",
|
|
1902
|
-
RANDOM = "Random",
|
|
1903
|
-
}
|
|
1904
1902
|
export declare const ActionSourceFilterSensitiveLog: (obj: ActionSource) => any;
|
|
1905
1903
|
export declare const ActionSummaryFilterSensitiveLog: (
|
|
1906
1904
|
obj: ActionSummary
|
|
@@ -2136,6 +2134,12 @@ export declare const OutputParameterFilterSensitiveLog: (
|
|
|
2136
2134
|
export declare const CallbackStepMetadataFilterSensitiveLog: (
|
|
2137
2135
|
obj: CallbackStepMetadata
|
|
2138
2136
|
) => any;
|
|
2137
|
+
export declare const TimeSeriesForecastingSettingsFilterSensitiveLog: (
|
|
2138
|
+
obj: TimeSeriesForecastingSettings
|
|
2139
|
+
) => any;
|
|
2140
|
+
export declare const CanvasAppSettingsFilterSensitiveLog: (
|
|
2141
|
+
obj: CanvasAppSettings
|
|
2142
|
+
) => any;
|
|
2139
2143
|
export declare const CaptureContentTypeHeaderFilterSensitiveLog: (
|
|
2140
2144
|
obj: CaptureContentTypeHeader
|
|
2141
2145
|
) => any;
|
|
@@ -2482,9 +2486,3 @@ export declare const CreateHumanTaskUiResponseFilterSensitiveLog: (
|
|
|
2482
2486
|
export declare const IntegerParameterRangeFilterSensitiveLog: (
|
|
2483
2487
|
obj: IntegerParameterRange
|
|
2484
2488
|
) => any;
|
|
2485
|
-
export declare const ParameterRangesFilterSensitiveLog: (
|
|
2486
|
-
obj: ParameterRanges
|
|
2487
|
-
) => any;
|
|
2488
|
-
export declare const ResourceLimitsFilterSensitiveLog: (
|
|
2489
|
-
obj: ResourceLimits
|
|
2490
|
-
) => any;
|
|
@@ -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,12 +53,11 @@ import {
|
|
|
51
53
|
EdgeOutputConfig,
|
|
52
54
|
EdgePresetDeploymentType,
|
|
53
55
|
EndpointInput,
|
|
54
|
-
FeatureDefinition,
|
|
55
56
|
GitConfig,
|
|
56
57
|
HyperParameterTuningJobObjective,
|
|
57
|
-
HyperParameterTuningJobStrategyType,
|
|
58
58
|
InferenceSpecification,
|
|
59
59
|
InputConfig,
|
|
60
|
+
IntegerParameterRange,
|
|
60
61
|
KernelGatewayImageConfig,
|
|
61
62
|
MetadataProperties,
|
|
62
63
|
MetricDefinition,
|
|
@@ -70,11 +71,8 @@ import {
|
|
|
70
71
|
MonitoringStatisticsResource,
|
|
71
72
|
MonitoringStoppingCondition,
|
|
72
73
|
NeoVpcConfig,
|
|
73
|
-
OfflineStoreConfig,
|
|
74
|
-
OnlineStoreConfig,
|
|
75
74
|
OutputConfig,
|
|
76
75
|
OutputDataConfig,
|
|
77
|
-
ParameterRanges,
|
|
78
76
|
ProblemType,
|
|
79
77
|
ProcessingInstanceType,
|
|
80
78
|
ProcessingS3DataDistributionType,
|
|
@@ -86,7 +84,6 @@ import {
|
|
|
86
84
|
ProductionVariantServerlessConfig,
|
|
87
85
|
PublicWorkforceTaskPrice,
|
|
88
86
|
ResourceConfig,
|
|
89
|
-
ResourceLimits,
|
|
90
87
|
ResourceSpec,
|
|
91
88
|
StoppingCondition,
|
|
92
89
|
Tag,
|
|
@@ -101,6 +98,20 @@ import {
|
|
|
101
98
|
UserSettings,
|
|
102
99
|
VpcConfig,
|
|
103
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
|
+
}
|
|
104
115
|
export interface HyperbandStrategyConfig {
|
|
105
116
|
MinResource?: number;
|
|
106
117
|
MaxResource?: number;
|
|
@@ -1806,33 +1817,12 @@ export declare enum OfflineStoreStatusValue {
|
|
|
1806
1817
|
BLOCKED = "Blocked",
|
|
1807
1818
|
DISABLED = "Disabled",
|
|
1808
1819
|
}
|
|
1809
|
-
export
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
FeatureGroupName: string | undefined;
|
|
1816
|
-
RecordIdentifierFeatureName: string | undefined;
|
|
1817
|
-
EventTimeFeatureName: string | undefined;
|
|
1818
|
-
FeatureDefinitions: FeatureDefinition[] | undefined;
|
|
1819
|
-
CreationTime: Date | undefined;
|
|
1820
|
-
LastModifiedTime?: Date;
|
|
1821
|
-
OnlineStoreConfig?: OnlineStoreConfig;
|
|
1822
|
-
OfflineStoreConfig?: OfflineStoreConfig;
|
|
1823
|
-
RoleArn?: string;
|
|
1824
|
-
FeatureGroupStatus?: FeatureGroupStatus | string;
|
|
1825
|
-
OfflineStoreStatus?: OfflineStoreStatus;
|
|
1826
|
-
LastUpdateStatus?: LastUpdateStatus;
|
|
1827
|
-
FailureReason?: string;
|
|
1828
|
-
Description?: string;
|
|
1829
|
-
NextToken: string | undefined;
|
|
1830
|
-
OnlineStoreTotalSizeBytes?: number;
|
|
1831
|
-
}
|
|
1832
|
-
export interface DescribeFeatureMetadataRequest {
|
|
1833
|
-
FeatureGroupName: string | undefined;
|
|
1834
|
-
FeatureName: string | undefined;
|
|
1835
|
-
}
|
|
1820
|
+
export declare const ParameterRangesFilterSensitiveLog: (
|
|
1821
|
+
obj: ParameterRanges
|
|
1822
|
+
) => any;
|
|
1823
|
+
export declare const ResourceLimitsFilterSensitiveLog: (
|
|
1824
|
+
obj: ResourceLimits
|
|
1825
|
+
) => any;
|
|
1836
1826
|
export declare const HyperbandStrategyConfigFilterSensitiveLog: (
|
|
1837
1827
|
obj: HyperbandStrategyConfig
|
|
1838
1828
|
) => any;
|
|
@@ -2612,12 +2602,3 @@ export declare const DescribeFeatureGroupRequestFilterSensitiveLog: (
|
|
|
2612
2602
|
export declare const LastUpdateStatusFilterSensitiveLog: (
|
|
2613
2603
|
obj: LastUpdateStatus
|
|
2614
2604
|
) => any;
|
|
2615
|
-
export declare const OfflineStoreStatusFilterSensitiveLog: (
|
|
2616
|
-
obj: OfflineStoreStatus
|
|
2617
|
-
) => any;
|
|
2618
|
-
export declare const DescribeFeatureGroupResponseFilterSensitiveLog: (
|
|
2619
|
-
obj: DescribeFeatureGroupResponse
|
|
2620
|
-
) => any;
|
|
2621
|
-
export declare const DescribeFeatureMetadataRequestFilterSensitiveLog: (
|
|
2622
|
-
obj: DescribeFeatureMetadataRequest
|
|
2623
|
-
) => 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,
|
|
@@ -85,6 +83,7 @@ import {
|
|
|
85
83
|
HumanTaskConfig,
|
|
86
84
|
HyperParameterTrainingJobDefinition,
|
|
87
85
|
HyperParameterTuningJobConfig,
|
|
86
|
+
HyperParameterTuningJobStrategyType,
|
|
88
87
|
HyperParameterTuningJobWarmStartConfig,
|
|
89
88
|
InferenceExecutionConfig,
|
|
90
89
|
InstanceMetadataServiceConfiguration,
|
|
@@ -113,7 +112,6 @@ import {
|
|
|
113
112
|
NotebookInstanceAcceleratorType,
|
|
114
113
|
NotebookInstanceLifecycleHook,
|
|
115
114
|
NotificationConfiguration,
|
|
116
|
-
OfflineStoreStatus,
|
|
117
115
|
OfflineStoreStatusValue,
|
|
118
116
|
ParallelismConfiguration,
|
|
119
117
|
ProcessingInput,
|
|
@@ -126,6 +124,7 @@ import {
|
|
|
126
124
|
RecommendationJobInputConfig,
|
|
127
125
|
RecommendationJobStoppingConditions,
|
|
128
126
|
RecommendationJobType,
|
|
127
|
+
ResourceLimits,
|
|
129
128
|
RetryStrategy,
|
|
130
129
|
RootAccess,
|
|
131
130
|
RuleEvaluationStatus,
|
|
@@ -138,6 +137,33 @@ import {
|
|
|
138
137
|
TrialComponentParameterValue,
|
|
139
138
|
TrialComponentStatus,
|
|
140
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
|
+
}
|
|
141
167
|
export interface FeatureParameter {
|
|
142
168
|
Key?: string;
|
|
143
169
|
Value?: string;
|
|
@@ -2226,27 +2252,15 @@ export declare enum NotebookInstanceLifecycleConfigSortKey {
|
|
|
2226
2252
|
LAST_MODIFIED_TIME = "LastModifiedTime",
|
|
2227
2253
|
NAME = "Name",
|
|
2228
2254
|
}
|
|
2229
|
-
export declare
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
NameContains?: string;
|
|
2239
|
-
CreationTimeBefore?: Date;
|
|
2240
|
-
CreationTimeAfter?: Date;
|
|
2241
|
-
LastModifiedTimeBefore?: Date;
|
|
2242
|
-
LastModifiedTimeAfter?: Date;
|
|
2243
|
-
}
|
|
2244
|
-
export interface NotebookInstanceLifecycleConfigSummary {
|
|
2245
|
-
NotebookInstanceLifecycleConfigName: string | undefined;
|
|
2246
|
-
NotebookInstanceLifecycleConfigArn: string | undefined;
|
|
2247
|
-
CreationTime?: Date;
|
|
2248
|
-
LastModifiedTime?: Date;
|
|
2249
|
-
}
|
|
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;
|
|
2250
2264
|
export declare const FeatureParameterFilterSensitiveLog: (
|
|
2251
2265
|
obj: FeatureParameter
|
|
2252
2266
|
) => any;
|
|
@@ -2927,9 +2941,3 @@ export declare const MonitoringScheduleSummaryFilterSensitiveLog: (
|
|
|
2927
2941
|
export declare const ListMonitoringSchedulesResponseFilterSensitiveLog: (
|
|
2928
2942
|
obj: ListMonitoringSchedulesResponse
|
|
2929
2943
|
) => any;
|
|
2930
|
-
export declare const ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog: (
|
|
2931
|
-
obj: ListNotebookInstanceLifecycleConfigsInput
|
|
2932
|
-
) => any;
|
|
2933
|
-
export declare const NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog: (
|
|
2934
|
-
obj: NotebookInstanceLifecycleConfigSummary
|
|
2935
|
-
) => any;
|
|
@@ -95,7 +95,7 @@ import {
|
|
|
95
95
|
MetricData,
|
|
96
96
|
ModelPackageGroupStatus,
|
|
97
97
|
ModelPackageStatusDetails,
|
|
98
|
-
|
|
98
|
+
NotebookInstanceLifecycleConfigSortKey,
|
|
99
99
|
NotebookInstanceStatus,
|
|
100
100
|
PipelineExecutionStatus,
|
|
101
101
|
PipelineExperimentConfig,
|
|
@@ -118,6 +118,27 @@ 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
|
+
}
|
|
121
142
|
export interface ListNotebookInstanceLifecycleConfigsOutput {
|
|
122
143
|
NextToken?: string;
|
|
123
144
|
NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
|
|
@@ -1256,6 +1277,12 @@ export interface SearchRequest {
|
|
|
1256
1277
|
NextToken?: string;
|
|
1257
1278
|
MaxResults?: number;
|
|
1258
1279
|
}
|
|
1280
|
+
export declare const ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog: (
|
|
1281
|
+
obj: ListNotebookInstanceLifecycleConfigsInput
|
|
1282
|
+
) => any;
|
|
1283
|
+
export declare const NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog: (
|
|
1284
|
+
obj: NotebookInstanceLifecycleConfigSummary
|
|
1285
|
+
) => any;
|
|
1259
1286
|
export declare const ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog: (
|
|
1260
1287
|
obj: ListNotebookInstanceLifecycleConfigsOutput
|
|
1261
1288
|
) => 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.
|
|
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",
|