@aws-sdk/client-data-pipeline 3.687.0 → 3.692.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.
@@ -30,12 +30,12 @@ export interface ActivatePipelineInput {
30
30
  * <p>A list of parameter values to pass to the pipeline at activation.</p>
31
31
  * @public
32
32
  */
33
- parameterValues?: ParameterValue[];
33
+ parameterValues?: ParameterValue[] | undefined;
34
34
  /**
35
35
  * <p>The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.</p>
36
36
  * @public
37
37
  */
38
- startTimestamp?: Date;
38
+ startTimestamp?: Date | undefined;
39
39
  }
40
40
  /**
41
41
  * <p>Contains the output of ActivatePipeline.</p>
@@ -159,14 +159,14 @@ export interface CreatePipelineInput {
159
159
  * <p>The description for the pipeline.</p>
160
160
  * @public
161
161
  */
162
- description?: string;
162
+ description?: string | undefined;
163
163
  /**
164
164
  * <p>A list of tags to associate with the pipeline at creation. Tags let you control access to pipelines.
165
165
  * For more information, see <a href="http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html">Controlling User Access to Pipelines</a>
166
166
  * in the <i>AWS Data Pipeline Developer Guide</i>.</p>
167
167
  * @public
168
168
  */
169
- tags?: Tag[];
169
+ tags?: Tag[] | undefined;
170
170
  }
171
171
  /**
172
172
  * <p>Contains the output of CreatePipeline.</p>
@@ -196,7 +196,7 @@ export interface DeactivatePipelineInput {
196
196
  * running objects finish.</p>
197
197
  * @public
198
198
  */
199
- cancelActive?: boolean;
199
+ cancelActive?: boolean | undefined;
200
200
  }
201
201
  /**
202
202
  * <p>Contains the output of DeactivatePipeline.</p>
@@ -234,14 +234,14 @@ export interface DescribeObjectsInput {
234
234
  * <p>Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.</p>
235
235
  * @public
236
236
  */
237
- evaluateExpressions?: boolean;
237
+ evaluateExpressions?: boolean | undefined;
238
238
  /**
239
239
  * <p>The starting point for the results to be returned. For the first call, this value should be empty.
240
240
  * As long as there are more results, continue to call <code>DescribeObjects</code> with
241
241
  * the marker value from the previous call to retrieve the next set of results.</p>
242
242
  * @public
243
243
  */
244
- marker?: string;
244
+ marker?: string | undefined;
245
245
  }
246
246
  /**
247
247
  * <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>
@@ -257,12 +257,12 @@ export interface Field {
257
257
  * <p>The field value, expressed as a String.</p>
258
258
  * @public
259
259
  */
260
- stringValue?: string;
260
+ stringValue?: string | undefined;
261
261
  /**
262
262
  * <p>The field value, expressed as the identifier of another object.</p>
263
263
  * @public
264
264
  */
265
- refValue?: string;
265
+ refValue?: string | undefined;
266
266
  }
267
267
  /**
268
268
  * <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>
@@ -300,12 +300,12 @@ export interface DescribeObjectsOutput {
300
300
  * again with this marker value. If the value is null, there are no more results.</p>
301
301
  * @public
302
302
  */
303
- marker?: string;
303
+ marker?: string | undefined;
304
304
  /**
305
305
  * <p>Indicates whether there are more results to return.</p>
306
306
  * @public
307
307
  */
308
- hasMoreResults?: boolean;
308
+ hasMoreResults?: boolean | undefined;
309
309
  }
310
310
  /**
311
311
  * <p>Contains the parameters for DescribePipelines.</p>
@@ -343,13 +343,13 @@ export interface PipelineDescription {
343
343
  * <p>Description of the pipeline.</p>
344
344
  * @public
345
345
  */
346
- description?: string;
346
+ description?: string | undefined;
347
347
  /**
348
348
  * <p>A list of tags to associated with a pipeline. Tags let you control access to pipelines.
349
349
  * 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>
350
350
  * @public
351
351
  */
352
- tags?: Tag[];
352
+ tags?: Tag[] | undefined;
353
353
  }
354
354
  /**
355
355
  * <p>Contains the output of DescribePipelines.</p>
@@ -422,7 +422,7 @@ export interface GetPipelineDefinitionInput {
422
422
  * that was activated.</p>
423
423
  * @public
424
424
  */
