@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,6 +1,657 @@
|
|
|
1
|
-
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, Channel, CheckpointConfig, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig,
|
|
2
|
-
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, FeatureParameter,
|
|
3
|
-
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails,
|
|
1
|
+
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ConditionStepMetadata, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, FeatureParameter, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_1";
|
|
3
|
+
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
export interface ListPipelineExecutionStepsRequest {
|
|
5
|
+
/**
|
|
6
|
+
* <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
|
|
7
|
+
*/
|
|
8
|
+
PipelineExecutionArn?: string;
|
|
9
|
+
/**
|
|
10
|
+
* <p>If the result of the previous <code>ListPipelineExecutionSteps</code> request was truncated,
|
|
11
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of pipeline execution steps, use the token in the next request.</p>
|
|
12
|
+
*/
|
|
13
|
+
NextToken?: string;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The maximum number of pipeline execution steps to return in the response.</p>
|
|
16
|
+
*/
|
|
17
|
+
MaxResults?: number;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The field by which to sort results. The default is <code>CreatedTime</code>.</p>
|
|
20
|
+
*/
|
|
21
|
+
SortOrder?: SortOrder | string;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace ListPipelineExecutionStepsRequest {
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
const filterSensitiveLog: (obj: ListPipelineExecutionStepsRequest) => any;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>Metadata for Model steps.</p>
|
|
31
|
+
*/
|
|
32
|
+
export interface ModelStepMetadata {
|
|
33
|
+
/**
|
|
34
|
+
* <p>The Amazon Resource Name (ARN) of the created model.</p>
|
|
35
|
+
*/
|
|
36
|
+
Arn?: string;
|
|
37
|
+
}
|
|
38
|
+
export declare namespace ModelStepMetadata {
|
|
39
|
+
/**
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
const filterSensitiveLog: (obj: ModelStepMetadata) => any;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* <p>Metadata for a processing job step.</p>
|
|
46
|
+
*/
|
|
47
|
+
export interface ProcessingJobStepMetadata {
|
|
48
|
+
/**
|
|
49
|
+
* <p>The Amazon Resource Name (ARN) of the processing job.</p>
|
|
50
|
+
*/
|
|
51
|
+
Arn?: string;
|
|
52
|
+
}
|
|
53
|
+
export declare namespace ProcessingJobStepMetadata {
|
|
54
|
+
/**
|
|
55
|
+
* @internal
|
|
56
|
+
*/
|
|
57
|
+
const filterSensitiveLog: (obj: ProcessingJobStepMetadata) => any;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* <p>Container for the metadata for a Quality check step. For more information, see
|
|
61
|
+
* the topic on <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/build-and-manage-steps.html#step-type-quality-check">QualityCheck step</a> in the <i>Amazon SageMaker Developer Guide</i>.
|
|
62
|
+
* </p>
|
|
63
|
+
*/
|
|
64
|
+
export interface QualityCheckStepMetadata {
|
|
65
|
+
/**
|
|
66
|
+
* <p>The type of the Quality check step.</p>
|
|
67
|
+
*/
|
|
68
|
+
CheckType?: string;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The Amazon S3 URI of the baseline statistics file used for the drift check.</p>
|
|
71
|
+
*/
|
|
72
|
+
BaselineUsedForDriftCheckStatistics?: string;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The Amazon S3 URI of the baseline constraints file used for the drift check.</p>
|
|
75
|
+
*/
|
|
76
|
+
BaselineUsedForDriftCheckConstraints?: string;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The Amazon S3 URI of the newly calculated baseline statistics file.</p>
|
|
79
|
+
*/
|
|
80
|
+
CalculatedBaselineStatistics?: string;
|
|
81
|
+
/**
|
|
82
|
+
* <p>The Amazon S3 URI of the newly calculated baseline constraints file.</p>
|
|
83
|
+
*/
|
|
84
|
+
CalculatedBaselineConstraints?: string;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The model package group name.</p>
|
|
87
|
+
*/
|
|
88
|
+
ModelPackageGroupName?: string;
|
|
89
|
+
/**
|
|
90
|
+
* <p>The Amazon S3 URI of violation report if violations are detected.</p>
|
|
91
|
+
*/
|
|
92
|
+
ViolationReport?: string;
|
|
93
|
+
/**
|
|
94
|
+
* <p>The Amazon Resource Name (ARN) of the Quality check processing job that was run by this step execution.</p>
|
|
95
|
+
*/
|
|
96
|
+
CheckJobArn?: string;
|
|
97
|
+
/**
|
|
98
|
+
* <p>This flag indicates if the drift check against the previous baseline will be skipped or not.
|
|
99
|
+
* If it is set to <code>False</code>, the previous baseline of the configured check type must be available.</p>
|
|
100
|
+
*/
|
|
101
|
+
SkipCheck?: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* <p>This flag indicates if a newly calculated baseline can be accessed through step properties
|
|
104
|
+
* <code>BaselineUsedForDriftCheckConstraints</code> and <code>BaselineUsedForDriftCheckStatistics</code>.
|
|
105
|
+
* If it is set to <code>False</code>, the previous baseline of the configured check type must also be available.
|
|
106
|
+
* These can be accessed through the <code>BaselineUsedForDriftCheckConstraints</code> and <code>
|
|
107
|
+
* BaselineUsedForDriftCheckStatistics</code> properties. </p>
|
|
108
|
+
*/
|
|
109
|
+
RegisterNewBaseline?: boolean;
|
|
110
|
+
}
|
|
111
|
+
export declare namespace QualityCheckStepMetadata {
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
const filterSensitiveLog: (obj: QualityCheckStepMetadata) => any;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* <p>Metadata for a register model job step.</p>
|
|
119
|
+
*/
|
|
120
|
+
export interface RegisterModelStepMetadata {
|
|
121
|
+
/**
|
|
122
|
+
* <p>The Amazon Resource Name (ARN) of the model package.</p>
|
|
123
|
+
*/
|
|
124
|
+
Arn?: string;
|
|
125
|
+
}
|
|
126
|
+
export declare namespace RegisterModelStepMetadata {
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
130
|
+
const filterSensitiveLog: (obj: RegisterModelStepMetadata) => any;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* <p>Metadata for a training job step.</p>
|
|
134
|
+
*/
|
|
135
|
+
export interface TrainingJobStepMetadata {
|
|
136
|
+
/**
|
|
137
|
+
* <p>The Amazon Resource Name (ARN) of the training job that was run by this step execution.</p>
|
|
138
|
+
*/
|
|
139
|
+
Arn?: string;
|
|
140
|
+
}
|
|
141
|
+
export declare namespace TrainingJobStepMetadata {
|
|
142
|
+
/**
|
|
143
|
+
* @internal
|
|
144
|
+
*/
|
|
145
|
+
const filterSensitiveLog: (obj: TrainingJobStepMetadata) => any;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* <p>Metadata for a transform job step.</p>
|
|
149
|
+
*/
|
|
150
|
+
export interface TransformJobStepMetadata {
|
|
151
|
+
/**
|
|
152
|
+
* <p>The Amazon Resource Name (ARN) of the transform job that was run by this step execution.</p>
|
|
153
|
+
*/
|
|
154
|
+
Arn?: string;
|
|
155
|
+
}
|
|
156
|
+
export declare namespace TransformJobStepMetadata {
|
|
157
|
+
/**
|
|
158
|
+
* @internal
|
|
159
|
+
*/
|
|
160
|
+
const filterSensitiveLog: (obj: TransformJobStepMetadata) => any;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* <p>Metadata for a tuning step.</p>
|
|
164
|
+
*/
|
|
165
|
+
export interface TuningJobStepMetaData {
|
|
166
|
+
/**
|
|
167
|
+
* <p>The Amazon Resource Name (ARN) of the tuning job that was run by this step execution.</p>
|
|
168
|
+
*/
|
|
169
|
+
Arn?: string;
|
|
170
|
+
}
|
|
171
|
+
export declare namespace TuningJobStepMetaData {
|
|
172
|
+
/**
|
|
173
|
+
* @internal
|
|
174
|
+
*/
|
|
175
|
+
const filterSensitiveLog: (obj: TuningJobStepMetaData) => any;
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* <p>Metadata for a step execution.</p>
|
|
179
|
+
*/
|
|
180
|
+
export interface PipelineExecutionStepMetadata {
|
|
181
|
+
/**
|
|
182
|
+
* <p>The Amazon Resource Name (ARN) of the training job that was run by this step execution.</p>
|
|
183
|
+
*/
|
|
184
|
+
TrainingJob?: TrainingJobStepMetadata;
|
|
185
|
+
/**
|
|
186
|
+
* <p>The Amazon Resource Name (ARN) of the processing job that was run by this step execution.</p>
|
|
187
|
+
*/
|
|
188
|
+
ProcessingJob?: ProcessingJobStepMetadata;
|
|
189
|
+
/**
|
|
190
|
+
* <p>The Amazon Resource Name (ARN) of the transform job that was run by this step execution.</p>
|
|
191
|
+
*/
|
|
192
|
+
TransformJob?: TransformJobStepMetadata;
|
|
193
|
+
/**
|
|
194
|
+
* <p>The Amazon Resource Name (ARN) of the tuning job that was run by this step execution.</p>
|
|
195
|
+
*/
|
|
196
|
+
TuningJob?: TuningJobStepMetaData;
|
|
197
|
+
/**
|
|
198
|
+
* <p>The Amazon Resource Name (ARN) of the model that was created by this step execution.</p>
|
|
199
|
+
*/
|
|
200
|
+
Model?: ModelStepMetadata;
|
|
201
|
+
/**
|
|
202
|
+
* <p>The Amazon Resource Name (ARN) of the model package the model was registered to by this step execution.</p>
|
|
203
|
+
*/
|
|
204
|
+
RegisterModel?: RegisterModelStepMetadata;
|
|
205
|
+
/**
|
|
206
|
+
* <p>The outcome of the condition evaluation that was run by this step execution.</p>
|
|
207
|
+
*/
|
|
208
|
+
Condition?: ConditionStepMetadata;
|
|
209
|
+
/**
|
|
210
|
+
* <p>The URL of the Amazon SQS queue used by this step execution, the pipeline generated token,
|
|
211
|
+
* and a list of output parameters.</p>
|
|
212
|
+
*/
|
|
213
|
+
Callback?: CallbackStepMetadata;
|
|
214
|
+
/**
|
|
215
|
+
* <p>The Amazon Resource Name (ARN) of the Lambda function that was run by this step execution and a list of
|
|
216
|
+
* output parameters.</p>
|
|
217
|
+
*/
|
|
218
|
+
Lambda?: LambdaStepMetadata;
|
|
219
|
+
/**
|
|
220
|
+
* <p>The configurations and outcomes of the check step execution. This includes: </p>
|
|
221
|
+
* <ul>
|
|
222
|
+
* <li>
|
|
223
|
+
* <p>The type of the check conducted,</p>
|
|
224
|
+
* </li>
|
|
225
|
+
* <li>
|
|
226
|
+
* <p>The Amazon S3 URIs of baseline constraints and statistics files to be used for the drift check.</p>
|
|
227
|
+
* </li>
|
|
228
|
+
* <li>
|
|
229
|
+
* <p>The Amazon S3 URIs of newly calculated baseline constraints and statistics.</p>
|
|
230
|
+
* </li>
|
|
231
|
+
* <li>
|
|
232
|
+
* <p>The model package group name provided.</p>
|
|
233
|
+
* </li>
|
|
234
|
+
* <li>
|
|
235
|
+
* <p>The Amazon S3 URI of the violation report if violations detected.</p>
|
|
236
|
+
* </li>
|
|
237
|
+
* <li>
|
|
238
|
+
* <p>The Amazon Resource Name (ARN) of check processing job initiated by the step execution.</p>
|
|
239
|
+
* </li>
|
|
240
|
+
* <li>
|
|
241
|
+
* <p>The boolean flags indicating if the drift check is skipped.</p>
|
|
242
|
+
* </li>
|
|
243
|
+
* <li>
|
|
244
|
+
* <p>If step property <code>BaselineUsedForDriftCheck</code> is set the same as
|
|
245
|
+
* <code>CalculatedBaseline</code>.</p>
|
|
246
|
+
* </li>
|
|
247
|
+
* </ul>
|
|
248
|
+
*/
|
|
249
|
+
QualityCheck?: QualityCheckStepMetadata;
|
|
250
|
+
/**
|
|
251
|
+
* <p>Container for the metadata for a Clarify check step. The configurations
|
|
252
|
+
* and outcomes of the check step execution. This includes: </p>
|
|
253
|
+
* <ul>
|
|
254
|
+
* <li>
|
|
255
|
+
* <p>The type of the check conducted,</p>
|
|
256
|
+
* </li>
|
|
257
|
+
* <li>
|
|
258
|
+
* <p>The Amazon S3 URIs of baseline constraints and statistics files to be used for the drift check.</p>
|
|
259
|
+
* </li>
|
|
260
|
+
* <li>
|
|
261
|
+
* <p>The Amazon S3 URIs of newly calculated baseline constraints and statistics.</p>
|
|
262
|
+
* </li>
|
|
263
|
+
* <li>
|
|
264
|
+
* <p>The model package group name provided.</p>
|
|
265
|
+
* </li>
|
|
266
|
+
* <li>
|
|
267
|
+
* <p>The Amazon S3 URI of the violation report if violations detected.</p>
|
|
268
|
+
* </li>
|
|
269
|
+
* <li>
|
|
270
|
+
* <p>The Amazon Resource Name (ARN) of check processing job initiated by the step execution.</p>
|
|
271
|
+
* </li>
|
|
272
|
+
* <li>
|
|
273
|
+
* <p>The boolean flags indicating if the drift check is skipped.</p>
|
|
274
|
+
* </li>
|
|
275
|
+
* <li>
|
|
276
|
+
* <p>If step property <code>BaselineUsedForDriftCheck</code> is set the same as
|
|
277
|
+
* <code>CalculatedBaseline</code>.</p>
|
|
278
|
+
* </li>
|
|
279
|
+
* </ul>
|
|
280
|
+
*/
|
|
281
|
+
ClarifyCheck?: ClarifyCheckStepMetadata;
|
|
282
|
+
/**
|
|
283
|
+
* <p>The configurations and outcomes of an EMR step execution.</p>
|
|
284
|
+
*/
|
|
285
|
+
EMR?: EMRStepMetadata;
|
|
286
|
+
/**
|
|
287
|
+
* <p>The configurations and outcomes of a Fail step execution.</p>
|
|
288
|
+
*/
|
|
289
|
+
Fail?: FailStepMetadata;
|
|
290
|
+
}
|
|
291
|
+
export declare namespace PipelineExecutionStepMetadata {
|
|
292
|
+
/**
|
|
293
|
+
* @internal
|
|
294
|
+
*/
|
|
295
|
+
const filterSensitiveLog: (obj: PipelineExecutionStepMetadata) => any;
|
|
296
|
+
}
|
|
297
|
+
export declare enum StepStatus {
|
|
298
|
+
EXECUTING = "Executing",
|
|
299
|
+
FAILED = "Failed",
|
|
300
|
+
STARTING = "Starting",
|
|
301
|
+
STOPPED = "Stopped",
|
|
302
|
+
STOPPING = "Stopping",
|
|
303
|
+
SUCCEEDED = "Succeeded"
|
|
304
|
+
}
|
|
305
|
+
/**
|
|
306
|
+
* <p>An execution of a step in a pipeline.</p>
|
|
307
|
+
*/
|
|
308
|
+
export interface PipelineExecutionStep {
|
|
309
|
+
/**
|
|
310
|
+
* <p>The name of the step that is executed.</p>
|
|
311
|
+
*/
|
|
312
|
+
StepName?: string;
|
|
313
|
+
/**
|
|
314
|
+
* <p>The display name of the step.</p>
|
|
315
|
+
*/
|
|
316
|
+
StepDisplayName?: string;
|
|
317
|
+
/**
|
|
318
|
+
* <p>The description of the step.</p>
|
|
319
|
+
*/
|
|
320
|
+
StepDescription?: string;
|
|
321
|
+
/**
|
|
322
|
+
* <p>The time that the step started executing.</p>
|
|
323
|
+
*/
|
|
324
|
+
StartTime?: Date;
|
|
325
|
+
/**
|
|
326
|
+
* <p>The time that the step stopped executing.</p>
|
|
327
|
+
*/
|
|
328
|
+
EndTime?: Date;
|
|
329
|
+
/**
|
|
330
|
+
* <p>The status of the step execution.</p>
|
|
331
|
+
*/
|
|
332
|
+
StepStatus?: StepStatus | string;
|
|
333
|
+
/**
|
|
334
|
+
* <p>If this pipeline execution step was cached, details on the cache hit.</p>
|
|
335
|
+
*/
|
|
336
|
+
CacheHitResult?: CacheHitResult;
|
|
337
|
+
/**
|
|
338
|
+
* <p>The current attempt of the execution step. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-retry-policy.html">Retry Policy for SageMaker Pipelines steps</a>.</p>
|
|
339
|
+
*/
|
|
340
|
+
AttemptCount?: number;
|
|
341
|
+
/**
|
|
342
|
+
* <p>The reason why the step failed execution. This is only returned if the step failed its execution.</p>
|
|
343
|
+
*/
|
|
344
|
+
FailureReason?: string;
|
|
345
|
+
/**
|
|
346
|
+
* <p>Metadata for the step execution.</p>
|
|
347
|
+
*/
|
|
348
|
+
Metadata?: PipelineExecutionStepMetadata;
|
|
349
|
+
}
|
|
350
|
+
export declare namespace PipelineExecutionStep {
|
|
351
|
+
/**
|
|
352
|
+
* @internal
|
|
353
|
+
*/
|
|
354
|
+
const filterSensitiveLog: (obj: PipelineExecutionStep) => any;
|
|
355
|
+
}
|
|
356
|
+
export interface ListPipelineExecutionStepsResponse {
|
|
357
|
+
/**
|
|
358
|
+
* <p>A list of <code>PipeLineExecutionStep</code> objects. Each
|
|
359
|
+
* <code>PipeLineExecutionStep</code> consists of StepName, StartTime, EndTime, StepStatus,
|
|
360
|
+
* and Metadata. Metadata is an object with properties for each job that contains relevant
|
|
361
|
+
* information about the job created by the step.</p>
|
|
362
|
+
*/
|
|
363
|
+
PipelineExecutionSteps?: PipelineExecutionStep[];
|
|
364
|
+
/**
|
|
365
|
+
* <p>If the result of the previous <code>ListPipelineExecutionSteps</code> request was truncated,
|
|
366
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of pipeline execution steps, use the token in the next request.</p>
|
|
367
|
+
*/
|
|
368
|
+
NextToken?: string;
|
|
369
|
+
}
|
|
370
|
+
export declare namespace ListPipelineExecutionStepsResponse {
|
|
371
|
+
/**
|
|
372
|
+
* @internal
|
|
373
|
+
*/
|
|
374
|
+
const filterSensitiveLog: (obj: ListPipelineExecutionStepsResponse) => any;
|
|
375
|
+
}
|
|
376
|
+
export interface ListPipelineParametersForExecutionRequest {
|
|
377
|
+
/**
|
|
378
|
+
* <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
|
|
379
|
+
*/
|
|
380
|
+
PipelineExecutionArn: string | undefined;
|
|
381
|
+
/**
|
|
382
|
+
* <p>If the result of the previous <code>ListPipelineParametersForExecution</code> request was truncated,
|
|
383
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of parameters, use the token in the next request.</p>
|
|
384
|
+
*/
|
|
385
|
+
NextToken?: string;
|
|
386
|
+
/**
|
|
387
|
+
* <p>The maximum number of parameters to return in the response.</p>
|
|
388
|
+
*/
|
|
389
|
+
MaxResults?: number;
|
|
390
|
+
}
|
|
391
|
+
export declare namespace ListPipelineParametersForExecutionRequest {
|
|
392
|
+
/**
|
|
393
|
+
* @internal
|
|
394
|
+
*/
|
|
395
|
+
const filterSensitiveLog: (obj: ListPipelineParametersForExecutionRequest) => any;
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* <p>Assigns a value to a named Pipeline parameter.</p>
|
|
399
|
+
*/
|
|
400
|
+
export interface Parameter {
|
|
401
|
+
/**
|
|
402
|
+
* <p>The name of the parameter to assign a value to. This
|
|
403
|
+
* parameter name must match a named parameter in the
|
|
404
|
+
* pipeline definition.</p>
|
|
405
|
+
*/
|
|
406
|
+
Name: string | undefined;
|
|
407
|
+
/**
|
|
408
|
+
* <p>The literal value for the parameter.</p>
|
|
409
|
+
*/
|
|
410
|
+
Value: string | undefined;
|
|
411
|
+
}
|
|
412
|
+
export declare namespace Parameter {
|
|
413
|
+
/**
|
|
414
|
+
* @internal
|
|
415
|
+
*/
|
|
416
|
+
const filterSensitiveLog: (obj: Parameter) => any;
|
|
417
|
+
}
|
|
418
|
+
export interface ListPipelineParametersForExecutionResponse {
|
|
419
|
+
/**
|
|
420
|
+
* <p>Contains a list of pipeline parameters. This list can be empty. </p>
|
|
421
|
+
*/
|
|
422
|
+
PipelineParameters?: Parameter[];
|
|
423
|
+
/**
|
|
424
|
+
* <p>If the result of the previous <code>ListPipelineParametersForExecution</code> request was truncated,
|
|
425
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of parameters, use the token in the next request.</p>
|
|
426
|
+
*/
|
|
427
|
+
NextToken?: string;
|
|
428
|
+
}
|
|
429
|
+
export declare namespace ListPipelineParametersForExecutionResponse {
|
|
430
|
+
/**
|
|
431
|
+
* @internal
|
|
432
|
+
*/
|
|
433
|
+
const filterSensitiveLog: (obj: ListPipelineParametersForExecutionResponse) => any;
|
|
434
|
+
}
|
|
435
|
+
export declare enum SortPipelinesBy {
|
|
436
|
+
CREATION_TIME = "CreationTime",
|
|
437
|
+
NAME = "Name"
|
|
438
|
+
}
|
|
439
|
+
export interface ListPipelinesRequest {
|
|
440
|
+
/**
|
|
441
|
+
* <p>The prefix of the pipeline name.</p>
|
|
442
|
+
*/
|
|
443
|
+
PipelineNamePrefix?: string;
|
|
444
|
+
/**
|
|
445
|
+
* <p>A filter that returns the pipelines that were created after a specified
|
|
446
|
+
* time.</p>
|
|
447
|
+
*/
|
|
448
|
+
CreatedAfter?: Date;
|
|
449
|
+
/**
|
|
450
|
+
* <p>A filter that returns the pipelines that were created before a specified
|
|
451
|
+
* time.</p>
|
|
452
|
+
*/
|
|
453
|
+
CreatedBefore?: Date;
|
|
454
|
+
/**
|
|
455
|
+
* <p>The field by which to sort results. The default is <code>CreatedTime</code>.</p>
|
|
456
|
+
*/
|
|
457
|
+
SortBy?: SortPipelinesBy | string;
|
|
458
|
+
/**
|
|
459
|
+
* <p>The sort order for results.</p>
|
|
460
|
+
*/
|
|
461
|
+
SortOrder?: SortOrder | string;
|
|
462
|
+
/**
|
|
463
|
+
* <p>If the result of the previous <code>ListPipelines</code> request was truncated,
|
|
464
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of pipelines, use the token in the next request.</p>
|
|
465
|
+
*/
|
|
466
|
+
NextToken?: string;
|
|
467
|
+
/**
|
|
468
|
+
* <p>The maximum number of pipelines to return in the response.</p>
|
|
469
|
+
*/
|
|
470
|
+
MaxResults?: number;
|
|
471
|
+
}
|
|
472
|
+
export declare namespace ListPipelinesRequest {
|
|
473
|
+
/**
|
|
474
|
+
* @internal
|
|
475
|
+
*/
|
|
476
|
+
const filterSensitiveLog: (obj: ListPipelinesRequest) => any;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* <p>A summary of a pipeline.</p>
|
|
480
|
+
*/
|
|
481
|
+
export interface PipelineSummary {
|
|
482
|
+
/**
|
|
483
|
+
* <p> The Amazon Resource Name (ARN) of the pipeline.</p>
|
|
484
|
+
*/
|
|
485
|
+
PipelineArn?: string;
|
|
486
|
+
/**
|
|
487
|
+
* <p>The name of the pipeline.</p>
|
|
488
|
+
*/
|
|
489
|
+
PipelineName?: string;
|
|
490
|
+
/**
|
|
491
|
+
* <p>The display name of the pipeline.</p>
|
|
492
|
+
*/
|
|
493
|
+
PipelineDisplayName?: string;
|
|
494
|
+
/**
|
|
495
|
+
* <p>The description of the pipeline.</p>
|
|
496
|
+
*/
|
|
497
|
+
PipelineDescription?: string;
|
|
498
|
+
/**
|
|
499
|
+
* <p>The Amazon Resource Name (ARN) that the pipeline used to execute.</p>
|
|
500
|
+
*/
|
|
501
|
+
RoleArn?: string;
|
|
502
|
+
/**
|
|
503
|
+
* <p>The creation time of the pipeline.</p>
|
|
504
|
+
*/
|
|
505
|
+
CreationTime?: Date;
|
|
506
|
+
/**
|
|
507
|
+
* <p>The time that the pipeline was last modified.</p>
|
|
508
|
+
*/
|
|
509
|
+
LastModifiedTime?: Date;
|
|
510
|
+
/**
|
|
511
|
+
* <p>The last time that a pipeline execution began.</p>
|
|
512
|
+
*/
|
|
513
|
+
LastExecutionTime?: Date;
|
|
514
|
+
}
|
|
515
|
+
export declare namespace PipelineSummary {
|
|
516
|
+
/**
|
|
517
|
+
* @internal
|
|
518
|
+
*/
|
|
519
|
+
const filterSensitiveLog: (obj: PipelineSummary) => any;
|
|
520
|
+
}
|
|
521
|
+
export interface ListPipelinesResponse {
|
|
522
|
+
/**
|
|
523
|
+
* <p>Contains a sorted list of <code>PipelineSummary</code> objects matching the specified
|
|
524
|
+
* filters. Each <code>PipelineSummary</code> consists of PipelineArn, PipelineName,
|
|
525
|
+
* ExperimentName, PipelineDescription, CreationTime, LastModifiedTime, LastRunTime, and
|
|
526
|
+
* RoleArn. This list can be empty. </p>
|
|
527
|
+
*/
|
|
528
|
+
PipelineSummaries?: PipelineSummary[];
|
|
529
|
+
/**
|
|
530
|
+
* <p>If the result of the previous <code>ListPipelines</code> request was truncated,
|
|
531
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of pipelines, use the token in the next request.</p>
|
|
532
|
+
*/
|
|
533
|
+
NextToken?: string;
|
|
534
|
+
}
|
|
535
|
+
export declare namespace ListPipelinesResponse {
|
|
536
|
+
/**
|
|
537
|
+
* @internal
|
|
538
|
+
*/
|
|
539
|
+
const filterSensitiveLog: (obj: ListPipelinesResponse) => any;
|
|
540
|
+
}
|
|
541
|
+
export interface ListProcessingJobsRequest {
|
|
542
|
+
/**
|
|
543
|
+
* <p>A filter that returns only processing jobs created after the specified time.</p>
|
|
544
|
+
*/
|
|
545
|
+
CreationTimeAfter?: Date;
|
|
546
|
+
/**
|
|
547
|
+
* <p>A filter that returns only processing jobs created after the specified time.</p>
|
|
548
|
+
*/
|
|
549
|
+
CreationTimeBefore?: Date;
|
|
550
|
+
/**
|
|
551
|
+
* <p>A filter that returns only processing jobs modified after the specified time.</p>
|
|
552
|
+
*/
|
|
553
|
+
LastModifiedTimeAfter?: Date;
|
|
554
|
+
/**
|
|
555
|
+
* <p>A filter that returns only processing jobs modified before the specified time.</p>
|
|
556
|
+
*/
|
|
557
|
+
LastModifiedTimeBefore?: Date;
|
|
558
|
+
/**
|
|
559
|
+
* <p>A string in the processing job name. This filter returns only processing jobs whose
|
|
560
|
+
* name contains the specified string.</p>
|
|
561
|
+
*/
|
|
562
|
+
NameContains?: string;
|
|
563
|
+
/**
|
|
564
|
+
* <p>A filter that retrieves only processing jobs with a specific status.</p>
|
|
565
|
+
*/
|
|
566
|
+
StatusEquals?: ProcessingJobStatus | string;
|
|
567
|
+
/**
|
|
568
|
+
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
569
|
+
*/
|
|
570
|
+
SortBy?: SortBy | string;
|
|
571
|
+
/**
|
|
572
|
+
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
573
|
+
*/
|
|
574
|
+
SortOrder?: SortOrder | string;
|
|
575
|
+
/**
|
|
576
|
+
* <p>If the result of the previous <code>ListProcessingJobs</code> request was truncated,
|
|
577
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of processing
|
|
578
|
+
* jobs, use the token in the next request.</p>
|
|
579
|
+
*/
|
|
580
|
+
NextToken?: string;
|
|
581
|
+
/**
|
|
582
|
+
* <p>The maximum number of processing jobs to return in the response.</p>
|
|
583
|
+
*/
|
|
584
|
+
MaxResults?: number;
|
|
585
|
+
}
|
|
586
|
+
export declare namespace ListProcessingJobsRequest {
|
|
587
|
+
/**
|
|
588
|
+
* @internal
|
|
589
|
+
*/
|
|
590
|
+
const filterSensitiveLog: (obj: ListProcessingJobsRequest) => any;
|
|
591
|
+
}
|
|
592
|
+
/**
|
|
593
|
+
* <p>Summary of information about a processing job.</p>
|
|
594
|
+
*/
|
|
595
|
+
export interface ProcessingJobSummary {
|
|
596
|
+
/**
|
|
597
|
+
* <p>The name of the processing job.</p>
|
|
598
|
+
*/
|
|
599
|
+
ProcessingJobName: string | undefined;
|
|
600
|
+
/**
|
|
601
|
+
* <p>The Amazon Resource Name (ARN) of the processing job..</p>
|
|
602
|
+
*/
|
|
603
|
+
ProcessingJobArn: string | undefined;
|
|
604
|
+
/**
|
|
605
|
+
* <p>The time at which the processing job was created.</p>
|
|
606
|
+
*/
|
|
607
|
+
CreationTime: Date | undefined;
|
|
608
|
+
/**
|
|
609
|
+
* <p>The time at which the processing job completed.</p>
|
|
610
|
+
*/
|
|
611
|
+
ProcessingEndTime?: Date;
|
|
612
|
+
/**
|
|
613
|
+
* <p>A timestamp that indicates the last time the processing job was modified.</p>
|
|
614
|
+
*/
|
|
615
|
+
LastModifiedTime?: Date;
|
|
616
|
+
/**
|
|
617
|
+
* <p>The status of the processing job.</p>
|
|
618
|
+
*/
|
|
619
|
+
ProcessingJobStatus: ProcessingJobStatus | string | undefined;
|
|
620
|
+
/**
|
|
621
|
+
* <p>A string, up to one KB in size, that contains the reason a processing job failed, if
|
|
622
|
+
* it failed.</p>
|
|
623
|
+
*/
|
|
624
|
+
FailureReason?: string;
|
|
625
|
+
/**
|
|
626
|
+
* <p>An optional string, up to one KB in size, that contains metadata from the processing
|
|
627
|
+
* container when the processing job exits.</p>
|
|
628
|
+
*/
|
|
629
|
+
ExitMessage?: string;
|
|
630
|
+
}
|
|
631
|
+
export declare namespace ProcessingJobSummary {
|
|
632
|
+
/**
|
|
633
|
+
* @internal
|
|
634
|
+
*/
|
|
635
|
+
const filterSensitiveLog: (obj: ProcessingJobSummary) => any;
|
|
636
|
+
}
|
|
637
|
+
export interface ListProcessingJobsResponse {
|
|
638
|
+
/**
|
|
639
|
+
* <p>An array of <code>ProcessingJobSummary</code> objects, each listing a processing
|
|
640
|
+
* job.</p>
|
|
641
|
+
*/
|
|
642
|
+
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
643
|
+
/**
|
|
644
|
+
* <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of
|
|
645
|
+
* processing jobs, use it in the subsequent request.</p>
|
|
646
|
+
*/
|
|
647
|
+
NextToken?: string;
|
|
648
|
+
}
|
|
649
|
+
export declare namespace ListProcessingJobsResponse {
|
|
650
|
+
/**
|
|
651
|
+
* @internal
|
|
652
|
+
*/
|
|
653
|
+
const filterSensitiveLog: (obj: ListProcessingJobsResponse) => any;
|
|
654
|
+
}
|
|
4
655
|
export declare enum ProjectSortBy {
|
|
5
656
|
CREATION_TIME = "CreationTime",
|
|
6
657
|
NAME = "Name"
|
|
@@ -102,6 +753,50 @@ export declare namespace ListProjectsOutput {
|
|
|
102
753
|
*/
|
|
103
754
|
const filterSensitiveLog: (obj: ListProjectsOutput) => any;
|
|
104
755
|
}
|
|
756
|
+
export interface ListStageDevicesRequest {
|
|
757
|
+
/**
|
|
758
|
+
* <p>The response from the last list when returning a list large enough to neeed tokening.</p>
|
|
759
|
+
*/
|
|
760
|
+
NextToken?: string;
|
|
761
|
+
/**
|
|
762
|
+
* <p>The maximum number of requests to select.</p>
|
|
763
|
+
*/
|
|
764
|
+
MaxResults?: number;
|
|
765
|
+
/**
|
|
766
|
+
* <p>The name of the edge deployment plan.</p>
|
|
767
|
+
*/
|
|
768
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
769
|
+
/**
|
|
770
|
+
* <p>Toggle for excluding devices deployed in other stages.</p>
|
|
771
|
+
*/
|
|
772
|
+
ExcludeDevicesDeployedInOtherStage?: boolean;
|
|
773
|
+
/**
|
|
774
|
+
* <p>The name of the stage in the deployment.</p>
|
|
775
|
+
*/
|
|
776
|
+
StageName: string | undefined;
|
|
777
|
+
}
|
|
778
|
+
export declare namespace ListStageDevicesRequest {
|
|
779
|
+
/**
|
|
780
|
+
* @internal
|
|
781
|
+
*/
|
|
782
|
+
const filterSensitiveLog: (obj: ListStageDevicesRequest) => any;
|
|
783
|
+
}
|
|
784
|
+
export interface ListStageDevicesResponse {
|
|
785
|
+
/**
|
|
786
|
+
* <p>List of summaries of devices allocated to the stage.</p>
|
|
787
|
+
*/
|
|
788
|
+
DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
|
|
789
|
+
/**
|
|
790
|
+
* <p>The token to use when calling the next page of results.</p>
|
|
791
|
+
*/
|
|
792
|
+
NextToken?: string;
|
|
793
|
+
}
|
|
794
|
+
export declare namespace ListStageDevicesResponse {
|
|
795
|
+
/**
|
|
796
|
+
* @internal
|
|
797
|
+
*/
|
|
798
|
+
const filterSensitiveLog: (obj: ListStageDevicesResponse) => any;
|
|
799
|
+
}
|
|
105
800
|
export declare enum StudioLifecycleConfigSortKey {
|
|
106
801
|
CreationTime = "CreationTime",
|
|
107
802
|
LastModifiedTime = "LastModifiedTime",
|
|
@@ -2825,6 +3520,22 @@ export declare namespace SendPipelineExecutionStepSuccessResponse {
|
|
|
2825
3520
|
*/
|
|
2826
3521
|
const filterSensitiveLog: (obj: SendPipelineExecutionStepSuccessResponse) => any;
|
|
2827
3522
|
}
|
|
3523
|
+
export interface StartEdgeDeploymentStageRequest {
|
|
3524
|
+
/**
|
|
3525
|
+
* <p>The name of the edge deployment plan to start.</p>
|
|
3526
|
+
*/
|
|
3527
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
3528
|
+
/**
|
|
3529
|
+
* <p>The name of the stage to start.</p>
|
|
3530
|
+
*/
|
|
3531
|
+
StageName: string | undefined;
|
|
3532
|
+
}
|
|
3533
|
+
export declare namespace StartEdgeDeploymentStageRequest {
|
|
3534
|
+
/**
|
|
3535
|
+
* @internal
|
|
3536
|
+
*/
|
|
3537
|
+
const filterSensitiveLog: (obj: StartEdgeDeploymentStageRequest) => any;
|
|
3538
|
+
}
|
|
2828
3539
|
export interface StartMonitoringScheduleRequest {
|
|
2829
3540
|
/**
|
|
2830
3541
|
* <p>The name of the schedule to start.</p>
|
|
@@ -2919,6 +3630,22 @@ export declare namespace StopCompilationJobRequest {
|
|
|
2919
3630
|
*/
|
|
2920
3631
|
const filterSensitiveLog: (obj: StopCompilationJobRequest) => any;
|
|
2921
3632
|
}
|
|
3633
|
+
export interface StopEdgeDeploymentStageRequest {
|
|
3634
|
+
/**
|
|
3635
|
+
* <p>The name of the edge deployment plan to stop.</p>
|
|
3636
|
+
*/
|
|
3637
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
3638
|
+
/**
|
|
3639
|
+
* <p>The name of the stage to stop.</p>
|
|
3640
|
+
*/
|
|
3641
|
+
StageName: string | undefined;
|
|
3642
|
+
}
|
|
3643
|
+
export declare namespace StopEdgeDeploymentStageRequest {
|
|
3644
|
+
/**
|
|
3645
|
+
* @internal
|
|
3646
|
+
*/
|
|
3647
|
+
const filterSensitiveLog: (obj: StopEdgeDeploymentStageRequest) => any;
|
|
3648
|
+
}
|
|
2922
3649
|
export interface StopEdgePackagingJobRequest {
|
|
2923
3650
|
/**
|
|
2924
3651
|
* <p>The name of the edge packaging job.</p>
|