@aws-sdk/client-pipes 3.428.0 → 3.429.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.
|
@@ -34,7 +34,7 @@ export interface AwsVpcConfiguration {
|
|
|
34
34
|
* <p>Specifies whether the task's elastic network interface receives a public IP address. You can specify <code>ENABLED</code> only when
|
|
35
35
|
* <code>LaunchType</code> in <code>EcsParameters</code> is set to <code>FARGATE</code>.</p>
|
|
36
36
|
*/
|
|
37
|
-
AssignPublicIp?: AssignPublicIp
|
|
37
|
+
AssignPublicIp?: AssignPublicIp;
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
40
40
|
* @public
|
|
@@ -90,7 +90,7 @@ export interface BatchResourceRequirement {
|
|
|
90
90
|
* @public
|
|
91
91
|
* <p>The type of resource to assign to a container. The supported resources include <code>GPU</code>, <code>MEMORY</code>, and <code>VCPU</code>.</p>
|
|
92
92
|
*/
|
|
93
|
-
Type: BatchResourceRequirementType |
|
|
93
|
+
Type: BatchResourceRequirementType | undefined;
|
|
94
94
|
/**
|
|
95
95
|
* @public
|
|
96
96
|
* <p>The quantity of the specified resource to reserve for the container. The values vary based on the
|
|
@@ -317,7 +317,7 @@ export interface BatchJobDependency {
|
|
|
317
317
|
* @public
|
|
318
318
|
* <p>The type of the job dependency.</p>
|
|
319
319
|
*/
|
|
320
|
-
Type?: BatchJobDependencyType
|
|
320
|
+
Type?: BatchJobDependencyType;
|
|
321
321
|
}
|
|
322
322
|
/**
|
|
323
323
|
* @public
|
|
@@ -552,7 +552,7 @@ export interface PipeSourceDynamoDBStreamParameters {
|
|
|
552
552
|
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
553
553
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
554
554
|
*/
|
|
555
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams
|
|
555
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
556
556
|
/**
|
|
557
557
|
* @public
|
|
558
558
|
* <p>The maximum length of a time to wait for events.</p>
|
|
@@ -579,7 +579,7 @@ export interface PipeSourceDynamoDBStreamParameters {
|
|
|
579
579
|
* @public
|
|
580
580
|
* <p>(Streams only) The position in a stream from which to start reading.</p>
|
|
581
581
|
*/
|
|
582
|
-
StartingPosition: DynamoDBStreamStartPosition |
|
|
582
|
+
StartingPosition: DynamoDBStreamStartPosition | undefined;
|
|
583
583
|
}
|
|
584
584
|
/**
|
|
585
585
|
* @public
|
|
@@ -638,7 +638,7 @@ export interface PipeSourceKinesisStreamParameters {
|
|
|
638
638
|
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
639
639
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
640
640
|
*/
|
|
641
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams
|
|
641
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
642
642
|
/**
|
|
643
643
|
* @public
|
|
644
644
|
* <p>The maximum length of a time to wait for events.</p>
|
|
@@ -665,7 +665,7 @@ export interface PipeSourceKinesisStreamParameters {
|
|
|
665
665
|
* @public
|
|
666
666
|
* <p>(Streams only) The position in a stream from which to start reading.</p>
|
|
667
667
|
*/
|
|
668
|
-
StartingPosition: KinesisStreamStartPosition |
|
|
668
|
+
StartingPosition: KinesisStreamStartPosition | undefined;
|
|
669
669
|
/**
|
|
670
670
|
* @public
|
|
671
671
|
* <p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start reading, in Unix time seconds.</p>
|
|
@@ -740,7 +740,7 @@ export interface PipeSourceManagedStreamingKafkaParameters {
|
|
|
740
740
|
* @public
|
|
741
741
|
* <p>(Streams only) The position in a stream from which to start reading.</p>
|
|
742
742
|
*/
|
|
743
|
-
StartingPosition?: MSKStartPosition
|
|
743
|
+
StartingPosition?: MSKStartPosition;
|
|
744
744
|
/**
|
|
745
745
|
* @public
|
|
746
746
|
* <p>The maximum number of records to include in each batch.</p>
|
|
@@ -908,7 +908,7 @@ export interface PipeSourceSelfManagedKafkaParameters {
|
|
|
908
908
|
* @public
|
|
909
909
|
* <p>(Streams only) The position in a stream from which to start reading.</p>
|
|
910
910
|
*/
|
|
911
|
-
StartingPosition?: SelfManagedKafkaStartPosition
|
|
911
|
+
StartingPosition?: SelfManagedKafkaStartPosition;
|
|
912
912
|
/**
|
|
913
913
|
* @public
|
|
914
914
|
* <p>An array of server URLs.</p>
|
|
@@ -1157,7 +1157,7 @@ export interface EcsEnvironmentFile {
|
|
|
1157
1157
|
* @public
|
|
1158
1158
|
* <p>The file type to use. The only supported value is <code>s3</code>.</p>
|
|
1159
1159
|
*/
|
|
1160
|
-
type: EcsEnvironmentFileType |
|
|
1160
|
+
type: EcsEnvironmentFileType | undefined;
|
|
1161
1161
|
/**
|
|
1162
1162
|
* @public
|
|
1163
1163
|
* <p>The Amazon Resource Name (ARN) of the Amazon S3 object containing the environment variable file.</p>
|
|
@@ -1191,7 +1191,7 @@ export interface EcsResourceRequirement {
|
|
|
1191
1191
|
* <p>The type of resource to assign to a container. The supported values are
|
|
1192
1192
|
* <code>GPU</code> or <code>InferenceAccelerator</code>.</p>
|
|
1193
1193
|
*/
|
|
1194
|
-
type: EcsResourceRequirementType |
|
|
1194
|
+
type: EcsResourceRequirementType | undefined;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* @public
|
|
1197
1197
|
* <p>The value for the specified resource type.</p>
|
|
@@ -1378,7 +1378,7 @@ export interface PlacementConstraint {
|
|
|
1378
1378
|
* group is running on a different container instance. Use memberOf to restrict the selection to
|
|
1379
1379
|
* a group of valid candidates. </p>
|
|
1380
1380
|
*/
|
|
1381
|
-
type?: PlacementConstraintType
|
|
1381
|
+
type?: PlacementConstraintType;
|
|
1382
1382
|
/**
|
|
1383
1383
|
* @public
|
|
1384
1384
|
* <p>A cluster query language expression to apply to the constraint. You cannot specify an
|
|
@@ -1415,7 +1415,7 @@ export interface PlacementStrategy {
|
|
|
1415
1415
|
* field parameter. For example, if you binpack on memory, a task is placed on the instance with
|
|
1416
1416
|
* the least amount of remaining memory (but still enough to run the task). </p>
|
|
1417
1417
|
*/
|
|
1418
|
-
type?: PlacementStrategyType
|
|
1418
|
+
type?: PlacementStrategyType;
|
|
1419
1419
|
/**
|
|
1420
1420
|
* @public
|
|
1421
1421
|
* <p>The field to apply the placement strategy against. For the spread placement strategy,
|
|
@@ -1478,7 +1478,7 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
1478
1478
|
* is supported. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/AWS-Fargate.html">Fargate on Amazon ECS</a> in
|
|
1479
1479
|
* the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1480
1480
|
*/
|
|
1481
|
-
LaunchType?: LaunchType
|
|
1481
|
+
LaunchType?: LaunchType;
|
|
1482
1482
|
/**
|
|
1483
1483
|
* @public
|
|
1484
1484
|
* <p>Use this structure if the Amazon ECS task uses the <code>awsvpc</code> network mode. This
|
|
@@ -1546,7 +1546,7 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
1546
1546
|
* is specified, the tags are not propagated. Tags can only be propagated to the task during task
|
|
1547
1547
|
* creation. To add tags to a task after task creation, use the <code>TagResource</code> API action. </p>
|
|
1548
1548
|
*/
|
|
1549
|
-
PropagateTags?: PropagateTags
|
|
1549
|
+
PropagateTags?: PropagateTags;
|
|
1550
1550
|
/**
|
|
1551
1551
|
* @public
|
|
1552
1552
|
* <p>The reference ID to use for the task.</p>
|
|
@@ -1677,7 +1677,7 @@ export interface PipeTargetLambdaFunctionParameters {
|
|
|
1677
1677
|
* </li>
|
|
1678
1678
|
* </ul>
|
|
1679
1679
|
*/
|
|
1680
|
-
InvocationType?: PipeTargetInvocationType
|
|
1680
|
+
InvocationType?: PipeTargetInvocationType;
|
|
1681
1681
|
}
|
|
1682
1682
|
/**
|
|
1683
1683
|
* @public
|
|
@@ -1773,7 +1773,7 @@ export interface PipeTargetStateMachineParameters {
|
|
|
1773
1773
|
* @public
|
|
1774
1774
|
* <p>Specify whether to wait for the state machine to finish or not.</p>
|
|
1775
1775
|
*/
|
|
1776
|
-
InvocationType?: PipeTargetInvocationType
|
|
1776
|
+
InvocationType?: PipeTargetInvocationType;
|
|
1777
1777
|
}
|
|
1778
1778
|
/**
|
|
1779
1779
|
* @public
|
|
@@ -1863,7 +1863,7 @@ export interface CreatePipeRequest {
|
|
|
1863
1863
|
* @public
|
|
1864
1864
|
* <p>The state the pipe should be in.</p>
|
|
1865
1865
|
*/
|
|
1866
|
-
DesiredState?: RequestedPipeState
|
|
1866
|
+
DesiredState?: RequestedPipeState;
|
|
1867
1867
|
/**
|
|
1868
1868
|
* @public
|
|
1869
1869
|
* <p>The ARN of the source resource.</p>
|
|
@@ -1944,12 +1944,12 @@ export interface CreatePipeResponse {
|
|
|
1944
1944
|
* @public
|
|
1945
1945
|
* <p>The state the pipe should be in.</p>
|
|
1946
1946
|
*/
|
|
1947
|
-
DesiredState?: RequestedPipeState
|
|
1947
|
+
DesiredState?: RequestedPipeState;
|
|
1948
1948
|
/**
|
|
1949
1949
|
* @public
|
|
1950
1950
|
* <p>The state the pipe is in.</p>
|
|
1951
1951
|
*/
|
|
1952
|
-
CurrentState?: PipeState
|
|
1952
|
+
CurrentState?: PipeState;
|
|
1953
1953
|
/**
|
|
1954
1954
|
* @public
|
|
1955
1955
|
* <p>The time the pipe was created.</p>
|
|
@@ -2123,12 +2123,12 @@ export interface DeletePipeResponse {
|
|
|
2123
2123
|
* @public
|
|
2124
2124
|
* <p>The state the pipe should be in.</p>
|
|
2125
2125
|
*/
|
|
2126
|
-
DesiredState?: RequestedPipeStateDescribeResponse
|
|
2126
|
+
DesiredState?: RequestedPipeStateDescribeResponse;
|
|
2127
2127
|
/**
|
|
2128
2128
|
* @public
|
|
2129
2129
|
* <p>The state the pipe is in.</p>
|
|
2130
2130
|
*/
|
|
2131
|
-
CurrentState?: PipeState
|
|
2131
|
+
CurrentState?: PipeState;
|
|
2132
2132
|
/**
|
|
2133
2133
|
* @public
|
|
2134
2134
|
* <p>The time the pipe was created.</p>
|
|
@@ -2173,12 +2173,12 @@ export interface DescribePipeResponse {
|
|
|
2173
2173
|
* @public
|
|
2174
2174
|
* <p>The state the pipe should be in.</p>
|
|
2175
2175
|
*/
|
|
2176
|
-
DesiredState?: RequestedPipeStateDescribeResponse
|
|
2176
|
+
DesiredState?: RequestedPipeStateDescribeResponse;
|
|
2177
2177
|
/**
|
|
2178
2178
|
* @public
|
|
2179
2179
|
* <p>The state the pipe is in.</p>
|
|
2180
2180
|
*/
|
|
2181
|
-
CurrentState?: PipeState
|
|
2181
|
+
CurrentState?: PipeState;
|
|
2182
2182
|
/**
|
|
2183
2183
|
* @public
|
|
2184
2184
|
* <p>The reason the pipe is in its current state.</p>
|
|
@@ -2249,12 +2249,12 @@ export interface ListPipesRequest {
|
|
|
2249
2249
|
* @public
|
|
2250
2250
|
* <p>The state the pipe should be in.</p>
|
|
2251
2251
|
*/
|
|
2252
|
-
DesiredState?: RequestedPipeState
|
|
2252
|
+
DesiredState?: RequestedPipeState;
|
|
2253
2253
|
/**
|
|
2254
2254
|
* @public
|
|
2255
2255
|
* <p>The state the pipe is in.</p>
|
|
2256
2256
|
*/
|
|
2257
|
-
CurrentState?: PipeState
|
|
2257
|
+
CurrentState?: PipeState;
|
|
2258
2258
|
/**
|
|
2259
2259
|
* @public
|
|
2260
2260
|
* <p>The prefix matching the pipe source.</p>
|
|
@@ -2297,12 +2297,12 @@ export interface Pipe {
|
|
|
2297
2297
|
* @public
|
|
2298
2298
|
* <p>The state the pipe should be in.</p>
|
|
2299
2299
|
*/
|
|
2300
|
-
DesiredState?: RequestedPipeState
|
|
2300
|
+
DesiredState?: RequestedPipeState;
|
|
2301
2301
|
/**
|
|
2302
2302
|
* @public
|
|
2303
2303
|
* <p>The state the pipe is in.</p>
|
|
2304
2304
|
*/
|
|
2305
|
-
CurrentState?: PipeState
|
|
2305
|
+
CurrentState?: PipeState;
|
|
2306
2306
|
/**
|
|
2307
2307
|
* @public
|
|
2308
2308
|
* <p>The reason the pipe is in its current state.</p>
|
|
@@ -2399,12 +2399,12 @@ export interface StartPipeResponse {
|
|
|
2399
2399
|
* @public
|
|
2400
2400
|
* <p>The state the pipe should be in.</p>
|
|
2401
2401
|
*/
|
|
2402
|
-
DesiredState?: RequestedPipeState
|
|
2402
|
+
DesiredState?: RequestedPipeState;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* @public
|
|
2405
2405
|
* <p>The state the pipe is in.</p>
|
|
2406
2406
|
*/
|
|
2407
|
-
CurrentState?: PipeState
|
|
2407
|
+
CurrentState?: PipeState;
|
|
2408
2408
|
/**
|
|
2409
2409
|
* @public
|
|
2410
2410
|
* <p>The time the pipe was created.</p>
|
|
@@ -2444,12 +2444,12 @@ export interface StopPipeResponse {
|
|
|
2444
2444
|
* @public
|
|
2445
2445
|
* <p>The state the pipe should be in.</p>
|
|
2446
2446
|
*/
|
|
2447
|
-
DesiredState?: RequestedPipeState
|
|
2447
|
+
DesiredState?: RequestedPipeState;
|
|
2448
2448
|
/**
|
|
2449
2449
|
* @public
|
|
2450
2450
|
* <p>The state the pipe is in.</p>
|
|
2451
2451
|
*/
|
|
2452
|
-
CurrentState?: PipeState
|
|
2452
|
+
CurrentState?: PipeState;
|
|
2453
2453
|
/**
|
|
2454
2454
|
* @public
|
|
2455
2455
|
* <p>The time the pipe was created.</p>
|
|
@@ -2502,7 +2502,7 @@ export interface UpdatePipeSourceDynamoDBStreamParameters {
|
|
|
2502
2502
|
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
2503
2503
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
2504
2504
|
*/
|
|
2505
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams
|
|
2505
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
2506
2506
|
/**
|
|
2507
2507
|
* @public
|
|
2508
2508
|
* <p>The maximum length of a time to wait for events.</p>
|
|
@@ -2546,7 +2546,7 @@ export interface UpdatePipeSourceKinesisStreamParameters {
|
|
|
2546
2546
|
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
2547
2547
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
2548
2548
|
*/
|
|
2549
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams
|
|
2549
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
2550
2550
|
/**
|
|
2551
2551
|
* @public
|
|
2552
2552
|
* <p>The maximum length of a time to wait for events.</p>
|
|
@@ -2724,7 +2724,7 @@ export interface UpdatePipeRequest {
|
|
|
2724
2724
|
* @public
|
|
2725
2725
|
* <p>The state the pipe should be in.</p>
|
|
2726
2726
|
*/
|
|
2727
|
-
DesiredState?: RequestedPipeState
|
|
2727
|
+
DesiredState?: RequestedPipeState;
|
|
2728
2728
|
/**
|
|
2729
2729
|
* @public
|
|
2730
2730
|
* <p>The parameters required to set up a source for your pipe.</p>
|
|
@@ -2774,12 +2774,12 @@ export interface UpdatePipeResponse {
|
|
|
2774
2774
|
* @public
|
|
2775
2775
|
* <p>The state the pipe should be in.</p>
|
|
2776
2776
|
*/
|
|
2777
|
-
DesiredState?: RequestedPipeState
|
|
2777
|
+
DesiredState?: RequestedPipeState;
|
|
2778
2778
|
/**
|
|
2779
2779
|
* @public
|
|
2780
2780
|
* <p>The state the pipe is in.</p>
|
|
2781
2781
|
*/
|
|
2782
|
-
CurrentState?: PipeState
|
|
2782
|
+
CurrentState?: PipeState;
|
|
2783
2783
|
/**
|
|
2784
2784
|
* @public
|
|
2785
2785
|
* <p>The time the pipe was created.</p>
|
|
@@ -9,7 +9,7 @@ export type AssignPublicIp =
|
|
|
9
9
|
export interface AwsVpcConfiguration {
|
|
10
10
|
Subnets: string[] | undefined;
|
|
11
11
|
SecurityGroups?: string[];
|
|
12
|
-
AssignPublicIp?: AssignPublicIp
|
|
12
|
+
AssignPublicIp?: AssignPublicIp;
|
|
13
13
|
}
|
|
14
14
|
export interface BatchArrayProperties {
|
|
15
15
|
Size?: number;
|
|
@@ -26,7 +26,7 @@ export declare const BatchResourceRequirementType: {
|
|
|
26
26
|
export type BatchResourceRequirementType =
|
|
27
27
|
(typeof BatchResourceRequirementType)[keyof typeof BatchResourceRequirementType];
|
|
28
28
|
export interface BatchResourceRequirement {
|
|
29
|
-
Type: BatchResourceRequirementType |
|
|
29
|
+
Type: BatchResourceRequirementType | undefined;
|
|
30
30
|
Value: string | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface BatchContainerOverrides {
|
|
@@ -43,7 +43,7 @@ export type BatchJobDependencyType =
|
|
|
43
43
|
(typeof BatchJobDependencyType)[keyof typeof BatchJobDependencyType];
|
|
44
44
|
export interface BatchJobDependency {
|
|
45
45
|
JobId?: string;
|
|
46
|
-
Type?: BatchJobDependencyType
|
|
46
|
+
Type?: BatchJobDependencyType;
|
|
47
47
|
}
|
|
48
48
|
export interface BatchRetryStrategy {
|
|
49
49
|
Attempts?: number;
|
|
@@ -116,12 +116,12 @@ export type DynamoDBStreamStartPosition =
|
|
|
116
116
|
export interface PipeSourceDynamoDBStreamParameters {
|
|
117
117
|
BatchSize?: number;
|
|
118
118
|
DeadLetterConfig?: DeadLetterConfig;
|
|
119
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams
|
|
119
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
120
120
|
MaximumBatchingWindowInSeconds?: number;
|
|
121
121
|
MaximumRecordAgeInSeconds?: number;
|
|
122
122
|
MaximumRetryAttempts?: number;
|
|
123
123
|
ParallelizationFactor?: number;
|
|
124
|
-
StartingPosition: DynamoDBStreamStartPosition |
|
|
124
|
+
StartingPosition: DynamoDBStreamStartPosition | undefined;
|
|
125
125
|
}
|
|
126
126
|
export interface Filter {
|
|
127
127
|
Pattern?: string;
|
|
@@ -139,12 +139,12 @@ export type KinesisStreamStartPosition =
|
|
|
139
139
|
export interface PipeSourceKinesisStreamParameters {
|
|
140
140
|
BatchSize?: number;
|
|
141
141
|
DeadLetterConfig?: DeadLetterConfig;
|
|
142
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams
|
|
142
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
143
143
|
MaximumBatchingWindowInSeconds?: number;
|
|
144
144
|
MaximumRecordAgeInSeconds?: number;
|
|
145
145
|
MaximumRetryAttempts?: number;
|
|
146
146
|
ParallelizationFactor?: number;
|
|
147
|
-
StartingPosition: KinesisStreamStartPosition |
|
|
147
|
+
StartingPosition: KinesisStreamStartPosition | undefined;
|
|
148
148
|
StartingPositionTimestamp?: Date;
|
|
149
149
|
}
|
|
150
150
|
export type MSKAccessCredentials =
|
|
@@ -182,7 +182,7 @@ export type MSKStartPosition =
|
|
|
182
182
|
(typeof MSKStartPosition)[keyof typeof MSKStartPosition];
|
|
183
183
|
export interface PipeSourceManagedStreamingKafkaParameters {
|
|
184
184
|
TopicName: string | undefined;
|
|
185
|
-
StartingPosition?: MSKStartPosition
|
|
185
|
+
StartingPosition?: MSKStartPosition;
|
|
186
186
|
BatchSize?: number;
|
|
187
187
|
MaximumBatchingWindowInSeconds?: number;
|
|
188
188
|
ConsumerGroupID?: string;
|
|
@@ -261,7 +261,7 @@ export interface SelfManagedKafkaAccessConfigurationVpc {
|
|
|
261
261
|
}
|
|
262
262
|
export interface PipeSourceSelfManagedKafkaParameters {
|
|
263
263
|
TopicName: string | undefined;
|
|
264
|
-
StartingPosition?: SelfManagedKafkaStartPosition
|
|
264
|
+
StartingPosition?: SelfManagedKafkaStartPosition;
|
|
265
265
|
AdditionalBootstrapServers?: string[];
|
|
266
266
|
BatchSize?: number;
|
|
267
267
|
MaximumBatchingWindowInSeconds?: number;
|
|
@@ -316,7 +316,7 @@ export declare const EcsEnvironmentFileType: {
|
|
|
316
316
|
export type EcsEnvironmentFileType =
|
|
317
317
|
(typeof EcsEnvironmentFileType)[keyof typeof EcsEnvironmentFileType];
|
|
318
318
|
export interface EcsEnvironmentFile {
|
|
319
|
-
type: EcsEnvironmentFileType |
|
|
319
|
+
type: EcsEnvironmentFileType | undefined;
|
|
320
320
|
value: string | undefined;
|
|
321
321
|
}
|
|
322
322
|
export declare const EcsResourceRequirementType: {
|
|
@@ -326,7 +326,7 @@ export declare const EcsResourceRequirementType: {
|
|
|
326
326
|
export type EcsResourceRequirementType =
|
|
327
327
|
(typeof EcsResourceRequirementType)[keyof typeof EcsResourceRequirementType];
|
|
328
328
|
export interface EcsResourceRequirement {
|
|
329
|
-
type: EcsResourceRequirementType |
|
|
329
|
+
type: EcsResourceRequirementType | undefined;
|
|
330
330
|
value: string | undefined;
|
|
331
331
|
}
|
|
332
332
|
export interface EcsContainerOverride {
|
|
@@ -362,7 +362,7 @@ export declare const PlacementConstraintType: {
|
|
|
362
362
|
export type PlacementConstraintType =
|
|
363
363
|
(typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
|
|
364
364
|
export interface PlacementConstraint {
|
|
365
|
-
type?: PlacementConstraintType
|
|
365
|
+
type?: PlacementConstraintType;
|
|
366
366
|
expression?: string;
|
|
367
367
|
}
|
|
368
368
|
export declare const PlacementStrategyType: {
|
|
@@ -373,7 +373,7 @@ export declare const PlacementStrategyType: {
|
|
|
373
373
|
export type PlacementStrategyType =
|
|
374
374
|
(typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
|
|
375
375
|
export interface PlacementStrategy {
|
|
376
|
-
type?: PlacementStrategyType
|
|
376
|
+
type?: PlacementStrategyType;
|
|
377
377
|
field?: string;
|
|
378
378
|
}
|
|
379
379
|
export declare const PropagateTags: {
|
|
@@ -387,7 +387,7 @@ export interface Tag {
|
|
|
387
387
|
export interface PipeTargetEcsTaskParameters {
|
|
388
388
|
TaskDefinitionArn: string | undefined;
|
|
389
389
|
TaskCount?: number;
|
|
390
|
-
LaunchType?: LaunchType
|
|
390
|
+
LaunchType?: LaunchType;
|
|
391
391
|
NetworkConfiguration?: NetworkConfiguration;
|
|
392
392
|
PlatformVersion?: string;
|
|
393
393
|
Group?: string;
|
|
@@ -396,7 +396,7 @@ export interface PipeTargetEcsTaskParameters {
|
|
|
396
396
|
EnableExecuteCommand?: boolean;
|
|
397
397
|
PlacementConstraints?: PlacementConstraint[];
|
|
398
398
|
PlacementStrategy?: PlacementStrategy[];
|
|
399
|
-
PropagateTags?: PropagateTags
|
|
399
|
+
PropagateTags?: PropagateTags;
|
|
400
400
|
ReferenceId?: string;
|
|
401
401
|
Overrides?: EcsTaskOverride;
|
|
402
402
|
Tags?: Tag[];
|
|
@@ -423,7 +423,7 @@ export declare const PipeTargetInvocationType: {
|
|
|
423
423
|
export type PipeTargetInvocationType =
|
|
424
424
|
(typeof PipeTargetInvocationType)[keyof typeof PipeTargetInvocationType];
|
|
425
425
|
export interface PipeTargetLambdaFunctionParameters {
|
|
426
|
-
InvocationType?: PipeTargetInvocationType
|
|
426
|
+
InvocationType?: PipeTargetInvocationType;
|
|
427
427
|
}
|
|
428
428
|
export interface PipeTargetRedshiftDataParameters {
|
|
429
429
|
SecretManagerArn?: string;
|
|
@@ -445,7 +445,7 @@ export interface PipeTargetSqsQueueParameters {
|
|
|
445
445
|
MessageDeduplicationId?: string;
|
|
446
446
|
}
|
|
447
447
|
export interface PipeTargetStateMachineParameters {
|
|
448
|
-
InvocationType?: PipeTargetInvocationType
|
|
448
|
+
InvocationType?: PipeTargetInvocationType;
|
|
449
449
|
}
|
|
450
450
|
export interface PipeTargetParameters {
|
|
451
451
|
InputTemplate?: string;
|
|
@@ -464,7 +464,7 @@ export interface PipeTargetParameters {
|
|
|
464
464
|
export interface CreatePipeRequest {
|
|
465
465
|
Name: string | undefined;
|
|
466
466
|
Description?: string;
|
|
467
|
-
DesiredState?: RequestedPipeState
|
|
467
|
+
DesiredState?: RequestedPipeState;
|
|
468
468
|
Source: string | undefined;
|
|
469
469
|
SourceParameters?: PipeSourceParameters;
|
|
470
470
|
Enrichment?: string;
|
|
@@ -491,8 +491,8 @@ export type PipeState = (typeof PipeState)[keyof typeof PipeState];
|
|
|
491
491
|
export interface CreatePipeResponse {
|
|
492
492
|
Arn?: string;
|
|
493
493
|
Name?: string;
|
|
494
|
-
DesiredState?: RequestedPipeState
|
|
495
|
-
CurrentState?: PipeState
|
|
494
|
+
DesiredState?: RequestedPipeState;
|
|
495
|
+
CurrentState?: PipeState;
|
|
496
496
|
CreationTime?: Date;
|
|
497
497
|
LastModifiedTime?: Date;
|
|
498
498
|
}
|
|
@@ -553,8 +553,8 @@ export type RequestedPipeStateDescribeResponse =
|
|
|
553
553
|
export interface DeletePipeResponse {
|
|
554
554
|
Arn?: string;
|
|
555
555
|
Name?: string;
|
|
556
|
-
DesiredState?: RequestedPipeStateDescribeResponse
|
|
557
|
-
CurrentState?: PipeState
|
|
556
|
+
DesiredState?: RequestedPipeStateDescribeResponse;
|
|
557
|
+
CurrentState?: PipeState;
|
|
558
558
|
CreationTime?: Date;
|
|
559
559
|
LastModifiedTime?: Date;
|
|
560
560
|
}
|
|
@@ -565,8 +565,8 @@ export interface DescribePipeResponse {
|
|
|
565
565
|
Arn?: string;
|
|
566
566
|
Name?: string;
|
|
567
567
|
Description?: string;
|
|
568
|
-
DesiredState?: RequestedPipeStateDescribeResponse
|
|
569
|
-
CurrentState?: PipeState
|
|
568
|
+
DesiredState?: RequestedPipeStateDescribeResponse;
|
|
569
|
+
CurrentState?: PipeState;
|
|
570
570
|
StateReason?: string;
|
|
571
571
|
Source?: string;
|
|
572
572
|
SourceParameters?: PipeSourceParameters;
|
|
@@ -581,8 +581,8 @@ export interface DescribePipeResponse {
|
|
|
581
581
|
}
|
|
582
582
|
export interface ListPipesRequest {
|
|
583
583
|
NamePrefix?: string;
|
|
584
|
-
DesiredState?: RequestedPipeState
|
|
585
|
-
CurrentState?: PipeState
|
|
584
|
+
DesiredState?: RequestedPipeState;
|
|
585
|
+
CurrentState?: PipeState;
|
|
586
586
|
SourcePrefix?: string;
|
|
587
587
|
TargetPrefix?: string;
|
|
588
588
|
NextToken?: string;
|
|
@@ -591,8 +591,8 @@ export interface ListPipesRequest {
|
|
|
591
591
|
export interface Pipe {
|
|
592
592
|
Name?: string;
|
|
593
593
|
Arn?: string;
|
|
594
|
-
DesiredState?: RequestedPipeState
|
|
595
|
-
CurrentState?: PipeState
|
|
594
|
+
DesiredState?: RequestedPipeState;
|
|
595
|
+
CurrentState?: PipeState;
|
|
596
596
|
StateReason?: string;
|
|
597
597
|
CreationTime?: Date;
|
|
598
598
|
LastModifiedTime?: Date;
|
|
@@ -616,8 +616,8 @@ export interface StartPipeRequest {
|
|
|
616
616
|
export interface StartPipeResponse {
|
|
617
617
|
Arn?: string;
|
|
618
618
|
Name?: string;
|
|
619
|
-
DesiredState?: RequestedPipeState
|
|
620
|
-
CurrentState?: PipeState
|
|
619
|
+
DesiredState?: RequestedPipeState;
|
|
620
|
+
CurrentState?: PipeState;
|
|
621
621
|
CreationTime?: Date;
|
|
622
622
|
LastModifiedTime?: Date;
|
|
623
623
|
}
|
|
@@ -627,8 +627,8 @@ export interface StopPipeRequest {
|
|
|
627
627
|
export interface StopPipeResponse {
|
|
628
628
|
Arn?: string;
|
|
629
629
|
Name?: string;
|
|
630
|
-
DesiredState?: RequestedPipeState
|
|
631
|
-
CurrentState?: PipeState
|
|
630
|
+
DesiredState?: RequestedPipeState;
|
|
631
|
+
CurrentState?: PipeState;
|
|
632
632
|
CreationTime?: Date;
|
|
633
633
|
LastModifiedTime?: Date;
|
|
634
634
|
}
|
|
@@ -640,7 +640,7 @@ export interface UpdatePipeSourceActiveMQBrokerParameters {
|
|
|
640
640
|
export interface UpdatePipeSourceDynamoDBStreamParameters {
|
|
641
641
|
BatchSize?: number;
|
|
642
642
|
DeadLetterConfig?: DeadLetterConfig;
|
|
643
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams
|
|
643
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
644
644
|
MaximumBatchingWindowInSeconds?: number;
|
|
645
645
|
MaximumRecordAgeInSeconds?: number;
|
|
646
646
|
MaximumRetryAttempts?: number;
|
|
@@ -649,7 +649,7 @@ export interface UpdatePipeSourceDynamoDBStreamParameters {
|
|
|
649
649
|
export interface UpdatePipeSourceKinesisStreamParameters {
|
|
650
650
|
BatchSize?: number;
|
|
651
651
|
DeadLetterConfig?: DeadLetterConfig;
|
|
652
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams
|
|
652
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
653
653
|
MaximumBatchingWindowInSeconds?: number;
|
|
654
654
|
MaximumRecordAgeInSeconds?: number;
|
|
655
655
|
MaximumRetryAttempts?: number;
|
|
@@ -689,7 +689,7 @@ export interface UpdatePipeSourceParameters {
|
|
|
689
689
|
export interface UpdatePipeRequest {
|
|
690
690
|
Name: string | undefined;
|
|
691
691
|
Description?: string;
|
|
692
|
-
DesiredState?: RequestedPipeState
|
|
692
|
+
DesiredState?: RequestedPipeState;
|
|
693
693
|
SourceParameters?: UpdatePipeSourceParameters;
|
|
694
694
|
Enrichment?: string;
|
|
695
695
|
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
@@ -700,8 +700,8 @@ export interface UpdatePipeRequest {
|
|
|
700
700
|
export interface UpdatePipeResponse {
|
|
701
701
|
Arn?: string;
|
|
702
702
|
Name?: string;
|
|
703
|
-
DesiredState?: RequestedPipeState
|
|
704
|
-
CurrentState?: PipeState
|
|
703
|
+
DesiredState?: RequestedPipeState;
|
|
704
|
+
CurrentState?: PipeState;
|
|
705
705
|
CreationTime?: Date;
|
|
706
706
|
LastModifiedTime?: Date;
|
|
707
707
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pipes",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pipes Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|