425
- version?: string;
425
+ version?: string | undefined;
426
426
  }
427
427
  /**
428
428
  * <p>The attributes allowed or specified with a parameter object.</p>
@@ -465,17 +465,17 @@ export interface GetPipelineDefinitionOutput {
465
465
  * <p>The objects defined in the pipeline.</p>
466
466
  * @public
467
467
  */
468
- pipelineObjects?: PipelineObject[];
468
+ pipelineObjects?: PipelineObject[] | undefined;
469
469
  /**
470
470
  * <p>The parameter objects used in the pipeline definition.</p>
471
471
  * @public
472
472
  */
473
- parameterObjects?: ParameterObject[];
473
+ parameterObjects?: ParameterObject[] | undefined;
474
474
  /**
475
475
  * <p>The parameter values used in the pipeline definition.</p>
476
476
  * @public
477
477
  */
478
- parameterValues?: ParameterValue[];
478
+ parameterValues?: ParameterValue[] | undefined;
479
479
  }
480
480
  /**
481
481
  * <p>Contains the parameters for ListPipelines.</p>
@@ -488,7 +488,7 @@ export interface ListPipelinesInput {
488
488
  * the marker value from the previous call to retrieve the next set of results.</p>
489
489
  * @public
490
490
  */
491
- marker?: string;
491
+ marker?: string | undefined;
492
492
  }
493
493
  /**
494
494
  * <p>Contains the name and identifier of a pipeline.</p>
@@ -499,12 +499,12 @@ export interface PipelineIdName {
499
499
  * <p>The ID of the pipeline that was assigned by AWS Data Pipeline. This is a string of the form <code>df-297EG78HU43EEXAMPLE</code>.</p>
500
500
  * @public
501
501
  */
502
- id?: string;
502
+ id?: string | undefined;
503
503
  /**
504
504
  * <p>The name of the pipeline.</p>
505
505
  * @public
506
506
  */
507
- name?: string;
507
+ name?: string | undefined;
508
508
  }
509
509
  /**
510
510
  * <p>Contains the output of ListPipelines.</p>
@@ -522,12 +522,12 @@ export interface ListPipelinesOutput {
522
522
  * again with this marker value. If the value is null, there are no more results.</p>
523
523
  * @public
524
524
  */
525
- marker?: string;
525
+ marker?: string | undefined;
526
526
  /**
527
527
  * <p>Indicates whether there are more results that can be obtained by a subsequent call.</p>
528
528
  * @public
529
529
  */
530
- hasMoreResults?: boolean;
530
+ hasMoreResults?: boolean | undefined;
531
531
  }
532
532
  /**
533
533
  * <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.
@@ -540,12 +540,12 @@ export interface InstanceIdentity {
540
540
  * <p>A description of an EC2 instance that is generated when the instance is launched and exposed to the instance via the instance metadata service in the form of a JSON representation of an object.</p>
541
541
  * @public
542
542
  */
543
- document?: string;
543
+ document?: string | undefined;
544
544
  /**
545
545
  * <p>A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.</p>
546
546
  * @public
547
547
  */
548
- signature?: string;
548
+ signature?: string | undefined;
549
549
  }
550
550
  /**
551
551
  * <p>Contains the parameters for PollForTask.</p>
@@ -563,12 +563,12 @@ export interface PollForTaskInput {
563
563
  * <p>The public DNS name of the calling task runner.</p>
564
564
  * @public
565
565
  */
566
- hostname?: string;
566
+ hostname?: string | undefined;
567
567
  /**
568
568
  * <p>Identity information for the EC2 instance that is hosting the task runner. You can get this value from the instance using <code>http://169.254.169.254/latest/meta-data/instance-id</code>. 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> 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>
569
569
  * @public
570
570
  */
571
- instanceIdentity?: InstanceIdentity;
571
+ instanceIdentity?: InstanceIdentity | undefined;
572
572
  }
573
573
  /**
574
574
  * <p>Contains information about a pipeline task that is assigned to a task runner.</p>
@@ -579,22 +579,22 @@ export interface TaskObject {
579
579
  * <p>An internal identifier for the task. This ID is passed to the <a>SetTaskStatus</a> and <a>ReportTaskProgress</a> actions.</p>
580
580
  * @public
581
581
  */
