@aws-sdk/client-pipes 3.936.0 → 3.940.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/index.js +147 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +121 -0
- package/dist-es/models/models_0.js +1 -121
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +321 -0
- package/dist-types/models/models_0.d.ts +1 -321
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +165 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -165
- package/package.json +5 -5
|
@@ -1,9 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
AssignPublicIp,
|
|
3
|
+
BatchJobDependencyType,
|
|
4
|
+
BatchResourceRequirementType,
|
|
5
|
+
DimensionValueType,
|
|
6
|
+
DynamoDBStreamStartPosition,
|
|
7
|
+
EcsEnvironmentFileType,
|
|
8
|
+
EcsResourceRequirementType,
|
|
9
|
+
EpochTimeUnit,
|
|
10
|
+
IncludeExecutionDataOption,
|
|
11
|
+
KinesisStreamStartPosition,
|
|
12
|
+
LaunchType,
|
|
13
|
+
LogLevel,
|
|
14
|
+
MeasureValueType,
|
|
15
|
+
MSKStartPosition,
|
|
16
|
+
OnPartialBatchItemFailureStreams,
|
|
17
|
+
PipeState,
|
|
18
|
+
PipeTargetInvocationType,
|
|
19
|
+
PlacementConstraintType,
|
|
20
|
+
PlacementStrategyType,
|
|
21
|
+
PropagateTags,
|
|
22
|
+
RequestedPipeState,
|
|
23
|
+
RequestedPipeStateDescribeResponse,
|
|
24
|
+
S3OutputFormat,
|
|
25
|
+
SelfManagedKafkaStartPosition,
|
|
26
|
+
TimeFieldType,
|
|
27
|
+
} from "./enums";
|
|
7
28
|
export interface AwsVpcConfiguration {
|
|
8
29
|
Subnets: string[] | undefined;
|
|
9
30
|
SecurityGroups?: string[] | undefined;
|
|
@@ -16,13 +37,6 @@ export interface BatchEnvironmentVariable {
|
|
|
16
37
|
Name?: string | undefined;
|
|
17
38
|
Value?: string | undefined;
|
|
18
39
|
}
|
|
19
|
-
export declare const BatchResourceRequirementType: {
|
|
20
|
-
readonly GPU: "GPU";
|
|
21
|
-
readonly MEMORY: "MEMORY";
|
|
22
|
-
readonly VCPU: "VCPU";
|
|
23
|
-
};
|
|
24
|
-
export type BatchResourceRequirementType =
|
|
25
|
-
(typeof BatchResourceRequirementType)[keyof typeof BatchResourceRequirementType];
|
|
26
40
|
export interface BatchResourceRequirement {
|
|
27
41
|
Type: BatchResourceRequirementType | undefined;
|
|
28
42
|
Value: string | undefined;
|
|
@@ -33,12 +47,6 @@ export interface BatchContainerOverrides {
|
|
|
33
47
|
InstanceType?: string | undefined;
|
|
34
48
|
ResourceRequirements?: BatchResourceRequirement[] | undefined;
|
|
35
49
|
}
|
|
36
|
-
export declare const BatchJobDependencyType: {
|
|
37
|
-
readonly N_TO_N: "N_TO_N";
|
|
38
|
-
readonly SEQUENTIAL: "SEQUENTIAL";
|
|
39
|
-
};
|
|
40
|
-
export type BatchJobDependencyType =
|
|
41
|
-
(typeof BatchJobDependencyType)[keyof typeof BatchJobDependencyType];
|
|
42
50
|
export interface BatchJobDependency {
|
|
43
51
|
JobId?: string | undefined;
|
|
44
52
|
Type?: BatchJobDependencyType | undefined;
|
|
@@ -57,12 +65,6 @@ export interface CloudwatchLogsLogDestination {
|
|
|
57
65
|
export interface CloudwatchLogsLogDestinationParameters {
|
|
58
66
|
LogGroupArn: string | undefined;
|
|
59
67
|
}
|
|
60
|
-
export declare const RequestedPipeState: {
|
|
61
|
-
readonly RUNNING: "RUNNING";
|
|
62
|
-
readonly STOPPED: "STOPPED";
|
|
63
|
-
};
|
|
64
|
-
export type RequestedPipeState =
|
|
65
|
-
(typeof RequestedPipeState)[keyof typeof RequestedPipeState];
|
|
66
68
|
export interface PipeEnrichmentHttpParameters {
|
|
67
69
|
PathParameterValues?: string[] | undefined;
|
|
68
70
|
HeaderParameters?: Record<string, string> | undefined;
|
|
@@ -75,25 +77,6 @@ export interface PipeEnrichmentParameters {
|
|
|
75
77
|
export interface FirehoseLogDestinationParameters {
|
|
76
78
|
DeliveryStreamArn: string | undefined;
|
|
77
79
|
}
|
|
78
|
-
export declare const IncludeExecutionDataOption: {
|
|
79
|
-
readonly ALL: "ALL";
|
|
80
|
-
};
|
|
81
|
-
export type IncludeExecutionDataOption =
|
|
82
|
-
(typeof IncludeExecutionDataOption)[keyof typeof IncludeExecutionDataOption];
|
|
83
|
-
export declare const LogLevel: {
|
|
84
|
-
readonly ERROR: "ERROR";
|
|
85
|
-
readonly INFO: "INFO";
|
|
86
|
-
readonly OFF: "OFF";
|
|
87
|
-
readonly TRACE: "TRACE";
|
|
88
|
-
};
|
|
89
|
-
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
90
|
-
export declare const S3OutputFormat: {
|
|
91
|
-
readonly JSON: "json";
|
|
92
|
-
readonly PLAIN: "plain";
|
|
93
|
-
readonly W3C: "w3c";
|
|
94
|
-
};
|
|
95
|
-
export type S3OutputFormat =
|
|
96
|
-
(typeof S3OutputFormat)[keyof typeof S3OutputFormat];
|
|
97
80
|
export interface S3LogDestinationParameters {
|
|
98
81
|
BucketName: string | undefined;
|
|
99
82
|
BucketOwner: string | undefined;
|
|
@@ -135,17 +118,6 @@ export interface PipeSourceActiveMQBrokerParameters {
|
|
|
135
118
|
export interface DeadLetterConfig {
|
|
136
119
|
Arn?: string | undefined;
|
|
137
120
|
}
|
|
138
|
-
export declare const OnPartialBatchItemFailureStreams: {
|
|
139
|
-
readonly AUTOMATIC_BISECT: "AUTOMATIC_BISECT";
|
|
140
|
-
};
|
|
141
|
-
export type OnPartialBatchItemFailureStreams =
|
|
142
|
-
(typeof OnPartialBatchItemFailureStreams)[keyof typeof OnPartialBatchItemFailureStreams];
|
|
143
|
-
export declare const DynamoDBStreamStartPosition: {
|
|
144
|
-
readonly LATEST: "LATEST";
|
|
145
|
-
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
146
|
-
};
|
|
147
|
-
export type DynamoDBStreamStartPosition =
|
|
148
|
-
(typeof DynamoDBStreamStartPosition)[keyof typeof DynamoDBStreamStartPosition];
|
|
149
121
|
export interface PipeSourceDynamoDBStreamParameters {
|
|
150
122
|
BatchSize?: number | undefined;
|
|
151
123
|
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
@@ -162,13 +134,6 @@ export interface Filter {
|
|
|
162
134
|
export interface FilterCriteria {
|
|
163
135
|
Filters?: Filter[] | undefined;
|
|
164
136
|
}
|
|
165
|
-
export declare const KinesisStreamStartPosition: {
|
|
166
|
-
readonly AT_TIMESTAMP: "AT_TIMESTAMP";
|
|
167
|
-
readonly LATEST: "LATEST";
|
|
168
|
-
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
169
|
-
};
|
|
170
|
-
export type KinesisStreamStartPosition =
|
|
171
|
-
(typeof KinesisStreamStartPosition)[keyof typeof KinesisStreamStartPosition];
|
|
172
137
|
export interface PipeSourceKinesisStreamParameters {
|
|
173
138
|
BatchSize?: number | undefined;
|
|
174
139
|
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
@@ -206,12 +171,6 @@ export declare namespace MSKAccessCredentials {
|
|
|
206
171
|
_: (name: string, value: any) => T;
|
|
207
172
|
}
|
|
208
173
|
}
|
|
209
|
-
export declare const MSKStartPosition: {
|
|
210
|
-
readonly LATEST: "LATEST";
|
|
211
|
-
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
212
|
-
};
|
|
213
|
-
export type MSKStartPosition =
|
|
214
|
-
(typeof MSKStartPosition)[keyof typeof MSKStartPosition];
|
|
215
174
|
export interface PipeSourceManagedStreamingKafkaParameters {
|
|
216
175
|
TopicName: string | undefined;
|
|
217
176
|
StartingPosition?: MSKStartPosition | undefined;
|
|
@@ -277,12 +236,6 @@ export declare namespace SelfManagedKafkaAccessConfigurationCredentials {
|
|
|
277
236
|
_: (name: string, value: any) => T;
|
|
278
237
|
}
|
|
279
238
|
}
|
|
280
|
-
export declare const SelfManagedKafkaStartPosition: {
|
|
281
|
-
readonly LATEST: "LATEST";
|
|
282
|
-
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
283
|
-
};
|
|
284
|
-
export type SelfManagedKafkaStartPosition =
|
|
285
|
-
(typeof SelfManagedKafkaStartPosition)[keyof typeof SelfManagedKafkaStartPosition];
|
|
286
239
|
export interface SelfManagedKafkaAccessConfigurationVpc {
|
|
287
240
|
Subnets?: string[] | undefined;
|
|
288
241
|
SecurityGroup?: string[] | undefined;
|
|
@@ -327,12 +280,6 @@ export interface PipeTargetCloudWatchLogsParameters {
|
|
|
327
280
|
LogStreamName?: string | undefined;
|
|
328
281
|
Timestamp?: string | undefined;
|
|
329
282
|
}
|
|
330
|
-
export declare const LaunchType: {
|
|
331
|
-
readonly EC2: "EC2";
|
|
332
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
333
|
-
readonly FARGATE: "FARGATE";
|
|
334
|
-
};
|
|
335
|
-
export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
|
|
336
283
|
export interface NetworkConfiguration {
|
|
337
284
|
awsvpcConfiguration?: AwsVpcConfiguration | undefined;
|
|
338
285
|
}
|
|
@@ -340,21 +287,10 @@ export interface EcsEnvironmentVariable {
|
|
|
340
287
|
name?: string | undefined;
|
|
341
288
|
value?: string | undefined;
|
|
342
289
|
}
|
|
343
|
-
export declare const EcsEnvironmentFileType: {
|
|
344
|
-
readonly s3: "s3";
|
|
345
|
-
};
|
|
346
|
-
export type EcsEnvironmentFileType =
|
|
347
|
-
(typeof EcsEnvironmentFileType)[keyof typeof EcsEnvironmentFileType];
|
|
348
290
|
export interface EcsEnvironmentFile {
|
|
349
291
|
type: EcsEnvironmentFileType | undefined;
|
|
350
292
|
value: string | undefined;
|
|
351
293
|
}
|
|
352
|
-
export declare const EcsResourceRequirementType: {
|
|
353
|
-
readonly GPU: "GPU";
|
|
354
|
-
readonly InferenceAccelerator: "InferenceAccelerator";
|
|
355
|
-
};
|
|
356
|
-
export type EcsResourceRequirementType =
|
|
357
|
-
(typeof EcsResourceRequirementType)[keyof typeof EcsResourceRequirementType];
|
|
358
294
|
export interface EcsResourceRequirement {
|
|
359
295
|
type: EcsResourceRequirementType | undefined;
|
|
360
296
|
value: string | undefined;
|
|
@@ -385,31 +321,14 @@ export interface EcsTaskOverride {
|
|
|
385
321
|
Memory?: string | undefined;
|
|
386
322
|
TaskRoleArn?: string | undefined;
|
|
387
323
|
}
|
|
388
|
-
export declare const PlacementConstraintType: {
|
|
389
|
-
readonly DISTINCT_INSTANCE: "distinctInstance";
|
|
390
|
-
readonly MEMBER_OF: "memberOf";
|
|
391
|
-
};
|
|
392
|
-
export type PlacementConstraintType =
|
|
393
|
-
(typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
|
|
394
324
|
export interface PlacementConstraint {
|
|
395
325
|
type?: PlacementConstraintType | undefined;
|
|
396
326
|
expression?: string | undefined;
|
|
397
327
|
}
|
|
398
|
-
export declare const PlacementStrategyType: {
|
|
399
|
-
readonly BINPACK: "binpack";
|
|
400
|
-
readonly RANDOM: "random";
|
|
401
|
-
readonly SPREAD: "spread";
|
|
402
|
-
};
|
|
403
|
-
export type PlacementStrategyType =
|
|
404
|
-
(typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
|
|
405
328
|
export interface PlacementStrategy {
|
|
406
329
|
type?: PlacementStrategyType | undefined;
|
|
407
330
|
field?: string | undefined;
|
|
408
331
|
}
|
|
409
|
-
export declare const PropagateTags: {
|
|
410
|
-
readonly TASK_DEFINITION: "TASK_DEFINITION";
|
|
411
|
-
};
|
|
412
|
-
export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
|
|
413
332
|
export interface Tag {
|
|
414
333
|
Key: string | undefined;
|
|
415
334
|
Value: string | undefined;
|
|
@@ -446,12 +365,6 @@ export interface PipeTargetHttpParameters {
|
|
|
446
365
|
export interface PipeTargetKinesisStreamParameters {
|
|
447
366
|
PartitionKey: string | undefined;
|
|
448
367
|
}
|
|
449
|
-
export declare const PipeTargetInvocationType: {
|
|
450
|
-
readonly FIRE_AND_FORGET: "FIRE_AND_FORGET";
|
|
451
|
-
readonly REQUEST_RESPONSE: "REQUEST_RESPONSE";
|
|
452
|
-
};
|
|
453
|
-
export type PipeTargetInvocationType =
|
|
454
|
-
(typeof PipeTargetInvocationType)[keyof typeof PipeTargetInvocationType];
|
|
455
368
|
export interface PipeTargetLambdaFunctionParameters {
|
|
456
369
|
InvocationType?: PipeTargetInvocationType | undefined;
|
|
457
370
|
}
|
|
@@ -477,32 +390,11 @@ export interface PipeTargetSqsQueueParameters {
|
|
|
477
390
|
export interface PipeTargetStateMachineParameters {
|
|
478
391
|
InvocationType?: PipeTargetInvocationType | undefined;
|
|
479
392
|
}
|
|
480
|
-
export declare const DimensionValueType: {
|
|
481
|
-
readonly VARCHAR: "VARCHAR";
|
|
482
|
-
};
|
|
483
|
-
export type DimensionValueType =
|
|
484
|
-
(typeof DimensionValueType)[keyof typeof DimensionValueType];
|
|
485
393
|
export interface DimensionMapping {
|
|
486
394
|
DimensionValue: string | undefined;
|
|
487
395
|
DimensionValueType: DimensionValueType | undefined;
|
|
488
396
|
DimensionName: string | undefined;
|
|
489
397
|
}
|
|
490
|
-
export declare const EpochTimeUnit: {
|
|
491
|
-
readonly MICROSECONDS: "MICROSECONDS";
|
|
492
|
-
readonly MILLISECONDS: "MILLISECONDS";
|
|
493
|
-
readonly NANOSECONDS: "NANOSECONDS";
|
|
494
|
-
readonly SECONDS: "SECONDS";
|
|
495
|
-
};
|
|
496
|
-
export type EpochTimeUnit = (typeof EpochTimeUnit)[keyof typeof EpochTimeUnit];
|
|
497
|
-
export declare const MeasureValueType: {
|
|
498
|
-
readonly BIGINT: "BIGINT";
|
|
499
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
500
|
-
readonly DOUBLE: "DOUBLE";
|
|
501
|
-
readonly TIMESTAMP: "TIMESTAMP";
|
|
502
|
-
readonly VARCHAR: "VARCHAR";
|
|
503
|
-
};
|
|
504
|
-
export type MeasureValueType =
|
|
505
|
-
(typeof MeasureValueType)[keyof typeof MeasureValueType];
|
|
506
398
|
export interface MultiMeasureAttributeMapping {
|
|
507
399
|
MeasureValue: string | undefined;
|
|
508
400
|
MeasureValueType: MeasureValueType | undefined;
|
|
@@ -517,11 +409,6 @@ export interface SingleMeasureMapping {
|
|
|
517
409
|
MeasureValueType: MeasureValueType | undefined;
|
|
518
410
|
MeasureName: string | undefined;
|
|
519
411
|
}
|
|
520
|
-
export declare const TimeFieldType: {
|
|
521
|
-
readonly EPOCH: "EPOCH";
|
|
522
|
-
readonly TIMESTAMP_FORMAT: "TIMESTAMP_FORMAT";
|
|
523
|
-
};
|
|
524
|
-
export type TimeFieldType = (typeof TimeFieldType)[keyof typeof TimeFieldType];
|
|
525
412
|
export interface PipeTargetTimestreamParameters {
|
|
526
413
|
TimeValue: string | undefined;
|
|
527
414
|
EpochTimeUnit?: EpochTimeUnit | undefined;
|
|
@@ -568,24 +455,6 @@ export interface CreatePipeRequest {
|
|
|
568
455
|
LogConfiguration?: PipeLogConfigurationParameters | undefined;
|
|
569
456
|
KmsKeyIdentifier?: string | undefined;
|
|
570
457
|
}
|
|
571
|
-
export declare const PipeState: {
|
|
572
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
573
|
-
readonly CREATE_ROLLBACK_FAILED: "CREATE_ROLLBACK_FAILED";
|
|
574
|
-
readonly CREATING: "CREATING";
|
|
575
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
576
|
-
readonly DELETE_ROLLBACK_FAILED: "DELETE_ROLLBACK_FAILED";
|
|
577
|
-
readonly DELETING: "DELETING";
|
|
578
|
-
readonly RUNNING: "RUNNING";
|
|
579
|
-
readonly STARTING: "STARTING";
|
|
580
|
-
readonly START_FAILED: "START_FAILED";
|
|
581
|
-
readonly STOPPED: "STOPPED";
|
|
582
|
-
readonly STOPPING: "STOPPING";
|
|
583
|
-
readonly STOP_FAILED: "STOP_FAILED";
|
|
584
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
585
|
-
readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
|
|
586
|
-
readonly UPDATING: "UPDATING";
|
|
587
|
-
};
|
|
588
|
-
export type PipeState = (typeof PipeState)[keyof typeof PipeState];
|
|
589
458
|
export interface CreatePipeResponse {
|
|
590
459
|
Arn?: string | undefined;
|
|
591
460
|
Name?: string | undefined;
|
|
@@ -601,13 +470,6 @@ export interface ValidationExceptionField {
|
|
|
601
470
|
export interface DeletePipeRequest {
|
|
602
471
|
Name: string | undefined;
|
|
603
472
|
}
|
|
604
|
-
export declare const RequestedPipeStateDescribeResponse: {
|
|
605
|
-
readonly DELETED: "DELETED";
|
|
606
|
-
readonly RUNNING: "RUNNING";
|
|
607
|
-
readonly STOPPED: "STOPPED";
|
|
608
|
-
};
|
|
609
|
-
export type RequestedPipeStateDescribeResponse =
|
|
610
|
-
(typeof RequestedPipeStateDescribeResponse)[keyof typeof RequestedPipeStateDescribeResponse];
|
|
611
473
|
export interface DeletePipeResponse {
|
|
612
474
|
Arn?: string | undefined;
|
|
613
475
|
Name?: string | undefined;
|
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.940.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-pipes",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.940.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.940.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.940.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.940.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|