@aws-sdk/client-sagemaker 3.131.0 → 3.132.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/SageMaker.js +135 -0
- package/dist-cjs/commands/CreateEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/CreateEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/CreateHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DeleteEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DeleteEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/DescribeEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DescribeHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageVersionCommand.js +3 -3
- package/dist-cjs/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-cjs/commands/ListEdgeDeploymentPlansCommand.js +36 -0
- package/dist-cjs/commands/ListPipelineExecutionStepsCommand.js +3 -3
- package/dist-cjs/commands/ListPipelineParametersForExecutionCommand.js +3 -3
- package/dist-cjs/commands/ListPipelinesCommand.js +3 -3
- package/dist-cjs/commands/ListProcessingJobsCommand.js +3 -3
- package/dist-cjs/commands/ListStageDevicesCommand.js +36 -0
- package/dist-cjs/commands/StartEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/StopEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/models/models_0.js +54 -54
- package/dist-cjs/models/models_1.js +106 -112
- package/dist-cjs/models/models_2.js +152 -140
- package/dist-cjs/models/models_3.js +162 -3
- package/dist-cjs/pagination/ListEdgeDeploymentPlansPaginator.js +36 -0
- package/dist-cjs/pagination/ListStageDevicesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +710 -11
- package/dist-es/SageMaker.js +135 -0
- package/dist-es/commands/CreateEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/CreateEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/CreateHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DeleteEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DeleteEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/DescribeEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DescribeHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DescribeImageCommand.js +1 -1
- package/dist-es/commands/DescribeImageVersionCommand.js +1 -1
- package/dist-es/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-es/commands/ListEdgeDeploymentPlansCommand.js +39 -0
- package/dist-es/commands/ListPipelineExecutionStepsCommand.js +1 -1
- package/dist-es/commands/ListPipelineParametersForExecutionCommand.js +1 -1
- package/dist-es/commands/ListPipelinesCommand.js +1 -1
- package/dist-es/commands/ListProcessingJobsCommand.js +1 -1
- package/dist-es/commands/ListStageDevicesCommand.js +39 -0
- package/dist-es/commands/StartEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/StopEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +39 -37
- package/dist-es/models/models_1.js +72 -82
- package/dist-es/models/models_2.js +114 -94
- package/dist-es/models/models_3.js +110 -0
- package/dist-es/pagination/ListEdgeDeploymentPlansPaginator.js +75 -0
- package/dist-es/pagination/ListStageDevicesPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +798 -12
- package/dist-types/SageMaker.d.ts +63 -0
- package/dist-types/SageMakerClient.d.ts +11 -2
- package/dist-types/commands/CreateEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/CreateEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/commands/ListEdgeDeploymentPlansCommand.d.ts +35 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +35 -0
- package/dist-types/commands/StartEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/StopEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +150 -451
- package/dist-types/models/models_1.d.ts +645 -504
- package/dist-types/models/models_2.d.ts +5430 -5423
- package/dist-types/models/models_3.d.ts +730 -3
- package/dist-types/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/SageMaker.d.ts +45 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +11 -2
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListEdgeDeploymentPlansCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +91 -132
- package/dist-types/ts3.4/models/models_1.d.ts +235 -238
- package/dist-types/ts3.4/models/models_2.d.ts +341 -324
- package/dist-types/ts3.4/models/models_3.d.ts +371 -3
- package/dist-types/ts3.4/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +27 -0
- package/package.json +1 -1
|
@@ -1,5 +1,242 @@
|
|
|
1
|
-
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy,
|
|
2
|
-
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus,
|
|
1
|
+
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContainerDefinition, ContextSummary, EdgeOutputConfig, FeatureDefinition, FeatureType, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, ObjectiveStatus, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ProductionVariantInstanceType, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
+
export interface DescribeHyperParameterTuningJobRequest {
|
|
4
|
+
|
|
5
|
+
HyperParameterTuningJobName: string | undefined;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace DescribeHyperParameterTuningJobRequest {
|
|
8
|
+
|
|
9
|
+
const filterSensitiveLog: (obj: DescribeHyperParameterTuningJobRequest) => any;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface FinalHyperParameterTuningJobObjectiveMetric {
|
|
13
|
+
|
|
14
|
+
Type?: HyperParameterTuningJobObjectiveType | string;
|
|
15
|
+
|
|
16
|
+
MetricName: string | undefined;
|
|
17
|
+
|
|
18
|
+
Value: number | undefined;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace FinalHyperParameterTuningJobObjectiveMetric {
|
|
21
|
+
|
|
22
|
+
const filterSensitiveLog: (obj: FinalHyperParameterTuningJobObjectiveMetric) => any;
|
|
23
|
+
}
|
|
24
|
+
export declare enum TrainingJobStatus {
|
|
25
|
+
COMPLETED = "Completed",
|
|
26
|
+
FAILED = "Failed",
|
|
27
|
+
IN_PROGRESS = "InProgress",
|
|
28
|
+
STOPPED = "Stopped",
|
|
29
|
+
STOPPING = "Stopping"
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface HyperParameterTrainingJobSummary {
|
|
33
|
+
|
|
34
|
+
TrainingJobDefinitionName?: string;
|
|
35
|
+
|
|
36
|
+
TrainingJobName: string | undefined;
|
|
37
|
+
|
|
38
|
+
TrainingJobArn: string | undefined;
|
|
39
|
+
|
|
40
|
+
TuningJobName?: string;
|
|
41
|
+
|
|
42
|
+
CreationTime: Date | undefined;
|
|
43
|
+
|
|
44
|
+
TrainingStartTime?: Date;
|
|
45
|
+
|
|
46
|
+
TrainingEndTime?: Date;
|
|
47
|
+
|
|
48
|
+
TrainingJobStatus: TrainingJobStatus | string | undefined;
|
|
49
|
+
|
|
50
|
+
TunedHyperParameters: Record<string, string> | undefined;
|
|
51
|
+
|
|
52
|
+
FailureReason?: string;
|
|
53
|
+
|
|
54
|
+
FinalHyperParameterTuningJobObjectiveMetric?: FinalHyperParameterTuningJobObjectiveMetric;
|
|
55
|
+
|
|
56
|
+
ObjectiveStatus?: ObjectiveStatus | string;
|
|
57
|
+
}
|
|
58
|
+
export declare namespace HyperParameterTrainingJobSummary {
|
|
59
|
+
|
|
60
|
+
const filterSensitiveLog: (obj: HyperParameterTrainingJobSummary) => any;
|
|
61
|
+
}
|
|
62
|
+
export declare enum HyperParameterTuningJobStatus {
|
|
63
|
+
COMPLETED = "Completed",
|
|
64
|
+
FAILED = "Failed",
|
|
65
|
+
IN_PROGRESS = "InProgress",
|
|
66
|
+
STOPPED = "Stopped",
|
|
67
|
+
STOPPING = "Stopping"
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export interface ObjectiveStatusCounters {
|
|
71
|
+
|
|
72
|
+
Succeeded?: number;
|
|
73
|
+
|
|
74
|
+
Pending?: number;
|
|
75
|
+
|
|
76
|
+
Failed?: number;
|
|
77
|
+
}
|
|
78
|
+
export declare namespace ObjectiveStatusCounters {
|
|
79
|
+
|
|
80
|
+
const filterSensitiveLog: (obj: ObjectiveStatusCounters) => any;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface TrainingJobStatusCounters {
|
|
84
|
+
|
|
85
|
+
Completed?: number;
|
|
86
|
+
|
|
87
|
+
InProgress?: number;
|
|
88
|
+
|
|
89
|
+
RetryableError?: number;
|
|
90
|
+
|
|
91
|
+
NonRetryableError?: number;
|
|
92
|
+
|
|
93
|
+
Stopped?: number;
|
|
94
|
+
}
|
|
95
|
+
export declare namespace TrainingJobStatusCounters {
|
|
96
|
+
|
|
97
|
+
const filterSensitiveLog: (obj: TrainingJobStatusCounters) => any;
|
|
98
|
+
}
|
|
99
|
+
export interface DescribeHyperParameterTuningJobResponse {
|
|
100
|
+
|
|
101
|
+
HyperParameterTuningJobName: string | undefined;
|
|
102
|
+
|
|
103
|
+
HyperParameterTuningJobArn: string | undefined;
|
|
104
|
+
|
|
105
|
+
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
|
|
106
|
+
|
|
107
|
+
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
108
|
+
|
|
109
|
+
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
110
|
+
|
|
111
|
+
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | string | undefined;
|
|
112
|
+
|
|
113
|
+
CreationTime: Date | undefined;
|
|
114
|
+
|
|
115
|
+
HyperParameterTuningEndTime?: Date;
|
|
116
|
+
|
|
117
|
+
LastModifiedTime?: Date;
|
|
118
|
+
|
|
119
|
+
TrainingJobStatusCounters: TrainingJobStatusCounters | undefined;
|
|
120
|
+
|
|
121
|
+
ObjectiveStatusCounters: ObjectiveStatusCounters | undefined;
|
|
122
|
+
|
|
123
|
+
BestTrainingJob?: HyperParameterTrainingJobSummary;
|
|
124
|
+
|
|
125
|
+
OverallBestTrainingJob?: HyperParameterTrainingJobSummary;
|
|
126
|
+
|
|
127
|
+
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
|
|
128
|
+
|
|
129
|
+
FailureReason?: string;
|
|
130
|
+
}
|
|
131
|
+
export declare namespace DescribeHyperParameterTuningJobResponse {
|
|
132
|
+
|
|
133
|
+
const filterSensitiveLog: (obj: DescribeHyperParameterTuningJobResponse) => any;
|
|
134
|
+
}
|
|
135
|
+
export interface DescribeImageRequest {
|
|
136
|
+
|
|
137
|
+
ImageName: string | undefined;
|
|
138
|
+
}
|
|
139
|
+
export declare namespace DescribeImageRequest {
|
|
140
|
+
|
|
141
|
+
const filterSensitiveLog: (obj: DescribeImageRequest) => any;
|
|
142
|
+
}
|
|
143
|
+
export declare enum ImageStatus {
|
|
144
|
+
CREATED = "CREATED",
|
|
145
|
+
CREATE_FAILED = "CREATE_FAILED",
|
|
146
|
+
CREATING = "CREATING",
|
|
147
|
+
DELETE_FAILED = "DELETE_FAILED",
|
|
148
|
+
DELETING = "DELETING",
|
|
149
|
+
UPDATE_FAILED = "UPDATE_FAILED",
|
|
150
|
+
UPDATING = "UPDATING"
|
|
151
|
+
}
|
|
152
|
+
export interface DescribeImageResponse {
|
|
153
|
+
|
|
154
|
+
CreationTime?: Date;
|
|
155
|
+
|
|
156
|
+
Description?: string;
|
|
157
|
+
|
|
158
|
+
DisplayName?: string;
|
|
159
|
+
|
|
160
|
+
FailureReason?: string;
|
|
161
|
+
|
|
162
|
+
ImageArn?: string;
|
|
163
|
+
|
|
164
|
+
ImageName?: string;
|
|
165
|
+
|
|
166
|
+
ImageStatus?: ImageStatus | string;
|
|
167
|
+
|
|
168
|
+
LastModifiedTime?: Date;
|
|
169
|
+
|
|
170
|
+
RoleArn?: string;
|
|
171
|
+
}
|
|
172
|
+
export declare namespace DescribeImageResponse {
|
|
173
|
+
|
|
174
|
+
const filterSensitiveLog: (obj: DescribeImageResponse) => any;
|
|
175
|
+
}
|
|
176
|
+
export interface DescribeImageVersionRequest {
|
|
177
|
+
|
|
178
|
+
ImageName: string | undefined;
|
|
179
|
+
|
|
180
|
+
Version?: number;
|
|
181
|
+
}
|
|
182
|
+
export declare namespace DescribeImageVersionRequest {
|
|
183
|
+
|
|
184
|
+
const filterSensitiveLog: (obj: DescribeImageVersionRequest) => any;
|
|
185
|
+
}
|
|
186
|
+
export declare enum ImageVersionStatus {
|
|
187
|
+
CREATED = "CREATED",
|
|
188
|
+
CREATE_FAILED = "CREATE_FAILED",
|
|
189
|
+
CREATING = "CREATING",
|
|
190
|
+
DELETE_FAILED = "DELETE_FAILED",
|
|
191
|
+
DELETING = "DELETING"
|
|
192
|
+
}
|
|
193
|
+
export interface DescribeImageVersionResponse {
|
|
194
|
+
|
|
195
|
+
BaseImage?: string;
|
|
196
|
+
|
|
197
|
+
ContainerImage?: string;
|
|
198
|
+
|
|
199
|
+
CreationTime?: Date;
|
|
200
|
+
|
|
201
|
+
FailureReason?: string;
|
|
202
|
+
|
|
203
|
+
ImageArn?: string;
|
|
204
|
+
|
|
205
|
+
ImageVersionArn?: string;
|
|
206
|
+
|
|
207
|
+
ImageVersionStatus?: ImageVersionStatus | string;
|
|
208
|
+
|
|
209
|
+
LastModifiedTime?: Date;
|
|
210
|
+
|
|
211
|
+
Version?: number;
|
|
212
|
+
}
|
|
213
|
+
export declare namespace DescribeImageVersionResponse {
|
|
214
|
+
|
|
215
|
+
const filterSensitiveLog: (obj: DescribeImageVersionResponse) => any;
|
|
216
|
+
}
|
|
217
|
+
export interface DescribeInferenceRecommendationsJobRequest {
|
|
218
|
+
|
|
219
|
+
JobName: string | undefined;
|
|
220
|
+
}
|
|
221
|
+
export declare namespace DescribeInferenceRecommendationsJobRequest {
|
|
222
|
+
|
|
223
|
+
const filterSensitiveLog: (obj: DescribeInferenceRecommendationsJobRequest) => any;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export interface EndpointOutputConfiguration {
|
|
227
|
+
|
|
228
|
+
EndpointName: string | undefined;
|
|
229
|
+
|
|
230
|
+
VariantName: string | undefined;
|
|
231
|
+
|
|
232
|
+
InstanceType: ProductionVariantInstanceType | string | undefined;
|
|
233
|
+
|
|
234
|
+
InitialInstanceCount: number | undefined;
|
|
235
|
+
}
|
|
236
|
+
export declare namespace EndpointOutputConfiguration {
|
|
237
|
+
|
|
238
|
+
const filterSensitiveLog: (obj: EndpointOutputConfiguration) => any;
|
|
239
|
+
}
|
|
3
240
|
|
|
4
241
|
export interface RecommendationMetrics {
|
|
5
242
|
|
|
@@ -1498,6 +1735,43 @@ export declare namespace Device {
|
|
|
1498
1735
|
|
|
1499
1736
|
const filterSensitiveLog: (obj: Device) => any;
|
|
1500
1737
|
}
|
|
1738
|
+
export declare enum DeviceDeploymentStatus {
|
|
1739
|
+
Deployed = "DEPLOYED",
|
|
1740
|
+
Failed = "FAILED",
|
|
1741
|
+
InProgress = "INPROGRESS",
|
|
1742
|
+
ReadyToDeploy = "READYTODEPLOY",
|
|
1743
|
+
Stopped = "STOPPED",
|
|
1744
|
+
Stopping = "STOPPING"
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
export interface DeviceDeploymentSummary {
|
|
1748
|
+
|
|
1749
|
+
EdgeDeploymentPlanArn: string | undefined;
|
|
1750
|
+
|
|
1751
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
1752
|
+
|
|
1753
|
+
StageName: string | undefined;
|
|
1754
|
+
|
|
1755
|
+
DeployedStageName?: string;
|
|
1756
|
+
|
|
1757
|
+
DeviceFleetName?: string;
|
|
1758
|
+
|
|
1759
|
+
DeviceName: string | undefined;
|
|
1760
|
+
|
|
1761
|
+
DeviceArn: string | undefined;
|
|
1762
|
+
|
|
1763
|
+
DeviceDeploymentStatus?: DeviceDeploymentStatus | string;
|
|
1764
|
+
|
|
1765
|
+
DeviceDeploymentStatusMessage?: string;
|
|
1766
|
+
|
|
1767
|
+
Description?: string;
|
|
1768
|
+
|
|
1769
|
+
DeploymentStartTime?: Date;
|
|
1770
|
+
}
|
|
1771
|
+
export declare namespace DeviceDeploymentSummary {
|
|
1772
|
+
|
|
1773
|
+
const filterSensitiveLog: (obj: DeviceDeploymentSummary) => any;
|
|
1774
|
+
}
|
|
1501
1775
|
|
|
1502
1776
|
export interface DeviceFleetSummary {
|
|
1503
1777
|
|
|
@@ -1652,6 +1926,29 @@ export declare namespace Edge {
|
|
|
1652
1926
|
const filterSensitiveLog: (obj: Edge) => any;
|
|
1653
1927
|
}
|
|
1654
1928
|
|
|
1929
|
+
export interface EdgeDeploymentPlanSummary {
|
|
1930
|
+
|
|
1931
|
+
EdgeDeploymentPlanArn: string | undefined;
|
|
1932
|
+
|
|
1933
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
1934
|
+
|
|
1935
|
+
DeviceFleetName: string | undefined;
|
|
1936
|
+
|
|
1937
|
+
EdgeDeploymentSuccess: number | undefined;
|
|
1938
|
+
|
|
1939
|
+
EdgeDeploymentPending: number | undefined;
|
|
1940
|
+
|
|
1941
|
+
EdgeDeploymentFailed: number | undefined;
|
|
1942
|
+
|
|
1943
|
+
CreationTime?: Date;
|
|
1944
|
+
|
|
1945
|
+
LastModifiedTime?: Date;
|
|
1946
|
+
}
|
|
1947
|
+
export declare namespace EdgeDeploymentPlanSummary {
|
|
1948
|
+
|
|
1949
|
+
const filterSensitiveLog: (obj: EdgeDeploymentPlanSummary) => any;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1655
1952
|
export interface EdgeModelStat {
|
|
1656
1953
|
|
|
1657
1954
|
ModelName: string | undefined;
|
|
@@ -2909,6 +3206,48 @@ export declare namespace ListDomainsResponse {
|
|
|
2909
3206
|
|
|
2910
3207
|
const filterSensitiveLog: (obj: ListDomainsResponse) => any;
|
|
2911
3208
|
}
|
|
3209
|
+
export declare enum ListEdgeDeploymentPlansSortBy {
|
|
3210
|
+
CreationTime = "CREATION_TIME",
|
|
3211
|
+
DeviceFleetName = "DEVICE_FLEET_NAME",
|
|
3212
|
+
LastModifiedTime = "LAST_MODIFIED_TIME",
|
|
3213
|
+
Name = "NAME"
|
|
3214
|
+
}
|
|
3215
|
+
export interface ListEdgeDeploymentPlansRequest {
|
|
3216
|
+
|
|
3217
|
+
NextToken?: string;
|
|
3218
|
+
|
|
3219
|
+
MaxResults?: number;
|
|
3220
|
+
|
|
3221
|
+
CreationTimeAfter?: Date;
|
|
3222
|
+
|
|
3223
|
+
CreationTimeBefore?: Date;
|
|
3224
|
+
|
|
3225
|
+
LastModifiedTimeAfter?: Date;
|
|
3226
|
+
|
|
3227
|
+
LastModifiedTimeBefore?: Date;
|
|
3228
|
+
|
|
3229
|
+
NameContains?: string;
|
|
3230
|
+
|
|
3231
|
+
DeviceFleetNameContains?: string;
|
|
3232
|
+
|
|
3233
|
+
SortBy?: ListEdgeDeploymentPlansSortBy | string;
|
|
3234
|
+
|
|
3235
|
+
SortOrder?: SortOrder | string;
|
|
3236
|
+
}
|
|
3237
|
+
export declare namespace ListEdgeDeploymentPlansRequest {
|
|
3238
|
+
|
|
3239
|
+
const filterSensitiveLog: (obj: ListEdgeDeploymentPlansRequest) => any;
|
|
3240
|
+
}
|
|
3241
|
+
export interface ListEdgeDeploymentPlansResponse {
|
|
3242
|
+
|
|
3243
|
+
EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
|
|
3244
|
+
|
|
3245
|
+
NextToken?: string;
|
|
3246
|
+
}
|
|
3247
|
+
export declare namespace ListEdgeDeploymentPlansResponse {
|
|
3248
|
+
|
|
3249
|
+
const filterSensitiveLog: (obj: ListEdgeDeploymentPlansResponse) => any;
|
|
3250
|
+
}
|
|
2912
3251
|
export declare enum ListEdgePackagingJobsSortBy {
|
|
2913
3252
|
CreationTime = "CREATION_TIME",
|
|
2914
3253
|
EdgePackagingJobStatus = "STATUS",
|
|
@@ -4032,325 +4371,3 @@ export declare namespace ListPipelineExecutionsResponse {
|
|
|
4032
4371
|
|
|
4033
4372
|
const filterSensitiveLog: (obj: ListPipelineExecutionsResponse) => any;
|
|
4034
4373
|
}
|
|
4035
|
-
export interface ListPipelineExecutionStepsRequest {
|
|
4036
|
-
|
|
4037
|
-
PipelineExecutionArn?: string;
|
|
4038
|
-
|
|
4039
|
-
NextToken?: string;
|
|
4040
|
-
|
|
4041
|
-
MaxResults?: number;
|
|
4042
|
-
|
|
4043
|
-
SortOrder?: SortOrder | string;
|
|
4044
|
-
}
|
|
4045
|
-
export declare namespace ListPipelineExecutionStepsRequest {
|
|
4046
|
-
|
|
4047
|
-
const filterSensitiveLog: (obj: ListPipelineExecutionStepsRequest) => any;
|
|
4048
|
-
}
|
|
4049
|
-
|
|
4050
|
-
export interface ModelStepMetadata {
|
|
4051
|
-
|
|
4052
|
-
Arn?: string;
|
|
4053
|
-
}
|
|
4054
|
-
export declare namespace ModelStepMetadata {
|
|
4055
|
-
|
|
4056
|
-
const filterSensitiveLog: (obj: ModelStepMetadata) => any;
|
|
4057
|
-
}
|
|
4058
|
-
|
|
4059
|
-
export interface ProcessingJobStepMetadata {
|
|
4060
|
-
|
|
4061
|
-
Arn?: string;
|
|
4062
|
-
}
|
|
4063
|
-
export declare namespace ProcessingJobStepMetadata {
|
|
4064
|
-
|
|
4065
|
-
const filterSensitiveLog: (obj: ProcessingJobStepMetadata) => any;
|
|
4066
|
-
}
|
|
4067
|
-
|
|
4068
|
-
export interface QualityCheckStepMetadata {
|
|
4069
|
-
|
|
4070
|
-
CheckType?: string;
|
|
4071
|
-
|
|
4072
|
-
BaselineUsedForDriftCheckStatistics?: string;
|
|
4073
|
-
|
|
4074
|
-
BaselineUsedForDriftCheckConstraints?: string;
|
|
4075
|
-
|
|
4076
|
-
CalculatedBaselineStatistics?: string;
|
|
4077
|
-
|
|
4078
|
-
CalculatedBaselineConstraints?: string;
|
|
4079
|
-
|
|
4080
|
-
ModelPackageGroupName?: string;
|
|
4081
|
-
|
|
4082
|
-
ViolationReport?: string;
|
|
4083
|
-
|
|
4084
|
-
CheckJobArn?: string;
|
|
4085
|
-
|
|
4086
|
-
SkipCheck?: boolean;
|
|
4087
|
-
|
|
4088
|
-
RegisterNewBaseline?: boolean;
|
|
4089
|
-
}
|
|
4090
|
-
export declare namespace QualityCheckStepMetadata {
|
|
4091
|
-
|
|
4092
|
-
const filterSensitiveLog: (obj: QualityCheckStepMetadata) => any;
|
|
4093
|
-
}
|
|
4094
|
-
|
|
4095
|
-
export interface RegisterModelStepMetadata {
|
|
4096
|
-
|
|
4097
|
-
Arn?: string;
|
|
4098
|
-
}
|
|
4099
|
-
export declare namespace RegisterModelStepMetadata {
|
|
4100
|
-
|
|
4101
|
-
const filterSensitiveLog: (obj: RegisterModelStepMetadata) => any;
|
|
4102
|
-
}
|
|
4103
|
-
|
|
4104
|
-
export interface TrainingJobStepMetadata {
|
|
4105
|
-
|
|
4106
|
-
Arn?: string;
|
|
4107
|
-
}
|
|
4108
|
-
export declare namespace TrainingJobStepMetadata {
|
|
4109
|
-
|
|
4110
|
-
const filterSensitiveLog: (obj: TrainingJobStepMetadata) => any;
|
|
4111
|
-
}
|
|
4112
|
-
|
|
4113
|
-
export interface TransformJobStepMetadata {
|
|
4114
|
-
|
|
4115
|
-
Arn?: string;
|
|
4116
|
-
}
|
|
4117
|
-
export declare namespace TransformJobStepMetadata {
|
|
4118
|
-
|
|
4119
|
-
const filterSensitiveLog: (obj: TransformJobStepMetadata) => any;
|
|
4120
|
-
}
|
|
4121
|
-
|
|
4122
|
-
export interface TuningJobStepMetaData {
|
|
4123
|
-
|
|
4124
|
-
Arn?: string;
|
|
4125
|
-
}
|
|
4126
|
-
export declare namespace TuningJobStepMetaData {
|
|
4127
|
-
|
|
4128
|
-
const filterSensitiveLog: (obj: TuningJobStepMetaData) => any;
|
|
4129
|
-
}
|
|
4130
|
-
|
|
4131
|
-
export interface PipelineExecutionStepMetadata {
|
|
4132
|
-
|
|
4133
|
-
TrainingJob?: TrainingJobStepMetadata;
|
|
4134
|
-
|
|
4135
|
-
ProcessingJob?: ProcessingJobStepMetadata;
|
|
4136
|
-
|
|
4137
|
-
TransformJob?: TransformJobStepMetadata;
|
|
4138
|
-
|
|
4139
|
-
TuningJob?: TuningJobStepMetaData;
|
|
4140
|
-
|
|
4141
|
-
Model?: ModelStepMetadata;
|
|
4142
|
-
|
|
4143
|
-
RegisterModel?: RegisterModelStepMetadata;
|
|
4144
|
-
|
|
4145
|
-
Condition?: ConditionStepMetadata;
|
|
4146
|
-
|
|
4147
|
-
Callback?: CallbackStepMetadata;
|
|
4148
|
-
|
|
4149
|
-
Lambda?: LambdaStepMetadata;
|
|
4150
|
-
|
|
4151
|
-
QualityCheck?: QualityCheckStepMetadata;
|
|
4152
|
-
|
|
4153
|
-
ClarifyCheck?: ClarifyCheckStepMetadata;
|
|
4154
|
-
|
|
4155
|
-
EMR?: EMRStepMetadata;
|
|
4156
|
-
|
|
4157
|
-
Fail?: FailStepMetadata;
|
|
4158
|
-
}
|
|
4159
|
-
export declare namespace PipelineExecutionStepMetadata {
|
|
4160
|
-
|
|
4161
|
-
const filterSensitiveLog: (obj: PipelineExecutionStepMetadata) => any;
|
|
4162
|
-
}
|
|
4163
|
-
export declare enum StepStatus {
|
|
4164
|
-
EXECUTING = "Executing",
|
|
4165
|
-
FAILED = "Failed",
|
|
4166
|
-
STARTING = "Starting",
|
|
4167
|
-
STOPPED = "Stopped",
|
|
4168
|
-
STOPPING = "Stopping",
|
|
4169
|
-
SUCCEEDED = "Succeeded"
|
|
4170
|
-
}
|
|
4171
|
-
|
|
4172
|
-
export interface PipelineExecutionStep {
|
|
4173
|
-
|
|
4174
|
-
StepName?: string;
|
|
4175
|
-
|
|
4176
|
-
StepDisplayName?: string;
|
|
4177
|
-
|
|
4178
|
-
StepDescription?: string;
|
|
4179
|
-
|
|
4180
|
-
StartTime?: Date;
|
|
4181
|
-
|
|
4182
|
-
EndTime?: Date;
|
|
4183
|
-
|
|
4184
|
-
StepStatus?: StepStatus | string;
|
|
4185
|
-
|
|
4186
|
-
CacheHitResult?: CacheHitResult;
|
|
4187
|
-
|
|
4188
|
-
AttemptCount?: number;
|
|
4189
|
-
|
|
4190
|
-
FailureReason?: string;
|
|
4191
|
-
|
|
4192
|
-
Metadata?: PipelineExecutionStepMetadata;
|
|
4193
|
-
}
|
|
4194
|
-
export declare namespace PipelineExecutionStep {
|
|
4195
|
-
|
|
4196
|
-
const filterSensitiveLog: (obj: PipelineExecutionStep) => any;
|
|
4197
|
-
}
|
|
4198
|
-
export interface ListPipelineExecutionStepsResponse {
|
|
4199
|
-
|
|
4200
|
-
PipelineExecutionSteps?: PipelineExecutionStep[];
|
|
4201
|
-
|
|
4202
|
-
NextToken?: string;
|
|
4203
|
-
}
|
|
4204
|
-
export declare namespace ListPipelineExecutionStepsResponse {
|
|
4205
|
-
|
|
4206
|
-
const filterSensitiveLog: (obj: ListPipelineExecutionStepsResponse) => any;
|
|
4207
|
-
}
|
|
4208
|
-
export interface ListPipelineParametersForExecutionRequest {
|
|
4209
|
-
|
|
4210
|
-
PipelineExecutionArn: string | undefined;
|
|
4211
|
-
|
|
4212
|
-
NextToken?: string;
|
|
4213
|
-
|
|
4214
|
-
MaxResults?: number;
|
|
4215
|
-
}
|
|
4216
|
-
export declare namespace ListPipelineParametersForExecutionRequest {
|
|
4217
|
-
|
|
4218
|
-
const filterSensitiveLog: (obj: ListPipelineParametersForExecutionRequest) => any;
|
|
4219
|
-
}
|
|
4220
|
-
|
|
4221
|
-
export interface Parameter {
|
|
4222
|
-
|
|
4223
|
-
Name: string | undefined;
|
|
4224
|
-
|
|
4225
|
-
Value: string | undefined;
|
|
4226
|
-
}
|
|
4227
|
-
export declare namespace Parameter {
|
|
4228
|
-
|
|
4229
|
-
const filterSensitiveLog: (obj: Parameter) => any;
|
|
4230
|
-
}
|
|
4231
|
-
export interface ListPipelineParametersForExecutionResponse {
|
|
4232
|
-
|
|
4233
|
-
PipelineParameters?: Parameter[];
|
|
4234
|
-
|
|
4235
|
-
NextToken?: string;
|
|
4236
|
-
}
|
|
4237
|
-
export declare namespace ListPipelineParametersForExecutionResponse {
|
|
4238
|
-
|
|
4239
|
-
const filterSensitiveLog: (obj: ListPipelineParametersForExecutionResponse) => any;
|
|
4240
|
-
}
|
|
4241
|
-
export declare enum SortPipelinesBy {
|
|
4242
|
-
CREATION_TIME = "CreationTime",
|
|
4243
|
-
NAME = "Name"
|
|
4244
|
-
}
|
|
4245
|
-
export interface ListPipelinesRequest {
|
|
4246
|
-
|
|
4247
|
-
PipelineNamePrefix?: string;
|
|
4248
|
-
|
|
4249
|
-
CreatedAfter?: Date;
|
|
4250
|
-
|
|
4251
|
-
CreatedBefore?: Date;
|
|
4252
|
-
|
|
4253
|
-
SortBy?: SortPipelinesBy | string;
|
|
4254
|
-
|
|
4255
|
-
SortOrder?: SortOrder | string;
|
|
4256
|
-
|
|
4257
|
-
NextToken?: string;
|
|
4258
|
-
|
|
4259
|
-
MaxResults?: number;
|
|
4260
|
-
}
|
|
4261
|
-
export declare namespace ListPipelinesRequest {
|
|
4262
|
-
|
|
4263
|
-
const filterSensitiveLog: (obj: ListPipelinesRequest) => any;
|
|
4264
|
-
}
|
|
4265
|
-
|
|
4266
|
-
export interface PipelineSummary {
|
|
4267
|
-
|
|
4268
|
-
PipelineArn?: string;
|
|
4269
|
-
|
|
4270
|
-
PipelineName?: string;
|
|
4271
|
-
|
|
4272
|
-
PipelineDisplayName?: string;
|
|
4273
|
-
|
|
4274
|
-
PipelineDescription?: string;
|
|
4275
|
-
|
|
4276
|
-
RoleArn?: string;
|
|
4277
|
-
|
|
4278
|
-
CreationTime?: Date;
|
|
4279
|
-
|
|
4280
|
-
LastModifiedTime?: Date;
|
|
4281
|
-
|
|
4282
|
-
LastExecutionTime?: Date;
|
|
4283
|
-
}
|
|
4284
|
-
export declare namespace PipelineSummary {
|
|
4285
|
-
|
|
4286
|
-
const filterSensitiveLog: (obj: PipelineSummary) => any;
|
|
4287
|
-
}
|
|
4288
|
-
export interface ListPipelinesResponse {
|
|
4289
|
-
|
|
4290
|
-
PipelineSummaries?: PipelineSummary[];
|
|
4291
|
-
|
|
4292
|
-
NextToken?: string;
|
|
4293
|
-
}
|
|
4294
|
-
export declare namespace ListPipelinesResponse {
|
|
4295
|
-
|
|
4296
|
-
const filterSensitiveLog: (obj: ListPipelinesResponse) => any;
|
|
4297
|
-
}
|
|
4298
|
-
export interface ListProcessingJobsRequest {
|
|
4299
|
-
|
|
4300
|
-
CreationTimeAfter?: Date;
|
|
4301
|
-
|
|
4302
|
-
CreationTimeBefore?: Date;
|
|
4303
|
-
|
|
4304
|
-
LastModifiedTimeAfter?: Date;
|
|
4305
|
-
|
|
4306
|
-
LastModifiedTimeBefore?: Date;
|
|
4307
|
-
|
|
4308
|
-
NameContains?: string;
|
|
4309
|
-
|
|
4310
|
-
StatusEquals?: ProcessingJobStatus | string;
|
|
4311
|
-
|
|
4312
|
-
SortBy?: SortBy | string;
|
|
4313
|
-
|
|
4314
|
-
SortOrder?: SortOrder | string;
|
|
4315
|
-
|
|
4316
|
-
NextToken?: string;
|
|
4317
|
-
|
|
4318
|
-
MaxResults?: number;
|
|
4319
|
-
}
|
|
4320
|
-
export declare namespace ListProcessingJobsRequest {
|
|
4321
|
-
|
|
4322
|
-
const filterSensitiveLog: (obj: ListProcessingJobsRequest) => any;
|
|
4323
|
-
}
|
|
4324
|
-
|
|
4325
|
-
export interface ProcessingJobSummary {
|
|
4326
|
-
|
|
4327
|
-
ProcessingJobName: string | undefined;
|
|
4328
|
-
|
|
4329
|
-
ProcessingJobArn: string | undefined;
|
|
4330
|
-
|
|
4331
|
-
CreationTime: Date | undefined;
|
|
4332
|
-
|
|
4333
|
-
ProcessingEndTime?: Date;
|
|
4334
|
-
|
|
4335
|
-
LastModifiedTime?: Date;
|
|
4336
|
-
|
|
4337
|
-
ProcessingJobStatus: ProcessingJobStatus | string | undefined;
|
|
4338
|
-
|
|
4339
|
-
FailureReason?: string;
|
|
4340
|
-
|
|
4341
|
-
ExitMessage?: string;
|
|
4342
|
-
}
|
|
4343
|
-
export declare namespace ProcessingJobSummary {
|
|
4344
|
-
|
|
4345
|
-
const filterSensitiveLog: (obj: ProcessingJobSummary) => any;
|
|
4346
|
-
}
|
|
4347
|
-
export interface ListProcessingJobsResponse {
|
|
4348
|
-
|
|
4349
|
-
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
4350
|
-
|
|
4351
|
-
NextToken?: string;
|
|
4352
|
-
}
|
|
4353
|
-
export declare namespace ListProcessingJobsResponse {
|
|
4354
|
-
|
|
4355
|
-
const filterSensitiveLog: (obj: ListProcessingJobsResponse) => any;
|
|
4356
|
-
}
|