582
- taskId?: string;
582
+ taskId?: string | undefined;
583
583
  /**
584
584
  * <p>The ID of the pipeline that provided the task.</p>
585
585
  * @public
586
586
  */
587
- pipelineId?: string;
587
+ pipelineId?: string | undefined;
588
588
  /**
589
589
  * <p>The ID of the pipeline task attempt object. AWS Data Pipeline uses this value to track how many times a task is attempted.</p>
590
590
  * @public
591
591
  */
592
- attemptId?: string;
592
+ attemptId?: string | undefined;
593
593
  /**
594
594
  * <p>Connection information for the location where the task runner will publish the output of the task.</p>
595
595
  * @public
596
596
  */
597
- objects?: Record<string, PipelineObject>;
597
+ objects?: Record<string, PipelineObject> | undefined;
598
598
  }
599
599
  /**
600
600
  * <p>Contains the output of PollForTask.</p>
@@ -607,7 +607,7 @@ export interface PollForTaskOutput {
607
607
  * and <a>SetTaskStatus</a>.</p>
608
608
  * @public
609
609
  */
610
- taskObject?: TaskObject;
610
+ taskObject?: TaskObject | undefined;
611
611
  }
612
612
  /**
613
613
  * <p>Contains the parameters for PutPipelineDefinition.</p>
@@ -628,12 +628,12 @@ export interface PutPipelineDefinitionInput {
628
628
  * <p>The parameter objects used with the pipeline.</p>
629
629
  * @public
630
630
  */
631
- parameterObjects?: ParameterObject[];
631
+ parameterObjects?: ParameterObject[] | undefined;
632
632
  /**
633
633
  * <p>The parameter values used with the pipeline.</p>
634
634
  * @public
635
635
  */
636
- parameterValues?: ParameterValue[];
636
+ parameterValues?: ParameterValue[] | undefined;
637
637
  }
638
638
  /**
639
639
  * <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>
@@ -644,12 +644,12 @@ export interface ValidationError {
644
644
  * <p>The identifier of the object that contains the validation error.</p>
645
645
  * @public
646
646
  */
647
- id?: string;
647
+ id?: string | undefined;
648
648
  /**
649
649
  * <p>A description of the validation error.</p>
650
650
  * @public
651
651
  */
652
- errors?: string[];
652
+ errors?: string[] | undefined;
653
653
  }
654
654
  /**
655
655
  * <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>
@@ -660,12 +660,12 @@ export interface ValidationWarning {
660
660
  * <p>The identifier of the object that contains the validation warning.</p>
661
661
  * @public
662
662
  */
663
- id?: string;
663
+ id?: string | undefined;
664
664
  /**
665
665
  * <p>A description of the validation warning.</p>
666
666
  * @public
667
667
  */
668
- warnings?: string[];
668
+ warnings?: string[] | undefined;
669
669
  }
670
670
  /**
671
671
  * <p>Contains the output of PutPipelineDefinition.</p>
@@ -676,12 +676,12 @@ export interface PutPipelineDefinitionOutput {
676
676
  * <p>The validation errors that are associated with the objects defined in <code>pipelineObjects</code>.</p>
677
677
  * @public
678
678
  */
679
- validationErrors?: ValidationError[];
679
+ validationErrors?: ValidationError[] | undefined;
680
680
  /**
681
681
  * <p>The validation warnings that are associated with the objects defined in <code>pipelineObjects</code>.</p>
682
682
  * @public
683
683
  */
684
- validationWarnings?: ValidationWarning[];
684
+ validationWarnings?: ValidationWarning[] | undefined;
685
685
  /**
686
686
  * <p>Indicates whether there were validation errors, and the pipeline definition is stored but cannot be
687
687
  * activated until you correct the pipeline and call <code>PutPipelineDefinition</code> to commit the corrected pipeline.</p>
@@ -741,12 +741,12 @@ export interface Operator {
741
741
  * <p>Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string "my".</p>
742
742
  * @public
743
743
  */
744
- type?: OperatorType;
744
+ type?: OperatorType | undefined;
745
745
  /**
746
746
  * <p>The value that the actual field value will be compared with.</p>
747
747
  * @public
748
748
  */
