@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.
@@ -0,0 +1,321 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AssignPublicIp: {
6
+ readonly DISABLED: "DISABLED";
7
+ readonly ENABLED: "ENABLED";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const BatchResourceRequirementType: {
18
+ readonly GPU: "GPU";
19
+ readonly MEMORY: "MEMORY";
20
+ readonly VCPU: "VCPU";
21
+ };
22
+ /**
23
+ * @public
24
+ */
25
+ export type BatchResourceRequirementType = (typeof BatchResourceRequirementType)[keyof typeof BatchResourceRequirementType];
26
+ /**
27
+ * @public
28
+ * @enum
29
+ */
30
+ export declare const BatchJobDependencyType: {
31
+ readonly N_TO_N: "N_TO_N";
32
+ readonly SEQUENTIAL: "SEQUENTIAL";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type BatchJobDependencyType = (typeof BatchJobDependencyType)[keyof typeof BatchJobDependencyType];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const RequestedPipeState: {
43
+ readonly RUNNING: "RUNNING";
44
+ readonly STOPPED: "STOPPED";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type RequestedPipeState = (typeof RequestedPipeState)[keyof typeof RequestedPipeState];
50
+ /**
51
+ * @public
52
+ * @enum
53
+ */
54
+ export declare const IncludeExecutionDataOption: {
55
+ readonly ALL: "ALL";
56
+ };
57
+ /**
58
+ * @public
59
+ */
60
+ export type IncludeExecutionDataOption = (typeof IncludeExecutionDataOption)[keyof typeof IncludeExecutionDataOption];
61
+ /**
62
+ * @public
63
+ * @enum
64
+ */
65
+ export declare const LogLevel: {
66
+ readonly ERROR: "ERROR";
67
+ readonly INFO: "INFO";
68
+ readonly OFF: "OFF";
69
+ readonly TRACE: "TRACE";
70
+ };
71
+ /**
72
+ * @public
73
+ */
74
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const S3OutputFormat: {
80
+ readonly JSON: "json";
81
+ readonly PLAIN: "plain";
82
+ readonly W3C: "w3c";
83
+ };
84
+ /**
85
+ * @public
86
+ */
87
+ export type S3OutputFormat = (typeof S3OutputFormat)[keyof typeof S3OutputFormat];
88
+ /**
89
+ * @public
90
+ * @enum
91
+ */
92
+ export declare const OnPartialBatchItemFailureStreams: {
93
+ readonly AUTOMATIC_BISECT: "AUTOMATIC_BISECT";
94
+ };
95
+ /**
96
+ * @public
97
+ */
98
+ export type OnPartialBatchItemFailureStreams = (typeof OnPartialBatchItemFailureStreams)[keyof typeof OnPartialBatchItemFailureStreams];
99
+ /**
100
+ * @public
101
+ * @enum
102
+ */
103
+ export declare const DynamoDBStreamStartPosition: {
104
+ readonly LATEST: "LATEST";
105
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
106
+ };
107
+ /**
108
+ * @public
109
+ */
110
+ export type DynamoDBStreamStartPosition = (typeof DynamoDBStreamStartPosition)[keyof typeof DynamoDBStreamStartPosition];
111
+ /**
112
+ * @public
113
+ * @enum
114
+ */
115
+ export declare const KinesisStreamStartPosition: {
116
+ readonly AT_TIMESTAMP: "AT_TIMESTAMP";
117
+ readonly LATEST: "LATEST";
118
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
119
+ };
120
+ /**
121
+ * @public
122
+ */
123
+ export type KinesisStreamStartPosition = (typeof KinesisStreamStartPosition)[keyof typeof KinesisStreamStartPosition];
124
+ /**
125
+ * @public
126
+ * @enum
127
+ */
128
+ export declare const MSKStartPosition: {
129
+ readonly LATEST: "LATEST";
130
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
131
+ };
132
+ /**
133
+ * @public
134
+ */
135
+ export type MSKStartPosition = (typeof MSKStartPosition)[keyof typeof MSKStartPosition];
136
+ /**
137
+ * @public
138
+ * @enum
139
+ */
140
+ export declare const SelfManagedKafkaStartPosition: {
141
+ readonly LATEST: "LATEST";
142
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
143
+ };
144
+ /**
145
+ * @public
146
+ */
147
+ export type SelfManagedKafkaStartPosition = (typeof SelfManagedKafkaStartPosition)[keyof typeof SelfManagedKafkaStartPosition];
148
+ /**
149
+ * @public
150
+ * @enum
151
+ */
152
+ export declare const LaunchType: {
153
+ readonly EC2: "EC2";
154
+ readonly EXTERNAL: "EXTERNAL";
155
+ readonly FARGATE: "FARGATE";
156
+ };
157
+ /**
158
+ * @public
159
+ */
160
+ export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
161
+ /**
162
+ * @public
163
+ * @enum
164
+ */
165
+ export declare const EcsEnvironmentFileType: {
166
+ readonly s3: "s3";
167
+ };
168
+ /**
169
+ * @public
170
+ */
171
+ export type EcsEnvironmentFileType = (typeof EcsEnvironmentFileType)[keyof typeof EcsEnvironmentFileType];
172
+ /**
173
+ * @public
174
+ * @enum
175
+ */
176
+ export declare const EcsResourceRequirementType: {
177
+ readonly GPU: "GPU";
178
+ readonly InferenceAccelerator: "InferenceAccelerator";
179
+ };
180
+ /**
181
+ * @public
182
+ */
183
+ export type EcsResourceRequirementType = (typeof EcsResourceRequirementType)[keyof typeof EcsResourceRequirementType];
184
+ /**
185
+ * @public
186
+ * @enum
187
+ */
188
+ export declare const PlacementConstraintType: {
189
+ readonly DISTINCT_INSTANCE: "distinctInstance";
190
+ readonly MEMBER_OF: "memberOf";
191
+ };
192
+ /**
193
+ * @public
194
+ */
195
+ export type PlacementConstraintType = (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
196
+ /**
197
+ * @public
198
+ * @enum
199
+ */
200
+ export declare const PlacementStrategyType: {
201
+ readonly BINPACK: "binpack";
202
+ readonly RANDOM: "random";
203
+ readonly SPREAD: "spread";
204
+ };
205
+ /**
206
+ * @public
207
+ */
208
+ export type PlacementStrategyType = (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
209
+ /**
210
+ * @public
211
+ * @enum
212
+ */
213
+ export declare const PropagateTags: {
214
+ readonly TASK_DEFINITION: "TASK_DEFINITION";
215
+ };
216
+ /**
217
+ * @public
218
+ */
219
+ export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
220
+ /**
221
+ * @public
222
+ * @enum
223
+ */
224
+ export declare const PipeTargetInvocationType: {
225
+ readonly FIRE_AND_FORGET: "FIRE_AND_FORGET";
226
+ readonly REQUEST_RESPONSE: "REQUEST_RESPONSE";
227
+ };
228
+ /**
229
+ * @public
230
+ */
231
+ export type PipeTargetInvocationType = (typeof PipeTargetInvocationType)[keyof typeof PipeTargetInvocationType];
232
+ /**
233
+ * @public
234
+ * @enum
235
+ */
236
+ export declare const DimensionValueType: {
237
+ readonly VARCHAR: "VARCHAR";
238
+ };
239
+ /**
240
+ * @public
241
+ */
242
+ export type DimensionValueType = (typeof DimensionValueType)[keyof typeof DimensionValueType];
243
+ /**
244
+ * @public
245
+ * @enum
246
+ */
247
+ export declare const EpochTimeUnit: {
248
+ readonly MICROSECONDS: "MICROSECONDS";
249
+ readonly MILLISECONDS: "MILLISECONDS";
250
+ readonly NANOSECONDS: "NANOSECONDS";
251
+ readonly SECONDS: "SECONDS";
252
+ };
253
+ /**
254
+ * @public
255
+ */
256
+ export type EpochTimeUnit = (typeof EpochTimeUnit)[keyof typeof EpochTimeUnit];
257
+ /**
258
+ * @public
259
+ * @enum
260
+ */
261
+ export declare const MeasureValueType: {
262
+ readonly BIGINT: "BIGINT";
263
+ readonly BOOLEAN: "BOOLEAN";
264
+ readonly DOUBLE: "DOUBLE";
265
+ readonly TIMESTAMP: "TIMESTAMP";
266
+ readonly VARCHAR: "VARCHAR";
267
+ };
268
+ /**
269
+ * @public
270
+ */
271
+ export type MeasureValueType = (typeof MeasureValueType)[keyof typeof MeasureValueType];
272
+ /**
273
+ * @public
274
+ * @enum
275
+ */
276
+ export declare const TimeFieldType: {
277
+ readonly EPOCH: "EPOCH";
278
+ readonly TIMESTAMP_FORMAT: "TIMESTAMP_FORMAT";
279
+ };
280
+ /**
281
+ * @public
282
+ */
283
+ export type TimeFieldType = (typeof TimeFieldType)[keyof typeof TimeFieldType];
284
+ /**
285
+ * @public
286
+ * @enum
287
+ */
288
+ export declare const PipeState: {
289
+ readonly CREATE_FAILED: "CREATE_FAILED";
290
+ readonly CREATE_ROLLBACK_FAILED: "CREATE_ROLLBACK_FAILED";
291
+ readonly CREATING: "CREATING";
292
+ readonly DELETE_FAILED: "DELETE_FAILED";
293
+ readonly DELETE_ROLLBACK_FAILED: "DELETE_ROLLBACK_FAILED";
294
+ readonly DELETING: "DELETING";
295
+ readonly RUNNING: "RUNNING";
296
+ readonly STARTING: "STARTING";
297
+ readonly START_FAILED: "START_FAILED";
298
+ readonly STOPPED: "STOPPED";
299
+ readonly STOPPING: "STOPPING";
300
+ readonly STOP_FAILED: "STOP_FAILED";
301
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
302
+ readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
303
+ readonly UPDATING: "UPDATING";
304
+ };
305
+ /**
306
+ * @public
307
+ */
308
+ export type PipeState = (typeof PipeState)[keyof typeof PipeState];
309
+ /**
310
+ * @public
311
+ * @enum
312
+ */
313
+ export declare const RequestedPipeStateDescribeResponse: {
314
+ readonly DELETED: "DELETED";
315
+ readonly RUNNING: "RUNNING";
316
+ readonly STOPPED: "STOPPED";
317
+ };
318
+ /**
319
+ * @public
320
+ */
321
+ export type RequestedPipeStateDescribeResponse = (typeof RequestedPipeStateDescribeResponse)[keyof typeof RequestedPipeStateDescribeResponse];