@aws-sdk/client-data-pipeline 3.296.0 → 3.298.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/dist-cjs/commands/ActivatePipelineCommand.js +2 -3
- package/dist-cjs/commands/AddTagsCommand.js +2 -3
- package/dist-cjs/commands/CreatePipelineCommand.js +2 -3
- package/dist-cjs/commands/DeactivatePipelineCommand.js +2 -3
- package/dist-cjs/commands/DeletePipelineCommand.js +2 -3
- package/dist-cjs/commands/DescribeObjectsCommand.js +2 -3
- package/dist-cjs/commands/DescribePipelinesCommand.js +2 -3
- package/dist-cjs/commands/EvaluateExpressionCommand.js +2 -3
- package/dist-cjs/commands/GetPipelineDefinitionCommand.js +2 -3
- package/dist-cjs/commands/ListPipelinesCommand.js +2 -3
- package/dist-cjs/commands/PollForTaskCommand.js +2 -3
- package/dist-cjs/commands/PutPipelineDefinitionCommand.js +2 -3
- package/dist-cjs/commands/QueryObjectsCommand.js +2 -3
- package/dist-cjs/commands/RemoveTagsCommand.js +2 -3
- package/dist-cjs/commands/ReportTaskProgressCommand.js +2 -3
- package/dist-cjs/commands/ReportTaskRunnerHeartbeatCommand.js +2 -3
- package/dist-cjs/commands/SetStatusCommand.js +2 -3
- package/dist-cjs/commands/SetTaskStatusCommand.js +2 -3
- package/dist-cjs/commands/ValidatePipelineDefinitionCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -206
- package/dist-es/commands/ActivatePipelineCommand.js +2 -3
- package/dist-es/commands/AddTagsCommand.js +2 -3
- package/dist-es/commands/CreatePipelineCommand.js +2 -3
- package/dist-es/commands/DeactivatePipelineCommand.js +2 -3
- package/dist-es/commands/DeletePipelineCommand.js +2 -3
- package/dist-es/commands/DescribeObjectsCommand.js +2 -3
- package/dist-es/commands/DescribePipelinesCommand.js +2 -3
- package/dist-es/commands/EvaluateExpressionCommand.js +2 -3
- package/dist-es/commands/GetPipelineDefinitionCommand.js +2 -3
- package/dist-es/commands/ListPipelinesCommand.js +2 -3
- package/dist-es/commands/PollForTaskCommand.js +2 -3
- package/dist-es/commands/PutPipelineDefinitionCommand.js +2 -3
- package/dist-es/commands/QueryObjectsCommand.js +2 -3
- package/dist-es/commands/RemoveTagsCommand.js +2 -3
- package/dist-es/commands/ReportTaskProgressCommand.js +2 -3
- package/dist-es/commands/ReportTaskRunnerHeartbeatCommand.js +2 -3
- package/dist-es/commands/SetStatusCommand.js +2 -3
- package/dist-es/commands/SetTaskStatusCommand.js +2 -3
- package/dist-es/commands/ValidatePipelineDefinitionCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -153
- package/dist-types/DataPipeline.d.ts +284 -264
- package/dist-types/DataPipelineClient.d.ts +24 -4
- package/dist-types/commands/ActivatePipelineCommand.d.ts +18 -2
- package/dist-types/commands/AddTagsCommand.d.ts +16 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +19 -3
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +17 -1
- package/dist-types/commands/DescribeObjectsCommand.d.ts +40 -24
- package/dist-types/commands/DescribePipelinesCommand.d.ts +42 -26
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +19 -3
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +43 -27
- package/dist-types/commands/ListPipelinesCommand.d.ts +23 -7
- package/dist-types/commands/PollForTaskCommand.d.ts +56 -40
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +71 -55
- package/dist-types/commands/QueryObjectsCommand.d.ts +22 -6
- package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +21 -5
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +19 -3
- package/dist-types/commands/SetStatusCommand.d.ts +18 -2
- package/dist-types/commands/SetTaskStatusCommand.d.ts +19 -3
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +73 -57
- package/dist-types/models/DataPipelineServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +62 -204
- package/dist-types/pagination/DescribeObjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +3 -0
- package/dist-types/pagination/QueryObjectsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -139
- package/package.json +4 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>A value or list of parameter values. </p>
|
|
5
6
|
*/
|
|
6
7
|
export interface ParameterValue {
|
|
@@ -14,6 +15,7 @@ export interface ParameterValue {
|
|
|
14
15
|
stringValue: string | undefined;
|
|
15
16
|
}
|
|
16
17
|
/**
|
|
18
|
+
* @public
|
|
17
19
|
* <p>Contains the parameters for ActivatePipeline.</p>
|
|
18
20
|
*/
|
|
19
21
|
export interface ActivatePipelineInput {
|
|
@@ -31,11 +33,13 @@ export interface ActivatePipelineInput {
|
|
|
31
33
|
startTimestamp?: Date;
|
|
32
34
|
}
|
|
33
35
|
/**
|
|
36
|
+
* @public
|
|
34
37
|
* <p>Contains the output of ActivatePipeline.</p>
|
|
35
38
|
*/
|
|
36
39
|
export interface ActivatePipelineOutput {
|
|
37
40
|
}
|
|
38
41
|
/**
|
|
42
|
+
* @public
|
|
39
43
|
* <p>An internal service error occurred.</p>
|
|
40
44
|
*/
|
|
41
45
|
export declare class InternalServiceError extends __BaseException {
|
|
@@ -47,6 +51,7 @@ export declare class InternalServiceError extends __BaseException {
|
|
|
47
51
|
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
48
52
|
}
|
|
49
53
|
/**
|
|
54
|
+
* @public
|
|
50
55
|
* <p>The request was not valid. Verify that your request was properly formatted, that the signature was generated with the correct credentials, and that you haven't exceeded any of the service limits for your account.</p>
|
|
51
56
|
*/
|
|
52
57
|
export declare class InvalidRequestException extends __BaseException {
|
|
@@ -58,6 +63,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
58
63
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
59
64
|
}
|
|
60
65
|
/**
|
|
66
|
+
* @public
|
|
61
67
|
* <p>The specified pipeline has been deleted.</p>
|
|
62
68
|
*/
|
|
63
69
|
export declare class PipelineDeletedException extends __BaseException {
|
|
@@ -69,6 +75,7 @@ export declare class PipelineDeletedException extends __BaseException {
|
|
|
69
75
|
constructor(opts: __ExceptionOptionType<PipelineDeletedException, __BaseException>);
|
|
70
76
|
}
|
|
71
77
|
/**
|
|
78
|
+
* @public
|
|
72
79
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
73
80
|
*/
|
|
74
81
|
export declare class PipelineNotFoundException extends __BaseException {
|
|
@@ -80,6 +87,7 @@ export declare class PipelineNotFoundException extends __BaseException {
|
|
|
80
87
|
constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
|
|
81
88
|
}
|
|
82
89
|
/**
|
|
90
|
+
* @public
|
|
83
91
|
* <p>Tags are key/value pairs defined by a user and associated with a pipeline to control access. AWS Data Pipeline allows you to associate ten tags per pipeline.
|
|
84
92
|
* For more information, see <a href="http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html">Controlling User Access to Pipelines</a> in the <i>AWS Data Pipeline Developer Guide</i>.</p>
|
|
85
93
|
*/
|
|
@@ -96,6 +104,7 @@ export interface Tag {
|
|
|
96
104
|
value: string | undefined;
|
|
97
105
|
}
|
|
98
106
|
/**
|
|
107
|
+
* @public
|
|
99
108
|
* <p>Contains the parameters for AddTags.</p>
|
|
100
109
|
*/
|
|
101
110
|
export interface AddTagsInput {
|
|
@@ -109,11 +118,13 @@ export interface AddTagsInput {
|
|
|
109
118
|
tags: Tag[] | undefined;
|
|
110
119
|
}
|
|
111
120
|
/**
|
|
121
|
+
* @public
|
|
112
122
|
* <p>Contains the output of AddTags.</p>
|
|
113
123
|
*/
|
|
114
124
|
export interface AddTagsOutput {
|
|
115
125
|
}
|
|
116
126
|
/**
|
|
127
|
+
* @public
|
|
117
128
|
* <p>Contains the parameters for CreatePipeline.</p>
|
|
118
129
|
*/
|
|
119
130
|
export interface CreatePipelineInput {
|
|
@@ -145,6 +156,7 @@ export interface CreatePipelineInput {
|
|
|
145
156
|
tags?: Tag[];
|
|
146
157
|
}
|
|
147
158
|
/**
|
|
159
|
+
* @public
|
|
148
160
|
* <p>Contains the output of CreatePipeline.</p>
|
|
149
161
|
*/
|
|
150
162
|
export interface CreatePipelineOutput {
|
|
@@ -154,6 +166,7 @@ export interface CreatePipelineOutput {
|
|
|
154
166
|
pipelineId: string | undefined;
|
|
155
167
|
}
|
|
156
168
|
/**
|
|
169
|
+
* @public
|
|
157
170
|
* <p>Contains the parameters for DeactivatePipeline.</p>
|
|
158
171
|
*/
|
|
159
172
|
export interface DeactivatePipelineInput {
|
|
@@ -170,11 +183,13 @@ export interface DeactivatePipelineInput {
|
|
|
170
183
|
cancelActive?: boolean;
|
|
171
184
|
}
|
|
172
185
|
/**
|
|
186
|
+
* @public
|
|
173
187
|
* <p>Contains the output of DeactivatePipeline.</p>
|
|
174
188
|
*/
|
|
175
189
|
export interface DeactivatePipelineOutput {
|
|
176
190
|
}
|
|
177
191
|
/**
|
|
192
|
+
* @public
|
|
178
193
|
* <p>Contains the parameters for DeletePipeline.</p>
|
|
179
194
|
*/
|
|
180
195
|
export interface DeletePipelineInput {
|
|
@@ -184,6 +199,7 @@ export interface DeletePipelineInput {
|
|
|
184
199
|
pipelineId: string | undefined;
|
|
185
200
|
}
|
|
186
201
|
/**
|
|
202
|
+
* @public
|
|
187
203
|
* <p>Contains the parameters for DescribeObjects.</p>
|
|
188
204
|
*/
|
|
189
205
|
export interface DescribeObjectsInput {
|
|
@@ -207,6 +223,7 @@ export interface DescribeObjectsInput {
|
|
|
207
223
|
marker?: string;
|
|
208
224
|
}
|
|
209
225
|
/**
|
|
226
|
+
* @public
|
|
210
227
|
* <p>A key-value pair that describes a property of a pipeline object. The value is specified as either a string value (<code>StringValue</code>) or a reference to another object (<code>RefValue</code>) but not as both.</p>
|
|
211
228
|
*/
|
|
212
229
|
export interface Field {
|
|
@@ -224,6 +241,7 @@ export interface Field {
|
|
|
224
241
|
refValue?: string;
|
|
225
242
|
}
|
|
226
243
|
/**
|
|
244
|
+
* @public
|
|
227
245
|
* <p>Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.</p>
|
|
228
246
|
*/
|
|
229
247
|
export interface PipelineObject {
|
|
@@ -241,6 +259,7 @@ export interface PipelineObject {
|
|
|
241
259
|
fields: Field[] | undefined;
|
|
242
260
|
}
|
|
243
261
|
/**
|
|
262
|
+
* @public
|
|
244
263
|
* <p>Contains the output of DescribeObjects.</p>
|
|
245
264
|
*/
|
|
246
265
|
export interface DescribeObjectsOutput {
|
|
@@ -259,6 +278,7 @@ export interface DescribeObjectsOutput {
|
|
|
259
278
|
hasMoreResults?: boolean;
|
|
260
279
|
}
|
|
261
280
|
/**
|
|
281
|
+
* @public
|
|
262
282
|
* <p>Contains the parameters for DescribePipelines.</p>
|
|
263
283
|
*/
|
|
264
284
|
export interface DescribePipelinesInput {
|
|
@@ -269,6 +289,7 @@ export interface DescribePipelinesInput {
|
|
|
269
289
|
pipelineIds: string[] | undefined;
|
|
270
290
|
}
|
|
271
291
|
/**
|
|
292
|
+
* @public
|
|
272
293
|
* <p>Contains pipeline metadata.</p>
|
|
273
294
|
*/
|
|
274
295
|
export interface PipelineDescription {
|
|
@@ -295,6 +316,7 @@ export interface PipelineDescription {
|
|
|
295
316
|
tags?: Tag[];
|
|
296
317
|
}
|
|
297
318
|
/**
|
|
319
|
+
* @public
|
|
298
320
|
* <p>Contains the output of DescribePipelines.</p>
|
|
299
321
|
*/
|
|
300
322
|
export interface DescribePipelinesOutput {
|
|
@@ -304,6 +326,7 @@ export interface DescribePipelinesOutput {
|
|
|
304
326
|
pipelineDescriptionList: PipelineDescription[] | undefined;
|
|
305
327
|
}
|
|
306
328
|
/**
|
|
329
|
+
* @public
|
|
307
330
|
* <p>Contains the parameters for EvaluateExpression.</p>
|
|
308
331
|
*/
|
|
309
332
|
export interface EvaluateExpressionInput {
|
|
@@ -321,6 +344,7 @@ export interface EvaluateExpressionInput {
|
|
|
321
344
|
expression: string | undefined;
|
|
322
345
|
}
|
|
323
346
|
/**
|
|
347
|
+
* @public
|
|
324
348
|
* <p>Contains the output of EvaluateExpression.</p>
|
|
325
349
|
*/
|
|
326
350
|
export interface EvaluateExpressionOutput {
|
|
@@ -330,6 +354,7 @@ export interface EvaluateExpressionOutput {
|
|
|
330
354
|
evaluatedExpression: string | undefined;
|
|
331
355
|
}
|
|
332
356
|
/**
|
|
357
|
+
* @public
|
|
333
358
|
* <p>The specified task was not found. </p>
|
|
334
359
|
*/
|
|
335
360
|
export declare class TaskNotFoundException extends __BaseException {
|
|
@@ -341,6 +366,7 @@ export declare class TaskNotFoundException extends __BaseException {
|
|
|
341
366
|
constructor(opts: __ExceptionOptionType<TaskNotFoundException, __BaseException>);
|
|
342
367
|
}
|
|
343
368
|
/**
|
|
369
|
+
* @public
|
|
344
370
|
* <p>Contains the parameters for GetPipelineDefinition.</p>
|
|
345
371
|
*/
|
|
346
372
|
export interface GetPipelineDefinitionInput {
|
|
@@ -356,6 +382,7 @@ export interface GetPipelineDefinitionInput {
|
|
|
356
382
|
version?: string;
|
|
357
383
|
}
|
|
358
384
|
/**
|
|
385
|
+
* @public
|
|
359
386
|
* <p>The attributes allowed or specified with a parameter object.</p>
|
|
360
387
|
*/
|
|
361
388
|
export interface ParameterAttribute {
|
|
@@ -369,6 +396,7 @@ export interface ParameterAttribute {
|
|
|
369
396
|
stringValue: string | undefined;
|
|
370
397
|
}
|
|
371
398
|
/**
|
|
399
|
+
* @public
|
|
372
400
|
* <p>Contains information about a parameter object.</p>
|
|
373
401
|
*/
|
|
374
402
|
export interface ParameterObject {
|
|
@@ -382,6 +410,7 @@ export interface ParameterObject {
|
|
|
382
410
|
attributes: ParameterAttribute[] | undefined;
|
|
383
411
|
}
|
|
384
412
|
/**
|
|
413
|
+
* @public
|
|
385
414
|
* <p>Contains the output of GetPipelineDefinition.</p>
|
|
386
415
|
*/
|
|
387
416
|
export interface GetPipelineDefinitionOutput {
|
|
@@ -399,6 +428,7 @@ export interface GetPipelineDefinitionOutput {
|
|
|
399
428
|
parameterValues?: ParameterValue[];
|
|
400
429
|
}
|
|
401
430
|
/**
|
|
431
|
+
* @public
|
|
402
432
|
* <p>Contains the parameters for ListPipelines.</p>
|
|
403
433
|
*/
|
|
404
434
|
export interface ListPipelinesInput {
|
|
@@ -410,6 +440,7 @@ export interface ListPipelinesInput {
|
|
|
410
440
|
marker?: string;
|
|
411
441
|
}
|
|
412
442
|
/**
|
|
443
|
+
* @public
|
|
413
444
|
* <p>Contains the name and identifier of a pipeline.</p>
|
|
414
445
|
*/
|
|
415
446
|
export interface PipelineIdName {
|
|
@@ -423,6 +454,7 @@ export interface PipelineIdName {
|
|
|
423
454
|
name?: string;
|
|
424
455
|
}
|
|
425
456
|
/**
|
|
457
|
+
* @public
|
|
426
458
|
* <p>Contains the output of ListPipelines.</p>
|
|
427
459
|
*/
|
|
428
460
|
export interface ListPipelinesOutput {
|
|
@@ -442,6 +474,7 @@ export interface ListPipelinesOutput {
|
|
|
442
474
|
hasMoreResults?: boolean;
|
|
443
475
|
}
|
|
444
476
|
/**
|
|
477
|
+
* @public
|
|
445
478
|
* <p><p>Identity information for the EC2 instance that is hosting the task runner. You can get this value by calling a metadata URI from the EC2 instance.
|
|
446
479
|
* For more information, see <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html">Instance Metadata</a> in the <i>Amazon Elastic Compute Cloud User Guide.</i>
|
|
447
480
|
* Passing in this value proves that your task runner is running on an EC2 instance, and ensures the proper AWS Data Pipeline service charges are applied to your pipeline.</p></p>
|
|
@@ -457,6 +490,7 @@ export interface InstanceIdentity {
|
|
|
457
490
|
signature?: string;
|
|
458
491
|
}
|
|
459
492
|
/**
|
|
493
|
+
* @public
|
|
460
494
|
* <p>Contains the parameters for PollForTask.</p>
|
|
461
495
|
*/
|
|
462
496
|
export interface PollForTaskInput {
|
|
@@ -476,6 +510,7 @@ export interface PollForTaskInput {
|
|
|
476
510
|
instanceIdentity?: InstanceIdentity;
|
|
477
511
|
}
|
|
478
512
|
/**
|
|
513
|
+
* @public
|
|
479
514
|
* <p>Contains information about a pipeline task that is assigned to a task runner.</p>
|
|
480
515
|
*/
|
|
481
516
|
export interface TaskObject {
|
|
@@ -497,6 +532,7 @@ export interface TaskObject {
|
|
|
497
532
|
objects?: Record<string, PipelineObject>;
|
|
498
533
|
}
|
|
499
534
|
/**
|
|
535
|
+
* @public
|
|
500
536
|
* <p>Contains the output of PollForTask.</p>
|
|
501
537
|
*/
|
|
502
538
|
export interface PollForTaskOutput {
|
|
@@ -508,6 +544,7 @@ export interface PollForTaskOutput {
|
|
|
508
544
|
taskObject?: TaskObject;
|
|
509
545
|
}
|
|
510
546
|
/**
|
|
547
|
+
* @public
|
|
511
548
|
* <p>Contains the parameters for PutPipelineDefinition.</p>
|
|
512
549
|
*/
|
|
513
550
|
export interface PutPipelineDefinitionInput {
|
|
@@ -529,6 +566,7 @@ export interface PutPipelineDefinitionInput {
|
|
|
529
566
|
parameterValues?: ParameterValue[];
|
|
530
567
|
}
|
|
531
568
|
/**
|
|
569
|
+
* @public
|
|
532
570
|
* <p>Defines a validation error. Validation errors prevent pipeline activation. The set of validation errors that can be returned are defined by AWS Data Pipeline.</p>
|
|
533
571
|
*/
|
|
534
572
|
export interface ValidationError {
|
|
@@ -542,6 +580,7 @@ export interface ValidationError {
|
|
|
542
580
|
errors?: string[];
|
|
543
581
|
}
|
|
544
582
|
/**
|
|
583
|
+
* @public
|
|
545
584
|
* <p>Defines a validation warning. Validation warnings do not prevent pipeline activation. The set of validation warnings that can be returned are defined by AWS Data Pipeline.</p>
|
|
546
585
|
*/
|
|
547
586
|
export interface ValidationWarning {
|
|
@@ -555,6 +594,7 @@ export interface ValidationWarning {
|
|
|
555
594
|
warnings?: string[];
|
|
556
595
|
}
|
|
557
596
|
/**
|
|
597
|
+
* @public
|
|
558
598
|
* <p>Contains the output of PutPipelineDefinition.</p>
|
|
559
599
|
*/
|
|
560
600
|
export interface PutPipelineDefinitionOutput {
|
|
@@ -572,6 +612,9 @@ export interface PutPipelineDefinitionOutput {
|
|
|
572
612
|
*/
|
|
573
613
|
errored: boolean | undefined;
|
|
574
614
|
}
|
|
615
|
+
/**
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
575
618
|
export declare enum OperatorType {
|
|
576
619
|
Between = "BETWEEN",
|
|
577
620
|
Equal = "EQ",
|
|
@@ -580,6 +623,7 @@ export declare enum OperatorType {
|
|
|
580
623
|
ReferenceEqual = "REF_EQ"
|
|
581
624
|
}
|
|
582
625
|
/**
|
|
626
|
+
* @public
|
|
583
627
|
* <p>Contains a logical operation for comparing the value of a field with a specified value.</p>
|
|
584
628
|
*/
|
|
585
629
|
export interface Operator {
|
|
@@ -621,6 +665,7 @@ export interface Operator {
|
|
|
621
665
|
values?: string[];
|
|
622
666
|
}
|
|
623
667
|
/**
|
|
668
|
+
* @public
|
|
624
669
|
* <p>A comparision that is used to determine whether a query should return this object.</p>
|
|
625
670
|
*/
|
|
626
671
|
export interface Selector {
|
|
@@ -634,6 +679,7 @@ export interface Selector {
|
|
|
634
679
|
operator?: Operator;
|
|
635
680
|
}
|
|
636
681
|
/**
|
|
682
|
+
* @public
|
|
637
683
|
* <p>Defines the query to run against an object.</p>
|
|
638
684
|
*/
|
|
639
685
|
export interface Query {
|
|
@@ -643,6 +689,7 @@ export interface Query {
|
|
|
643
689
|
selectors?: Selector[];
|
|
644
690
|
}
|
|
645
691
|
/**
|
|
692
|
+
* @public
|
|
646
693
|
* <p>Contains the parameters for QueryObjects.</p>
|
|
647
694
|
*/
|
|
648
695
|
export interface QueryObjectsInput {
|
|
@@ -673,6 +720,7 @@ export interface QueryObjectsInput {
|
|
|
673
720
|
limit?: number;
|
|
674
721
|
}
|
|
675
722
|
/**
|
|
723
|
+
* @public
|
|
676
724
|
* <p>Contains the output of QueryObjects.</p>
|
|
677
725
|
*/
|
|
678
726
|
export interface QueryObjectsOutput {
|
|
@@ -691,6 +739,7 @@ export interface QueryObjectsOutput {
|
|
|
691
739
|
hasMoreResults?: boolean;
|
|
692
740
|
}
|
|
693
741
|
/**
|
|
742
|
+
* @public
|
|
694
743
|
* <p>Contains the parameters for RemoveTags.</p>
|
|
695
744
|
*/
|
|
696
745
|
export interface RemoveTagsInput {
|
|
@@ -704,11 +753,13 @@ export interface RemoveTagsInput {
|
|
|
704
753
|
tagKeys: string[] | undefined;
|
|
705
754
|
}
|
|
706
755
|
/**
|
|
756
|
+
* @public
|
|
707
757
|
* <p>Contains the output of RemoveTags.</p>
|
|
708
758
|
*/
|
|
709
759
|
export interface RemoveTagsOutput {
|
|
710
760
|
}
|
|
711
761
|
/**
|
|
762
|
+
* @public
|
|
712
763
|
* <p>Contains the parameters for ReportTaskProgress.</p>
|
|
713
764
|
*/
|
|
714
765
|
export interface ReportTaskProgressInput {
|
|
@@ -722,6 +773,7 @@ export interface ReportTaskProgressInput {
|
|
|
722
773
|
fields?: Field[];
|
|
723
774
|
}
|
|
724
775
|
/**
|
|
776
|
+
* @public
|
|
725
777
|
* <p>Contains the output of ReportTaskProgress.</p>
|
|
726
778
|
*/
|
|
727
779
|
export interface ReportTaskProgressOutput {
|
|
@@ -731,6 +783,7 @@ export interface ReportTaskProgressOutput {
|
|
|
731
783
|
canceled: boolean | undefined;
|
|
732
784
|
}
|
|
733
785
|
/**
|
|
786
|
+
* @public
|
|
734
787
|
* <p>Contains the parameters for ReportTaskRunnerHeartbeat.</p>
|
|
735
788
|
*/
|
|
736
789
|
export interface ReportTaskRunnerHeartbeatInput {
|
|
@@ -752,6 +805,7 @@ export interface ReportTaskRunnerHeartbeatInput {
|
|
|
752
805
|
hostname?: string;
|
|
753
806
|
}
|
|
754
807
|
/**
|
|
808
|
+
* @public
|
|
755
809
|
* <p>Contains the output of ReportTaskRunnerHeartbeat.</p>
|
|
756
810
|
*/
|
|
757
811
|
export interface ReportTaskRunnerHeartbeatOutput {
|
|
@@ -761,6 +815,7 @@ export interface ReportTaskRunnerHeartbeatOutput {
|
|
|
761
815
|
terminate: boolean | undefined;
|
|
762
816
|
}
|
|
763
817
|
/**
|
|
818
|
+
* @public
|
|
764
819
|
* <p>Contains the parameters for SetStatus.</p>
|
|
765
820
|
*/
|
|
766
821
|
export interface SetStatusInput {
|
|
@@ -778,12 +833,16 @@ export interface SetStatusInput {
|
|
|
778
833
|
*/
|
|
779
834
|
status: string | undefined;
|
|
780
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* @public
|
|
838
|
+
*/
|
|
781
839
|
export declare enum TaskStatus {
|
|
782
840
|
FAILED = "FAILED",
|
|
783
841
|
FALSE = "FALSE",
|
|
784
842
|
FINISHED = "FINISHED"
|
|
785
843
|
}
|
|
786
844
|
/**
|
|
845
|
+
* @public
|
|
787
846
|
* <p>Contains the parameters for SetTaskStatus.</p>
|
|
788
847
|
*/
|
|
789
848
|
export interface SetTaskStatusInput {
|
|
@@ -812,11 +871,13 @@ export interface SetTaskStatusInput {
|
|
|
812
871
|
errorStackTrace?: string;
|
|
813
872
|
}
|
|
814
873
|
/**
|
|
874
|
+
* @public
|
|
815
875
|
* <p>Contains the output of SetTaskStatus.</p>
|
|
816
876
|
*/
|
|
817
877
|
export interface SetTaskStatusOutput {
|
|
818
878
|
}
|
|
819
879
|
/**
|
|
880
|
+
* @public
|
|
820
881
|
* <p>Contains the parameters for ValidatePipelineDefinition.</p>
|
|
821
882
|
*/
|
|
822
883
|
export interface ValidatePipelineDefinitionInput {
|
|
@@ -838,6 +899,7 @@ export interface ValidatePipelineDefinitionInput {
|
|
|
838
899
|
parameterValues?: ParameterValue[];
|
|
839
900
|
}
|
|
840
901
|
/**
|
|
902
|
+
* @public
|
|
841
903
|
* <p>Contains the output of ValidatePipelineDefinition.</p>
|
|
842
904
|
*/
|
|
843
905
|
export interface ValidatePipelineDefinitionOutput {
|
|
@@ -854,207 +916,3 @@ export interface ValidatePipelineDefinitionOutput {
|
|
|
854
916
|
*/
|
|
855
917
|
errored: boolean | undefined;
|
|
856
918
|
}
|
|
857
|
-
/**
|
|
858
|
-
* @internal
|
|
859
|
-
*/
|
|
860
|
-
export declare const ParameterValueFilterSensitiveLog: (obj: ParameterValue) => any;
|
|
861
|
-
/**
|
|
862
|
-
* @internal
|
|
863
|
-
*/
|
|
864
|
-
export declare const ActivatePipelineInputFilterSensitiveLog: (obj: ActivatePipelineInput) => any;
|
|
865
|
-
/**
|
|
866
|
-
* @internal
|
|
867
|
-
*/
|
|
868
|
-
export declare const ActivatePipelineOutputFilterSensitiveLog: (obj: ActivatePipelineOutput) => any;
|
|
869
|
-
/**
|
|
870
|
-
* @internal
|
|
871
|
-
*/
|
|
872
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
873
|
-
/**
|
|
874
|
-
* @internal
|
|
875
|
-
*/
|
|
876
|
-
export declare const AddTagsInputFilterSensitiveLog: (obj: AddTagsInput) => any;
|
|
877
|
-
/**
|
|
878
|
-
* @internal
|
|
879
|
-
*/
|
|
880
|
-
export declare const AddTagsOutputFilterSensitiveLog: (obj: AddTagsOutput) => any;
|
|
881
|
-
/**
|
|
882
|
-
* @internal
|
|
883
|
-
*/
|
|
884
|
-
export declare const CreatePipelineInputFilterSensitiveLog: (obj: CreatePipelineInput) => any;
|
|
885
|
-
/**
|
|
886
|
-
* @internal
|
|
887
|
-
*/
|
|
888
|
-
export declare const CreatePipelineOutputFilterSensitiveLog: (obj: CreatePipelineOutput) => any;
|
|
889
|
-
/**
|
|
890
|
-
* @internal
|
|
891
|
-
*/
|
|
892
|
-
export declare const DeactivatePipelineInputFilterSensitiveLog: (obj: DeactivatePipelineInput) => any;
|
|
893
|
-
/**
|
|
894
|
-
* @internal
|
|
895
|
-
*/
|
|
896
|
-
export declare const DeactivatePipelineOutputFilterSensitiveLog: (obj: DeactivatePipelineOutput) => any;
|
|
897
|
-
/**
|
|
898
|
-
* @internal
|
|
899
|
-
*/
|
|
900
|
-
export declare const DeletePipelineInputFilterSensitiveLog: (obj: DeletePipelineInput) => any;
|
|
901
|
-
/**
|
|
902
|
-
* @internal
|
|
903
|
-
*/
|
|
904
|
-
export declare const DescribeObjectsInputFilterSensitiveLog: (obj: DescribeObjectsInput) => any;
|
|
905
|
-
/**
|
|
906
|
-
* @internal
|
|
907
|
-
*/
|
|
908
|
-
export declare const FieldFilterSensitiveLog: (obj: Field) => any;
|
|
909
|
-
/**
|
|
910
|
-
* @internal
|
|
911
|
-
*/
|
|
912
|
-
export declare const PipelineObjectFilterSensitiveLog: (obj: PipelineObject) => any;
|
|
913
|
-
/**
|
|
914
|
-
* @internal
|
|
915
|
-
*/
|
|
916
|
-
export declare const DescribeObjectsOutputFilterSensitiveLog: (obj: DescribeObjectsOutput) => any;
|
|
917
|
-
/**
|
|
918
|
-
* @internal
|
|
919
|
-
*/
|
|
920
|
-
export declare const DescribePipelinesInputFilterSensitiveLog: (obj: DescribePipelinesInput) => any;
|
|
921
|
-
/**
|
|
922
|
-
* @internal
|
|
923
|
-
*/
|
|
924
|
-
export declare const PipelineDescriptionFilterSensitiveLog: (obj: PipelineDescription) => any;
|
|
925
|
-
/**
|
|
926
|
-
* @internal
|
|
927
|
-
*/
|
|
928
|
-
export declare const DescribePipelinesOutputFilterSensitiveLog: (obj: DescribePipelinesOutput) => any;
|
|
929
|
-
/**
|
|
930
|
-
* @internal
|
|
931
|
-
*/
|
|
932
|
-
export declare const EvaluateExpressionInputFilterSensitiveLog: (obj: EvaluateExpressionInput) => any;
|
|
933
|
-
/**
|
|
934
|
-
* @internal
|
|
935
|
-
*/
|
|
936
|
-
export declare const EvaluateExpressionOutputFilterSensitiveLog: (obj: EvaluateExpressionOutput) => any;
|
|
937
|
-
/**
|
|
938
|
-
* @internal
|
|
939
|
-
*/
|
|
940
|
-
export declare const GetPipelineDefinitionInputFilterSensitiveLog: (obj: GetPipelineDefinitionInput) => any;
|
|
941
|
-
/**
|
|
942
|
-
* @internal
|
|
943
|
-
*/
|
|
944
|
-
export declare const ParameterAttributeFilterSensitiveLog: (obj: ParameterAttribute) => any;
|
|
945
|
-
/**
|
|
946
|
-
* @internal
|
|
947
|
-
*/
|
|
948
|
-
export declare const ParameterObjectFilterSensitiveLog: (obj: ParameterObject) => any;
|
|
949
|
-
/**
|
|
950
|
-
* @internal
|
|
951
|
-
*/
|
|
952
|
-
export declare const GetPipelineDefinitionOutputFilterSensitiveLog: (obj: GetPipelineDefinitionOutput) => any;
|
|
953
|
-
/**
|
|
954
|
-
* @internal
|
|
955
|
-
*/
|
|
956
|
-
export declare const ListPipelinesInputFilterSensitiveLog: (obj: ListPipelinesInput) => any;
|
|
957
|
-
/**
|
|
958
|
-
* @internal
|
|
959
|
-
*/
|
|
960
|
-
export declare const PipelineIdNameFilterSensitiveLog: (obj: PipelineIdName) => any;
|
|
961
|
-
/**
|
|
962
|
-
* @internal
|
|
963
|
-
*/
|
|
964
|
-
export declare const ListPipelinesOutputFilterSensitiveLog: (obj: ListPipelinesOutput) => any;
|
|
965
|
-
/**
|
|
966
|
-
* @internal
|
|
967
|
-
*/
|
|
968
|
-
export declare const InstanceIdentityFilterSensitiveLog: (obj: InstanceIdentity) => any;
|
|
969
|
-
/**
|
|
970
|
-
* @internal
|
|
971
|
-
*/
|
|
972
|
-
export declare const PollForTaskInputFilterSensitiveLog: (obj: PollForTaskInput) => any;
|
|
973
|
-
/**
|
|
974
|
-
* @internal
|
|
975
|
-
*/
|
|
976
|
-
export declare const TaskObjectFilterSensitiveLog: (obj: TaskObject) => any;
|
|
977
|
-
/**
|
|
978
|
-
* @internal
|
|
979
|
-
*/
|
|
980
|
-
export declare const PollForTaskOutputFilterSensitiveLog: (obj: PollForTaskOutput) => any;
|
|
981
|
-
/**
|
|
982
|
-
* @internal
|
|
983
|
-
*/
|
|
984
|
-
export declare const PutPipelineDefinitionInputFilterSensitiveLog: (obj: PutPipelineDefinitionInput) => any;
|
|
985
|
-
/**
|
|
986
|
-
* @internal
|
|
987
|
-
*/
|
|
988
|
-
export declare const ValidationErrorFilterSensitiveLog: (obj: ValidationError) => any;
|
|
989
|
-
/**
|
|
990
|
-
* @internal
|
|
991
|
-
*/
|
|
992
|
-
export declare const ValidationWarningFilterSensitiveLog: (obj: ValidationWarning) => any;
|
|
993
|
-
/**
|
|
994
|
-
* @internal
|
|
995
|
-
*/
|
|
996
|
-
export declare const PutPipelineDefinitionOutputFilterSensitiveLog: (obj: PutPipelineDefinitionOutput) => any;
|
|
997
|
-
/**
|
|
998
|
-
* @internal
|
|
999
|
-
*/
|
|
1000
|
-
export declare const OperatorFilterSensitiveLog: (obj: Operator) => any;
|
|
1001
|
-
/**
|
|
1002
|
-
* @internal
|
|
1003
|
-
*/
|
|
1004
|
-
export declare const SelectorFilterSensitiveLog: (obj: Selector) => any;
|
|
1005
|
-
/**
|
|
1006
|
-
* @internal
|
|
1007
|
-
*/
|
|
1008
|
-
export declare const QueryFilterSensitiveLog: (obj: Query) => any;
|
|
1009
|
-
/**
|
|
1010
|
-
* @internal
|
|
1011
|
-
*/
|
|
1012
|
-
export declare const QueryObjectsInputFilterSensitiveLog: (obj: QueryObjectsInput) => any;
|
|
1013
|
-
/**
|
|
1014
|
-
* @internal
|
|
1015
|
-
*/
|
|
1016
|
-
export declare const QueryObjectsOutputFilterSensitiveLog: (obj: QueryObjectsOutput) => any;
|
|
1017
|
-
/**
|
|
1018
|
-
* @internal
|
|
1019
|
-
*/
|
|
1020
|
-
export declare const RemoveTagsInputFilterSensitiveLog: (obj: RemoveTagsInput) => any;
|
|
1021
|
-
/**
|
|
1022
|
-
* @internal
|
|
1023
|
-
*/
|
|
1024
|
-
export declare const RemoveTagsOutputFilterSensitiveLog: (obj: RemoveTagsOutput) => any;
|
|
1025
|
-
/**
|
|
1026
|
-
* @internal
|
|
1027
|
-
*/
|
|
1028
|
-
export declare const ReportTaskProgressInputFilterSensitiveLog: (obj: ReportTaskProgressInput) => any;
|
|
1029
|
-
/**
|
|
1030
|
-
* @internal
|
|
1031
|
-
*/
|
|
1032
|
-
export declare const ReportTaskProgressOutputFilterSensitiveLog: (obj: ReportTaskProgressOutput) => any;
|
|
1033
|
-
/**
|
|
1034
|
-
* @internal
|
|
1035
|
-
*/
|
|
1036
|
-
export declare const ReportTaskRunnerHeartbeatInputFilterSensitiveLog: (obj: ReportTaskRunnerHeartbeatInput) => any;
|
|
1037
|
-
/**
|
|
1038
|
-
* @internal
|
|
1039
|
-
*/
|
|
1040
|
-
export declare const ReportTaskRunnerHeartbeatOutputFilterSensitiveLog: (obj: ReportTaskRunnerHeartbeatOutput) => any;
|
|
1041
|
-
/**
|
|
1042
|
-
* @internal
|
|
1043
|
-
*/
|
|
1044
|
-
export declare const SetStatusInputFilterSensitiveLog: (obj: SetStatusInput) => any;
|
|
1045
|
-
/**
|
|
1046
|
-
* @internal
|
|
1047
|
-
*/
|
|
1048
|
-
export declare const SetTaskStatusInputFilterSensitiveLog: (obj: SetTaskStatusInput) => any;
|
|
1049
|
-
/**
|
|
1050
|
-
* @internal
|
|
1051
|
-
*/
|
|
1052
|
-
export declare const SetTaskStatusOutputFilterSensitiveLog: (obj: SetTaskStatusOutput) => any;
|
|
1053
|
-
/**
|
|
1054
|
-
* @internal
|
|
1055
|
-
*/
|
|
1056
|
-
export declare const ValidatePipelineDefinitionInputFilterSensitiveLog: (obj: ValidatePipelineDefinitionInput) => any;
|
|
1057
|
-
/**
|
|
1058
|
-
* @internal
|
|
1059
|
-
*/
|
|
1060
|
-
export declare const ValidatePipelineDefinitionOutputFilterSensitiveLog: (obj: ValidatePipelineDefinitionOutput) => any;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeObjectsCommandInput, DescribeObjectsCommandOutput } from "../commands/DescribeObjectsCommand";
|
|
3
3
|
import { DataPipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeObjects(config: DataPipelinePaginationConfiguration, input: DescribeObjectsCommandInput, ...additionalArguments: any): Paginator<DescribeObjectsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "../commands/ListPipelinesCommand";
|
|
3
3
|
import { DataPipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListPipelines(config: DataPipelinePaginationConfiguration, input: ListPipelinesCommandInput, ...additionalArguments: any): Paginator<ListPipelinesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { QueryObjectsCommandInput, QueryObjectsCommandOutput } from "../commands/QueryObjectsCommand";
|
|
3
3
|
import { DataPipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateQueryObjects(config: DataPipelinePaginationConfiguration, input: QueryObjectsCommandInput, ...additionalArguments: any): Paginator<QueryObjectsCommandOutput>;
|