749
- values?: string[];
749
+ values?: string[] | undefined;
750
750
  }
751
751
  /**
752
752
  * <p>A comparision that is used to determine whether a query should return this object.</p>
@@ -757,12 +757,12 @@ export interface Selector {
757
757
  * <p>The name of the field that the operator will be applied to. The field name is the "key" portion of the field definition in the pipeline definition syntax that is used by the AWS Data Pipeline API. If the field is not set on the object, the condition fails.</p>
758
758
  * @public
759
759
  */
760
- fieldName?: string;
760
+ fieldName?: string | undefined;
761
761
  /**
762
762
  * <p>Contains a logical operation for comparing the value of a field with a specified value.</p>
763
763
  * @public
764
764
  */
765
- operator?: Operator;
765
+ operator?: Operator | undefined;
766
766
  }
767
767
  /**
768
768
  * <p>Defines the query to run against an object.</p>
@@ -773,7 +773,7 @@ export interface Query {
773
773
  * <p>List of selectors that define the query. An object must satisfy all of the selectors to match the query.</p>
774
774
  * @public
775
775
  */
776
- selectors?: Selector[];
776
+ selectors?: Selector[] | undefined;
777
777
  }
778
778
  /**
779
779
  * <p>Contains the parameters for QueryObjects.</p>
@@ -791,7 +791,7 @@ export interface QueryObjectsInput {
791
791
  * These filters can be applied to components, instances, and attempts.</p>
792
792
  * @public
793
793
  */
794
- query?: Query;
794
+ query?: Query | undefined;
795
795
  /**
796
796
  * <p>Indicates whether the query applies to components or instances. The possible values are:
797
797
  * <code>COMPONENT</code>, <code>INSTANCE</code>, and <code>ATTEMPT</code>.</p>
@@ -804,12 +804,12 @@ export interface QueryObjectsInput {
804
804
  * the marker value from the previous call to retrieve the next set of results.</p>
805
805
  * @public
806
806
  */
807
- marker?: string;
807
+ marker?: string | undefined;
808
808
  /**
809
809
  * <p>The maximum number of object names that <code>QueryObjects</code> will return in a single call. The default value is 100. </p>
810
810
  * @public
811
811
  */
812
- limit?: number;
812
+ limit?: number | undefined;
813
813
  }
814
814
  /**
815
815
  * <p>Contains the output of QueryObjects.</p>
@@ -820,18 +820,18 @@ export interface QueryObjectsOutput {
820
820
  * <p>The identifiers that match the query selectors.</p>
821
821
  * @public
822
822
  */
823
- ids?: string[];
823
+ ids?: string[] | undefined;
824
824
  /**
825
825
  * <p>The starting point for the next page of results. To view the next page of results, call <code>QueryObjects</code>
826
826
  * again with this marker value. If the value is null, there are no more results.</p>
827
827
  * @public
828
828
  */
829
- marker?: string;
829
+ marker?: string | undefined;
830
830
  /**
831
831
  * <p>Indicates whether there are more results that can be obtained by a subsequent call.</p>
832
832
  * @public
833
833
  */
834
- hasMoreResults?: boolean;
834
+ hasMoreResults?: boolean | undefined;
835
835
  }
836
836
  /**
837
837
  * <p>Contains the parameters for RemoveTags.</p>
@@ -869,7 +869,7 @@ export interface ReportTaskProgressInput {
869
869
  * <p>Key-value pairs that define the properties of the ReportTaskProgressInput object.</p>
870
870
  * @public
871
871
  */
872
- fields?: Field[];
872
+ fields?: Field[] | undefined;
873
873
  }
874
874
  /**
875
875
  * <p>Contains the output of ReportTaskProgress.</p>
@@ -900,12 +900,12 @@ export interface ReportTaskRunnerHeartbeatInput {
900
900
  * must be an exact, case-sensitive, match.</p>
901
901
  * @public
902
902
  */
903
- workerGroup?: string;
903
+ workerGroup?: string | undefined;
904
904
  /**
905
905
  * <p>The public DNS name of the task runner.</p>
906
906
  * @public
907
907
  */
908
- hostname?: string;
908
+ hostname?: string | undefined;
909
909
  }
910
910
  /**
911
911
  * <p>Contains the output of ReportTaskRunnerHeartbeat.</p>
@@ -973,19 +973,19 @@ export interface SetTaskStatusInput {
973
973
  * It is used to display error information to the user. It should not start with string "Service_" which is reserved by the system.</p>
974
974
  * @public
975
975
  */
976
- errorId?: string;
976
+ errorId?: string | undefined;
977
977
  /**
978
978
  * <p>If an error occurred during the task, this value specifies a text description of the error. This value is set on the physical attempt object.
979
979
  * It is used to display error information to the user. The web service does not parse this value.</p>
980
980
  * @public
981
981
  */
982
- errorMessage?: string;
982
+ errorMessage?: string | undefined;
983
983
  /**
984
984
  * <p>If an error occurred during the task, this value specifies the stack trace associated with the error. This value is set on the physical attempt object.
985
985
  * It is used to display error information to the user. The web service does not parse this value.</p>
986
986
  * @public
987
987
  */
988
- errorStackTrace?: string;
988
+ errorStackTrace?: string | undefined;
989
989
  }
990
990
  /**
991
991
  * <p>Contains the output of SetTaskStatus.</p>
@@ -1012,12 +1012,12 @@ export interface ValidatePipelineDefinitionInput {
1012
1012
  * <p>The parameter objects used with the pipeline.</p>
1013
1013
  * @public
1014
1014
  */
1015
- parameterObjects?: ParameterObject[];
1015
+ parameterObjects?: ParameterObject[] | undefined;
1016
1016
  /**
1017
1017
  * <p>The parameter values used with the pipeline.</p>
1018
1018
  * @public
1019
1019
  */
1020
- parameterValues?: ParameterValue[];
1020
+ parameterValues?: ParameterValue[] | undefined;
1021
1021
  }
1022
1022
  /**
1023
1023
  * <p>Contains the output of ValidatePipelineDefinition.</p>
@@ -1028,12 +1028,12 @@ export interface ValidatePipelineDefinitionOutput {
1028
1028
  * <p>Any validation errors that were found.</p>
1029
1029
  * @public
1030
1030
  */
1031
- validationErrors?: ValidationError[];
1031
+ validationErrors?: ValidationError[] | undefined;
1032
1032
  /**
1033
1033
  * <p>Any validation warnings that were found.</p>
1034
1034
  * @public
1035
1035
  */
1036
- validationWarnings?: ValidationWarning[];
1036
+ validationWarnings?: ValidationWarning[] | undefined;
1037
1037
  /**
1038
1038
  * <p>Indicates whether there were validation errors.</p>
1039
1039
  * @public
@@ -6,8 +6,8 @@ export interface ParameterValue {
6
6
  }
7
7
  export interface ActivatePipelineInput {
8
8
  pipelineId: string | undefined;
9
- parameterValues?: ParameterValue[];
10
- startTimestamp?: Date;
9
+ parameterValues?: ParameterValue[] | undefined;
10
+ startTimestamp?: Date | undefined;
11
11
  }
12
12
  export interface ActivatePipelineOutput {}
13
13
  export declare class InternalServiceError extends __BaseException {
@@ -50,15 +50,15 @@ export interface AddTagsOutput {}
50
50
  export interface CreatePipelineInput {
51
51
  name: string | undefined;
52
52
  uniqueId: string | undefined;
53
- description?: string;
54
- tags?: Tag[];
53
+ description?: string | undefined;
54
+ tags?: Tag[] | undefined;
55
55
  }
56
56
  export interface CreatePipelineOutput {
57
57
  pipelineId: string | undefined;
58
58
  }
59
59
  export interface DeactivatePipelineInput {
60
60
  pipelineId: string | undefined;
61
- cancelActive?: boolean;
61
+ cancelActive?: boolean | undefined;
62
62
  }
63
63
  export interface DeactivatePipelineOutput {}
64
64
  export interface DeletePipelineInput {
@@ -67,13 +67,13 @@ export interface DeletePipelineInput {
67
67
  export interface DescribeObjectsInput {
68
68
  pipelineId: string | undefined;
69
69
  objectIds: string[] | undefined;
70
- evaluateExpressions?: boolean;
71
- marker?: string;
70
+ evaluateExpressions?: boolean | undefined;
71
+ marker?: string | undefined;
72
72
  }
73
73
  export interface Field {
74
74
  key: string | undefined;
75
- stringValue?: string;
76
- refValue?: string;
75
+ stringValue?: string | undefined;
76
+ refValue?: string | undefined;
77
77
  }
78
78
  export interface PipelineObject {
79
79
  id: string | undefined;
@@ -82,8 +82,8 @@ export interface PipelineObject {
82
82
  }
83
83
  export interface DescribeObjectsOutput {
84
84
  pipelineObjects: PipelineObject[] | undefined;
85
- marker?: string;
86
- hasMoreResults?: boolean;
85
+ marker?: string | undefined;
86
+ hasMoreResults?: boolean | undefined;
87
87
  }
88
88
  export interface DescribePipelinesInput {
89
89
  pipelineIds: string[] | undefined;
@@ -92,8 +92,8 @@ export interface PipelineDescription {
92
92
  pipelineId: string | undefined;
93
93
  name: string | undefined;
94
94
  fields: Field[] | undefined;
95
- description?: string;
96
- tags?: Tag[];
95
+ description?: string | undefined;
96
+ tags?: Tag[] | undefined;
97
97
  }
98
98
  export interface DescribePipelinesOutput {
99
99
  pipelineDescriptionList: PipelineDescription[] | undefined;
@@ -115,7 +115,7 @@ export declare class TaskNotFoundException extends __BaseException {
115
115
  }
116
116
  export interface GetPipelineDefinitionInput {
117
117
  pipelineId: string | undefined;
118
- version?: string;
118
+ version?: string | undefined;
119
119
  }
120
120
  export interface ParameterAttribute {
121
121
  key: string | undefined;
@@ -126,57 +126,57 @@ export interface ParameterObject {
126
126
  attributes: ParameterAttribute[] | undefined;
127
127
  }
128
128
  export interface GetPipelineDefinitionOutput {
129
- pipelineObjects?: PipelineObject[];
130
- parameterObjects?: ParameterObject[];
131
- parameterValues?: ParameterValue[];
129
+ pipelineObjects?: PipelineObject[] | undefined;
130
+ parameterObjects?: ParameterObject[] | undefined;
131
+ parameterValues?: ParameterValue[] | undefined;
132
132
  }
133
133
  export interface ListPipelinesInput {
134
- marker?: string;
134
+ marker?: string | undefined;
135
135
  }
136
136
  export interface PipelineIdName {
137
- id?: string;
138
- name?: string;
137
+ id?: string | undefined;
138
+ name?: string | undefined;
139
139
  }
140
140
  export interface ListPipelinesOutput {
141
141
  pipelineIdList: PipelineIdName[] | undefined;
142
- marker?: string;
143
- hasMoreResults?: boolean;
142
+ marker?: string | undefined;
143
+ hasMoreResults?: boolean | undefined;
144
144
  }
145
145
  export interface InstanceIdentity {
146
- document?: string;
147
- signature?: string;
146
+ document?: string | undefined;
147
+ signature?: string | undefined;
148
148
  }
149
149
  export interface PollForTaskInput {
150
150
  workerGroup: string | undefined;
151
- hostname?: string;
152
- instanceIdentity?: InstanceIdentity;
151
+ hostname?: string | undefined;
152
+ instanceIdentity?: InstanceIdentity | undefined;
153
153
  }
154
154
  export interface TaskObject {
155
- taskId?: string;
156
- pipelineId?: string;
157
- attemptId?: string;
158
- objects?: Record<string, PipelineObject>;
155
+ taskId?: string | undefined;
156
+ pipelineId?: string | undefined;
157
+ attemptId?: string | undefined;
158
+ objects?: Record<string, PipelineObject> | undefined;
159
159
  }
160
160
  export interface PollForTaskOutput {
161
- taskObject?: TaskObject;
161
+ taskObject?: TaskObject | undefined;
162
162
  }
163
163
  export interface PutPipelineDefinitionInput {
164
164
  pipelineId: string | undefined;
165
165
  pipelineObjects: PipelineObject[] | undefined;
166
- parameterObjects?: ParameterObject[];
167
- parameterValues?: ParameterValue[];
166
+ parameterObjects?: ParameterObject[] | undefined;
167
+ parameterValues?: ParameterValue[] | undefined;
168
168
  }
169
169
  export interface ValidationError {
170
- id?: string;
171
- errors?: string[];
170
+ id?: string | undefined;
171
+ errors?: string[] | undefined;
172
172
  }
173
173
  export interface ValidationWarning {
174
- id?: string;
175
- warnings?: string[];
174
+ id?: string | undefined;
175
+ warnings?: string[] | undefined;
176
176
  }
177
177
  export interface PutPipelineDefinitionOutput {
178
- validationErrors?: ValidationError[];
179
- validationWarnings?: ValidationWarning[];
178
+ validationErrors?: ValidationError[] | undefined;
179
+ validationWarnings?: ValidationWarning[] | undefined;
180
180
  errored: boolean | undefined;
181
181
  }
182
182
  export declare const OperatorType: {
@@ -188,27 +188,27 @@ export declare const OperatorType: {
188
188
  };
189
189
  export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
190
190
  export interface Operator {
191
- type?: OperatorType;
192
- values?: string[];
191
+ type?: OperatorType | undefined;
192
+ values?: string[] | undefined;
193
193
  }
194
194
  export interface Selector {
195
- fieldName?: string;
196
- operator?: Operator;
195
+ fieldName?: string | undefined;
196
+ operator?: Operator | undefined;
197
197
  }
198
198
  export interface Query {
199
- selectors?: Selector[];
199
+ selectors?: Selector[] | undefined;
200
200
  }
201
201
  export interface QueryObjectsInput {
202
202
  pipelineId: string | undefined;
203
- query?: Query;
203
+ query?: Query | undefined;
204
204
  sphere: string | undefined;
205
- marker?: string;
206
- limit?: number;
205
+ marker?: string | undefined;
206
+ limit?: number | undefined;
207
207
  }
208
208
  export interface QueryObjectsOutput {
209
- ids?: string[];
210
- marker?: string;
211
- hasMoreResults?: boolean;
209
+ ids?: string[] | undefined;
210
+ marker?: string | undefined;
211
+ hasMoreResults?: boolean | undefined;
212
212
  }
213
213
  export interface RemoveTagsInput {
214
214
  pipelineId: string | undefined;
@@ -217,15 +217,15 @@ export interface RemoveTagsInput {
217
217
  export interface RemoveTagsOutput {}
218
218
  export interface ReportTaskProgressInput {
219
219
  taskId: string | undefined;
220
- fields?: Field[];
220
+ fields?: Field[] | undefined;
221
221
  }
222
222
  export interface ReportTaskProgressOutput {
223
223
  canceled: boolean | undefined;
224
224
  }
225
225
  export interface ReportTaskRunnerHeartbeatInput {
226
226
  taskrunnerId: string | undefined;
227
- workerGroup?: string;
228
- hostname?: string;
227
+ workerGroup?: string | undefined;
228
+ hostname?: string | undefined;
229
229
  }
230
230
  export interface ReportTaskRunnerHeartbeatOutput {
231
231
  terminate: boolean | undefined;
@@ -244,19 +244,19 @@ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
244
244
  export interface SetTaskStatusInput {
245
245
  taskId: string | undefined;
246
246
  taskStatus: TaskStatus | undefined;
247
- errorId?: string;
248
- errorMessage?: string;
249
- errorStackTrace?: string;
247
+ errorId?: string | undefined;
248
+ errorMessage?: string | undefined;
249
+ errorStackTrace?: string | undefined;
250
250
  }
251
251
  export interface SetTaskStatusOutput {}
252
252
  export interface ValidatePipelineDefinitionInput {
253
253
  pipelineId: string | undefined;
254
254
  pipelineObjects: PipelineObject[] | undefined;
255
- parameterObjects?: ParameterObject[];
256
- parameterValues?: ParameterValue[];
255
+ parameterObjects?: ParameterObject[] | undefined;
256
+ parameterValues?: ParameterValue[] | undefined;
257
257
  }
258
258
  export interface ValidatePipelineDefinitionOutput {
259
- validationErrors?: ValidationError[];
260
- validationWarnings?: ValidationWarning[];
259
+ validationErrors?: ValidationError[] | undefined;
260
+ validationWarnings?: ValidationWarning[] | undefined;
261
261
  errored: boolean | undefined;
262
262
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-data-pipeline",
3
3
  "description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-data-pipeline",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },