@aws-sdk/client-pipes 3.686.0 → 3.691.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-types/models/models_0.d.ts +291 -291
- package/dist-types/ts3.4/models/models_0.d.ts +311 -291
- package/package.json +7 -7
|
@@ -8,15 +8,15 @@ export type AssignPublicIp =
|
|
|
8
8
|
(typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
9
9
|
export interface AwsVpcConfiguration {
|
|
10
10
|
Subnets: string[] | undefined;
|
|
11
|
-
SecurityGroups?: string[];
|
|
12
|
-
AssignPublicIp?: AssignPublicIp;
|
|
11
|
+
SecurityGroups?: string[] | undefined;
|
|
12
|
+
AssignPublicIp?: AssignPublicIp | undefined;
|
|
13
13
|
}
|
|
14
14
|
export interface BatchArrayProperties {
|
|
15
|
-
Size?: number;
|
|
15
|
+
Size?: number | undefined;
|
|
16
16
|
}
|
|
17
17
|
export interface BatchEnvironmentVariable {
|
|
18
|
-
Name?: string;
|
|
19
|
-
Value?: string;
|
|
18
|
+
Name?: string | undefined;
|
|
19
|
+
Value?: string | undefined;
|
|
20
20
|
}
|
|
21
21
|
export declare const BatchResourceRequirementType: {
|
|
22
22
|
readonly GPU: "GPU";
|
|
@@ -30,10 +30,10 @@ export interface BatchResourceRequirement {
|
|
|
30
30
|
Value: string | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface BatchContainerOverrides {
|
|
33
|
-
Command?: string[];
|
|
34
|
-
Environment?: BatchEnvironmentVariable[];
|
|
35
|
-
InstanceType?: string;
|
|
36
|
-
ResourceRequirements?: BatchResourceRequirement[];
|
|
33
|
+
Command?: string[] | undefined;
|
|
34
|
+
Environment?: BatchEnvironmentVariable[] | undefined;
|
|
35
|
+
InstanceType?: string | undefined;
|
|
36
|
+
ResourceRequirements?: BatchResourceRequirement[] | undefined;
|
|
37
37
|
}
|
|
38
38
|
export declare const BatchJobDependencyType: {
|
|
39
39
|
readonly N_TO_N: "N_TO_N";
|
|
@@ -42,19 +42,19 @@ export declare const BatchJobDependencyType: {
|
|
|
42
42
|
export type BatchJobDependencyType =
|
|
43
43
|
(typeof BatchJobDependencyType)[keyof typeof BatchJobDependencyType];
|
|
44
44
|
export interface BatchJobDependency {
|
|
45
|
-
JobId?: string;
|
|
46
|
-
Type?: BatchJobDependencyType;
|
|
45
|
+
JobId?: string | undefined;
|
|
46
|
+
Type?: BatchJobDependencyType | undefined;
|
|
47
47
|
}
|
|
48
48
|
export interface BatchRetryStrategy {
|
|
49
|
-
Attempts?: number;
|
|
49
|
+
Attempts?: number | undefined;
|
|
50
50
|
}
|
|
51
51
|
export interface CapacityProviderStrategyItem {
|
|
52
52
|
capacityProvider: string | undefined;
|
|
53
|
-
weight?: number;
|
|
54
|
-
base?: number;
|
|
53
|
+
weight?: number | undefined;
|
|
54
|
+
base?: number | undefined;
|
|
55
55
|
}
|
|
56
56
|
export interface CloudwatchLogsLogDestination {
|
|
57
|
-
LogGroupArn?: string;
|
|
57
|
+
LogGroupArn?: string | undefined;
|
|
58
58
|
}
|
|
59
59
|
export interface CloudwatchLogsLogDestinationParameters {
|
|
60
60
|
LogGroupArn: string | undefined;
|
|
@@ -73,13 +73,13 @@ export declare const RequestedPipeState: {
|
|
|
73
73
|
export type RequestedPipeState =
|
|
74
74
|
(typeof RequestedPipeState)[keyof typeof RequestedPipeState];
|
|
75
75
|
export interface PipeEnrichmentHttpParameters {
|
|
76
|
-
PathParameterValues?: string[];
|
|
77
|
-
HeaderParameters?: Record<string, string
|
|
78
|
-
QueryStringParameters?: Record<string, string
|
|
76
|
+
PathParameterValues?: string[] | undefined;
|
|
77
|
+
HeaderParameters?: Record<string, string> | undefined;
|
|
78
|
+
QueryStringParameters?: Record<string, string> | undefined;
|
|
79
79
|
}
|
|
80
80
|
export interface PipeEnrichmentParameters {
|
|
81
|
-
InputTemplate?: string;
|
|
82
|
-
HttpParameters?: PipeEnrichmentHttpParameters;
|
|
81
|
+
InputTemplate?: string | undefined;
|
|
82
|
+
HttpParameters?: PipeEnrichmentHttpParameters | undefined;
|
|
83
83
|
}
|
|
84
84
|
export interface FirehoseLogDestinationParameters {
|
|
85
85
|
DeliveryStreamArn: string | undefined;
|
|
@@ -106,15 +106,17 @@ export type S3OutputFormat =
|
|
|
106
106
|
export interface S3LogDestinationParameters {
|
|
107
107
|
BucketName: string | undefined;
|
|
108
108
|
BucketOwner: string | undefined;
|
|
109
|
-
OutputFormat?: S3OutputFormat;
|
|
110
|
-
Prefix?: string;
|
|
109
|
+
OutputFormat?: S3OutputFormat | undefined;
|
|
110
|
+
Prefix?: string | undefined;
|
|
111
111
|
}
|
|
112
112
|
export interface PipeLogConfigurationParameters {
|
|
113
|
-
S3LogDestination?: S3LogDestinationParameters;
|
|
114
|
-
FirehoseLogDestination?: FirehoseLogDestinationParameters;
|
|
115
|
-
CloudwatchLogsLogDestination?:
|
|
113
|
+
S3LogDestination?: S3LogDestinationParameters | undefined;
|
|
114
|
+
FirehoseLogDestination?: FirehoseLogDestinationParameters | undefined;
|
|
115
|
+
CloudwatchLogsLogDestination?:
|
|
116
|
+
| CloudwatchLogsLogDestinationParameters
|
|
117
|
+
| undefined;
|
|
116
118
|
Level: LogLevel | undefined;
|
|
117
|
-
IncludeExecutionData?: IncludeExecutionDataOption[];
|
|
119
|
+
IncludeExecutionData?: IncludeExecutionDataOption[] | undefined;
|
|
118
120
|
}
|
|
119
121
|
export type MQBrokerAccessCredentials =
|
|
120
122
|
| MQBrokerAccessCredentials.BasicAuthMember
|
|
@@ -137,11 +139,11 @@ export declare namespace MQBrokerAccessCredentials {
|
|
|
137
139
|
export interface PipeSourceActiveMQBrokerParameters {
|
|
138
140
|
Credentials: MQBrokerAccessCredentials | undefined;
|
|
139
141
|
QueueName: string | undefined;
|
|
140
|
-
BatchSize?: number;
|
|
141
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
142
|
+
BatchSize?: number | undefined;
|
|
143
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
142
144
|
}
|
|
143
145
|
export interface DeadLetterConfig {
|
|
144
|
-
Arn?: string;
|
|
146
|
+
Arn?: string | undefined;
|
|
145
147
|
}
|
|
146
148
|
export declare const OnPartialBatchItemFailureStreams: {
|
|
147
149
|
readonly AUTOMATIC_BISECT: "AUTOMATIC_BISECT";
|
|
@@ -155,20 +157,20 @@ export declare const DynamoDBStreamStartPosition: {
|
|
|
155
157
|
export type DynamoDBStreamStartPosition =
|
|
156
158
|
(typeof DynamoDBStreamStartPosition)[keyof typeof DynamoDBStreamStartPosition];
|
|
157
159
|
export interface PipeSourceDynamoDBStreamParameters {
|
|
158
|
-
BatchSize?: number;
|
|
159
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
160
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
161
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
162
|
-
MaximumRecordAgeInSeconds?: number;
|
|
163
|
-
MaximumRetryAttempts?: number;
|
|
164
|
-
ParallelizationFactor?: number;
|
|
160
|
+
BatchSize?: number | undefined;
|
|
161
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
162
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | undefined;
|
|
163
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
164
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
165
|
+
MaximumRetryAttempts?: number | undefined;
|
|
166
|
+
ParallelizationFactor?: number | undefined;
|
|
165
167
|
StartingPosition: DynamoDBStreamStartPosition | undefined;
|
|
166
168
|
}
|
|
167
169
|
export interface Filter {
|
|
168
|
-
Pattern?: string;
|
|
170
|
+
Pattern?: string | undefined;
|
|
169
171
|
}
|
|
170
172
|
export interface FilterCriteria {
|
|
171
|
-
Filters?: Filter[];
|
|
173
|
+
Filters?: Filter[] | undefined;
|
|
172
174
|
}
|
|
173
175
|
export declare const KinesisStreamStartPosition: {
|
|
174
176
|
readonly AT_TIMESTAMP: "AT_TIMESTAMP";
|
|
@@ -178,15 +180,15 @@ export declare const KinesisStreamStartPosition: {
|
|
|
178
180
|
export type KinesisStreamStartPosition =
|
|
179
181
|
(typeof KinesisStreamStartPosition)[keyof typeof KinesisStreamStartPosition];
|
|
180
182
|
export interface PipeSourceKinesisStreamParameters {
|
|
181
|
-
BatchSize?: number;
|
|
182
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
183
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
184
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
185
|
-
MaximumRecordAgeInSeconds?: number;
|
|
186
|
-
MaximumRetryAttempts?: number;
|
|
187
|
-
ParallelizationFactor?: number;
|
|
183
|
+
BatchSize?: number | undefined;
|
|
184
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
185
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | undefined;
|
|
186
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
187
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
188
|
+
MaximumRetryAttempts?: number | undefined;
|
|
189
|
+
ParallelizationFactor?: number | undefined;
|
|
188
190
|
StartingPosition: KinesisStreamStartPosition | undefined;
|
|
189
|
-
StartingPositionTimestamp?: Date;
|
|
191
|
+
StartingPositionTimestamp?: Date | undefined;
|
|
190
192
|
}
|
|
191
193
|
export type MSKAccessCredentials =
|
|
192
194
|
| MSKAccessCredentials.ClientCertificateTlsAuthMember
|
|
@@ -223,18 +225,18 @@ export type MSKStartPosition =
|
|
|
223
225
|
(typeof MSKStartPosition)[keyof typeof MSKStartPosition];
|
|
224
226
|
export interface PipeSourceManagedStreamingKafkaParameters {
|
|
225
227
|
TopicName: string | undefined;
|
|
226
|
-
StartingPosition?: MSKStartPosition;
|
|
227
|
-
BatchSize?: number;
|
|
228
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
229
|
-
ConsumerGroupID?: string;
|
|
230
|
-
Credentials?: MSKAccessCredentials;
|
|
228
|
+
StartingPosition?: MSKStartPosition | undefined;
|
|
229
|
+
BatchSize?: number | undefined;
|
|
230
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
231
|
+
ConsumerGroupID?: string | undefined;
|
|
232
|
+
Credentials?: MSKAccessCredentials | undefined;
|
|
231
233
|
}
|
|
232
234
|
export interface PipeSourceRabbitMQBrokerParameters {
|
|
233
235
|
Credentials: MQBrokerAccessCredentials | undefined;
|
|
234
236
|
QueueName: string | undefined;
|
|
235
|
-
VirtualHost?: string;
|
|
236
|
-
BatchSize?: number;
|
|
237
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
237
|
+
VirtualHost?: string | undefined;
|
|
238
|
+
BatchSize?: number | undefined;
|
|
239
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
238
240
|
}
|
|
239
241
|
export type SelfManagedKafkaAccessConfigurationCredentials =
|
|
240
242
|
| SelfManagedKafkaAccessConfigurationCredentials.BasicAuthMember
|
|
@@ -297,46 +299,48 @@ export declare const SelfManagedKafkaStartPosition: {
|
|
|
297
299
|
export type SelfManagedKafkaStartPosition =
|
|
298
300
|
(typeof SelfManagedKafkaStartPosition)[keyof typeof SelfManagedKafkaStartPosition];
|
|
299
301
|
export interface SelfManagedKafkaAccessConfigurationVpc {
|
|
300
|
-
Subnets?: string[];
|
|
301
|
-
SecurityGroup?: string[];
|
|
302
|
+
Subnets?: string[] | undefined;
|
|
303
|
+
SecurityGroup?: string[] | undefined;
|
|
302
304
|
}
|
|
303
305
|
export interface PipeSourceSelfManagedKafkaParameters {
|
|
304
306
|
TopicName: string | undefined;
|
|
305
|
-
StartingPosition?: SelfManagedKafkaStartPosition;
|
|
306
|
-
AdditionalBootstrapServers?: string[];
|
|
307
|
-
BatchSize?: number;
|
|
308
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
309
|
-
ConsumerGroupID?: string;
|
|
310
|
-
Credentials?: SelfManagedKafkaAccessConfigurationCredentials;
|
|
311
|
-
ServerRootCaCertificate?: string;
|
|
312
|
-
Vpc?: SelfManagedKafkaAccessConfigurationVpc;
|
|
307
|
+
StartingPosition?: SelfManagedKafkaStartPosition | undefined;
|
|
308
|
+
AdditionalBootstrapServers?: string[] | undefined;
|
|
309
|
+
BatchSize?: number | undefined;
|
|
310
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
311
|
+
ConsumerGroupID?: string | undefined;
|
|
312
|
+
Credentials?: SelfManagedKafkaAccessConfigurationCredentials | undefined;
|
|
313
|
+
ServerRootCaCertificate?: string | undefined;
|
|
314
|
+
Vpc?: SelfManagedKafkaAccessConfigurationVpc | undefined;
|
|
313
315
|
}
|
|
314
316
|
export interface PipeSourceSqsQueueParameters {
|
|
315
|
-
BatchSize?: number;
|
|
316
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
317
|
+
BatchSize?: number | undefined;
|
|
318
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
317
319
|
}
|
|
318
320
|
export interface PipeSourceParameters {
|
|
319
|
-
FilterCriteria?: FilterCriteria;
|
|
320
|
-
KinesisStreamParameters?: PipeSourceKinesisStreamParameters;
|
|
321
|
-
DynamoDBStreamParameters?: PipeSourceDynamoDBStreamParameters;
|
|
322
|
-
SqsQueueParameters?: PipeSourceSqsQueueParameters;
|
|
323
|
-
ActiveMQBrokerParameters?: PipeSourceActiveMQBrokerParameters;
|
|
324
|
-
RabbitMQBrokerParameters?: PipeSourceRabbitMQBrokerParameters;
|
|
325
|
-
ManagedStreamingKafkaParameters?:
|
|
326
|
-
|
|
321
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
322
|
+
KinesisStreamParameters?: PipeSourceKinesisStreamParameters | undefined;
|
|
323
|
+
DynamoDBStreamParameters?: PipeSourceDynamoDBStreamParameters | undefined;
|
|
324
|
+
SqsQueueParameters?: PipeSourceSqsQueueParameters | undefined;
|
|
325
|
+
ActiveMQBrokerParameters?: PipeSourceActiveMQBrokerParameters | undefined;
|
|
326
|
+
RabbitMQBrokerParameters?: PipeSourceRabbitMQBrokerParameters | undefined;
|
|
327
|
+
ManagedStreamingKafkaParameters?:
|
|
328
|
+
| PipeSourceManagedStreamingKafkaParameters
|
|
329
|
+
| undefined;
|
|
330
|
+
SelfManagedKafkaParameters?: PipeSourceSelfManagedKafkaParameters | undefined;
|
|
327
331
|
}
|
|
328
332
|
export interface PipeTargetBatchJobParameters {
|
|
329
333
|
JobDefinition: string | undefined;
|
|
330
334
|
JobName: string | undefined;
|
|
331
|
-
ArrayProperties?: BatchArrayProperties;
|
|
332
|
-
RetryStrategy?: BatchRetryStrategy;
|
|
333
|
-
ContainerOverrides?: BatchContainerOverrides;
|
|
334
|
-
DependsOn?: BatchJobDependency[];
|
|
335
|
-
Parameters?: Record<string, string
|
|
335
|
+
ArrayProperties?: BatchArrayProperties | undefined;
|
|
336
|
+
RetryStrategy?: BatchRetryStrategy | undefined;
|
|
337
|
+
ContainerOverrides?: BatchContainerOverrides | undefined;
|
|
338
|
+
DependsOn?: BatchJobDependency[] | undefined;
|
|
339
|
+
Parameters?: Record<string, string> | undefined;
|
|
336
340
|
}
|
|
337
341
|
export interface PipeTargetCloudWatchLogsParameters {
|
|
338
|
-
LogStreamName?: string;
|
|
339
|
-
Timestamp?: string;
|
|
342
|
+
LogStreamName?: string | undefined;
|
|
343
|
+
Timestamp?: string | undefined;
|
|
340
344
|
}
|
|
341
345
|
export declare const LaunchType: {
|
|
342
346
|
readonly EC2: "EC2";
|
|
@@ -345,11 +349,11 @@ export declare const LaunchType: {
|
|
|
345
349
|
};
|
|
346
350
|
export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
|
|
347
351
|
export interface NetworkConfiguration {
|
|
348
|
-
awsvpcConfiguration?: AwsVpcConfiguration;
|
|
352
|
+
awsvpcConfiguration?: AwsVpcConfiguration | undefined;
|
|
349
353
|
}
|
|
350
354
|
export interface EcsEnvironmentVariable {
|
|
351
|
-
name?: string;
|
|
352
|
-
value?: string;
|
|
355
|
+
name?: string | undefined;
|
|
356
|
+
value?: string | undefined;
|
|
353
357
|
}
|
|
354
358
|
export declare const EcsEnvironmentFileType: {
|
|
355
359
|
readonly s3: "s3";
|
|
@@ -371,30 +375,30 @@ export interface EcsResourceRequirement {
|
|
|
371
375
|
value: string | undefined;
|
|
372
376
|
}
|
|
373
377
|
export interface EcsContainerOverride {
|
|
374
|
-
Command?: string[];
|
|
375
|
-
Cpu?: number;
|
|
376
|
-
Environment?: EcsEnvironmentVariable[];
|
|
377
|
-
EnvironmentFiles?: EcsEnvironmentFile[];
|
|
378
|
-
Memory?: number;
|
|
379
|
-
MemoryReservation?: number;
|
|
380
|
-
Name?: string;
|
|
381
|
-
ResourceRequirements?: EcsResourceRequirement[];
|
|
378
|
+
Command?: string[] | undefined;
|
|
379
|
+
Cpu?: number | undefined;
|
|
380
|
+
Environment?: EcsEnvironmentVariable[] | undefined;
|
|
381
|
+
EnvironmentFiles?: EcsEnvironmentFile[] | undefined;
|
|
382
|
+
Memory?: number | undefined;
|
|
383
|
+
MemoryReservation?: number | undefined;
|
|
384
|
+
Name?: string | undefined;
|
|
385
|
+
ResourceRequirements?: EcsResourceRequirement[] | undefined;
|
|
382
386
|
}
|
|
383
387
|
export interface EcsEphemeralStorage {
|
|
384
388
|
sizeInGiB: number | undefined;
|
|
385
389
|
}
|
|
386
390
|
export interface EcsInferenceAcceleratorOverride {
|
|
387
|
-
deviceName?: string;
|
|
388
|
-
deviceType?: string;
|
|
391
|
+
deviceName?: string | undefined;
|
|
392
|
+
deviceType?: string | undefined;
|
|
389
393
|
}
|
|
390
394
|
export interface EcsTaskOverride {
|
|
391
|
-
ContainerOverrides?: EcsContainerOverride[];
|
|
392
|
-
Cpu?: string;
|
|
393
|
-
EphemeralStorage?: EcsEphemeralStorage;
|
|
394
|
-
ExecutionRoleArn?: string;
|
|
395
|
-
InferenceAcceleratorOverrides?: EcsInferenceAcceleratorOverride[];
|
|
396
|
-
Memory?: string;
|
|
397
|
-
TaskRoleArn?: string;
|
|
395
|
+
ContainerOverrides?: EcsContainerOverride[] | undefined;
|
|
396
|
+
Cpu?: string | undefined;
|
|
397
|
+
EphemeralStorage?: EcsEphemeralStorage | undefined;
|
|
398
|
+
ExecutionRoleArn?: string | undefined;
|
|
399
|
+
InferenceAcceleratorOverrides?: EcsInferenceAcceleratorOverride[] | undefined;
|
|
400
|
+
Memory?: string | undefined;
|
|
401
|
+
TaskRoleArn?: string | undefined;
|
|
398
402
|
}
|
|
399
403
|
export declare const PlacementConstraintType: {
|
|
400
404
|
readonly DISTINCT_INSTANCE: "distinctInstance";
|
|
@@ -403,8 +407,8 @@ export declare const PlacementConstraintType: {
|
|
|
403
407
|
export type PlacementConstraintType =
|
|
404
408
|
(typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
|
|
405
409
|
export interface PlacementConstraint {
|
|
406
|
-
type?: PlacementConstraintType;
|
|
407
|
-
expression?: string;
|
|
410
|
+
type?: PlacementConstraintType | undefined;
|
|
411
|
+
expression?: string | undefined;
|
|
408
412
|
}
|
|
409
413
|
export declare const PlacementStrategyType: {
|
|
410
414
|
readonly BINPACK: "binpack";
|
|
@@ -414,8 +418,8 @@ export declare const PlacementStrategyType: {
|
|
|
414
418
|
export type PlacementStrategyType =
|
|
415
419
|
(typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
|
|
416
420
|
export interface PlacementStrategy {
|
|
417
|
-
type?: PlacementStrategyType;
|
|
418
|
-
field?: string;
|
|
421
|
+
type?: PlacementStrategyType | undefined;
|
|
422
|
+
field?: string | undefined;
|
|
419
423
|
}
|
|
420
424
|
export declare const PropagateTags: {
|
|
421
425
|
readonly TASK_DEFINITION: "TASK_DEFINITION";
|
|
@@ -427,32 +431,32 @@ export interface Tag {
|
|
|
427
431
|
}
|
|
428
432
|
export interface PipeTargetEcsTaskParameters {
|
|
429
433
|
TaskDefinitionArn: string | undefined;
|
|
430
|
-
TaskCount?: number;
|
|
431
|
-
LaunchType?: LaunchType;
|
|
432
|
-
NetworkConfiguration?: NetworkConfiguration;
|
|
433
|
-
PlatformVersion?: string;
|
|
434
|
-
Group?: string;
|
|
435
|
-
CapacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
436
|
-
EnableECSManagedTags?: boolean;
|
|
437
|
-
EnableExecuteCommand?: boolean;
|
|
438
|
-
PlacementConstraints?: PlacementConstraint[];
|
|
439
|
-
PlacementStrategy?: PlacementStrategy[];
|
|
440
|
-
PropagateTags?: PropagateTags;
|
|
441
|
-
ReferenceId?: string;
|
|
442
|
-
Overrides?: EcsTaskOverride;
|
|
443
|
-
Tags?: Tag[];
|
|
434
|
+
TaskCount?: number | undefined;
|
|
435
|
+
LaunchType?: LaunchType | undefined;
|
|
436
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
437
|
+
PlatformVersion?: string | undefined;
|
|
438
|
+
Group?: string | undefined;
|
|
439
|
+
CapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
440
|
+
EnableECSManagedTags?: boolean | undefined;
|
|
441
|
+
EnableExecuteCommand?: boolean | undefined;
|
|
442
|
+
PlacementConstraints?: PlacementConstraint[] | undefined;
|
|
443
|
+
PlacementStrategy?: PlacementStrategy[] | undefined;
|
|
444
|
+
PropagateTags?: PropagateTags | undefined;
|
|
445
|
+
ReferenceId?: string | undefined;
|
|
446
|
+
Overrides?: EcsTaskOverride | undefined;
|
|
447
|
+
Tags?: Tag[] | undefined;
|
|
444
448
|
}
|
|
445
449
|
export interface PipeTargetEventBridgeEventBusParameters {
|
|
446
|
-
EndpointId?: string;
|
|
447
|
-
DetailType?: string;
|
|
448
|
-
Source?: string;
|
|
449
|
-
Resources?: string[];
|
|
450
|
-
Time?: string;
|
|
450
|
+
EndpointId?: string | undefined;
|
|
451
|
+
DetailType?: string | undefined;
|
|
452
|
+
Source?: string | undefined;
|
|
453
|
+
Resources?: string[] | undefined;
|
|
454
|
+
Time?: string | undefined;
|
|
451
455
|
}
|
|
452
456
|
export interface PipeTargetHttpParameters {
|
|
453
|
-
PathParameterValues?: string[];
|
|
454
|
-
HeaderParameters?: Record<string, string
|
|
455
|
-
QueryStringParameters?: Record<string, string
|
|
457
|
+
PathParameterValues?: string[] | undefined;
|
|
458
|
+
HeaderParameters?: Record<string, string> | undefined;
|
|
459
|
+
QueryStringParameters?: Record<string, string> | undefined;
|
|
456
460
|
}
|
|
457
461
|
export interface PipeTargetKinesisStreamParameters {
|
|
458
462
|
PartitionKey: string | undefined;
|
|
@@ -464,14 +468,14 @@ export declare const PipeTargetInvocationType: {
|
|
|
464
468
|
export type PipeTargetInvocationType =
|
|
465
469
|
(typeof PipeTargetInvocationType)[keyof typeof PipeTargetInvocationType];
|
|
466
470
|
export interface PipeTargetLambdaFunctionParameters {
|
|
467
|
-
InvocationType?: PipeTargetInvocationType;
|
|
471
|
+
InvocationType?: PipeTargetInvocationType | undefined;
|
|
468
472
|
}
|
|
469
473
|
export interface PipeTargetRedshiftDataParameters {
|
|
470
|
-
SecretManagerArn?: string;
|
|
474
|
+
SecretManagerArn?: string | undefined;
|
|
471
475
|
Database: string | undefined;
|
|
472
|
-
DbUser?: string;
|
|
473
|
-
StatementName?: string;
|
|
474
|
-
WithEvent?: boolean;
|
|
476
|
+
DbUser?: string | undefined;
|
|
477
|
+
StatementName?: string | undefined;
|
|
478
|
+
WithEvent?: boolean | undefined;
|
|
475
479
|
Sqls: string[] | undefined;
|
|
476
480
|
}
|
|
477
481
|
export interface SageMakerPipelineParameter {
|
|
@@ -479,14 +483,14 @@ export interface SageMakerPipelineParameter {
|
|
|
479
483
|
Value: string | undefined;
|
|
480
484
|
}
|
|
481
485
|
export interface PipeTargetSageMakerPipelineParameters {
|
|
482
|
-
PipelineParameterList?: SageMakerPipelineParameter[];
|
|
486
|
+
PipelineParameterList?: SageMakerPipelineParameter[] | undefined;
|
|
483
487
|
}
|
|
484
488
|
export interface PipeTargetSqsQueueParameters {
|
|
485
|
-
MessageGroupId?: string;
|
|
486
|
-
MessageDeduplicationId?: string;
|
|
489
|
+
MessageGroupId?: string | undefined;
|
|
490
|
+
MessageDeduplicationId?: string | undefined;
|
|
487
491
|
}
|
|
488
492
|
export interface PipeTargetStateMachineParameters {
|
|
489
|
-
InvocationType?: PipeTargetInvocationType;
|
|
493
|
+
InvocationType?: PipeTargetInvocationType | undefined;
|
|
490
494
|
}
|
|
491
495
|
export declare const DimensionValueType: {
|
|
492
496
|
readonly VARCHAR: "VARCHAR";
|
|
@@ -535,43 +539,49 @@ export declare const TimeFieldType: {
|
|
|
535
539
|
export type TimeFieldType = (typeof TimeFieldType)[keyof typeof TimeFieldType];
|
|
536
540
|
export interface PipeTargetTimestreamParameters {
|
|
537
541
|
TimeValue: string | undefined;
|
|
538
|
-
EpochTimeUnit?: EpochTimeUnit;
|
|
539
|
-
TimeFieldType?: TimeFieldType;
|
|
540
|
-
TimestampFormat?: string;
|
|
542
|
+
EpochTimeUnit?: EpochTimeUnit | undefined;
|
|
543
|
+
TimeFieldType?: TimeFieldType | undefined;
|
|
544
|
+
TimestampFormat?: string | undefined;
|
|
541
545
|
VersionValue: string | undefined;
|
|
542
546
|
DimensionMappings: DimensionMapping[] | undefined;
|
|
543
|
-
SingleMeasureMappings?: SingleMeasureMapping[];
|
|
544
|
-
MultiMeasureMappings?: MultiMeasureMapping[];
|
|
547
|
+
SingleMeasureMappings?: SingleMeasureMapping[] | undefined;
|
|
548
|
+
MultiMeasureMappings?: MultiMeasureMapping[] | undefined;
|
|
545
549
|
}
|
|
546
550
|
export interface PipeTargetParameters {
|
|
547
|
-
InputTemplate?: string;
|
|
548
|
-
LambdaFunctionParameters?: PipeTargetLambdaFunctionParameters;
|
|
549
|
-
StepFunctionStateMachineParameters?:
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
551
|
+
InputTemplate?: string | undefined;
|
|
552
|
+
LambdaFunctionParameters?: PipeTargetLambdaFunctionParameters | undefined;
|
|
553
|
+
StepFunctionStateMachineParameters?:
|
|
554
|
+
| PipeTargetStateMachineParameters
|
|
555
|
+
| undefined;
|
|
556
|
+
KinesisStreamParameters?: PipeTargetKinesisStreamParameters | undefined;
|
|
557
|
+
EcsTaskParameters?: PipeTargetEcsTaskParameters | undefined;
|
|
558
|
+
BatchJobParameters?: PipeTargetBatchJobParameters | undefined;
|
|
559
|
+
SqsQueueParameters?: PipeTargetSqsQueueParameters | undefined;
|
|
560
|
+
HttpParameters?: PipeTargetHttpParameters | undefined;
|
|
561
|
+
RedshiftDataParameters?: PipeTargetRedshiftDataParameters | undefined;
|
|
562
|
+
SageMakerPipelineParameters?:
|
|
563
|
+
| PipeTargetSageMakerPipelineParameters
|
|
564
|
+
| undefined;
|
|
565
|
+
EventBridgeEventBusParameters?:
|
|
566
|
+
| PipeTargetEventBridgeEventBusParameters
|
|
567
|
+
| undefined;
|
|
568
|
+
CloudWatchLogsParameters?: PipeTargetCloudWatchLogsParameters | undefined;
|
|
569
|
+
TimestreamParameters?: PipeTargetTimestreamParameters | undefined;
|
|
560
570
|
}
|
|
561
571
|
export interface CreatePipeRequest {
|
|
562
572
|
Name: string | undefined;
|
|
563
|
-
Description?: string;
|
|
564
|
-
DesiredState?: RequestedPipeState;
|
|
573
|
+
Description?: string | undefined;
|
|
574
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
565
575
|
Source: string | undefined;
|
|
566
|
-
SourceParameters?: PipeSourceParameters;
|
|
567
|
-
Enrichment?: string;
|
|
568
|
-
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
576
|
+
SourceParameters?: PipeSourceParameters | undefined;
|
|
577
|
+
Enrichment?: string | undefined;
|
|
578
|
+
EnrichmentParameters?: PipeEnrichmentParameters | undefined;
|
|
569
579
|
Target: string | undefined;
|
|
570
|
-
TargetParameters?: PipeTargetParameters;
|
|
580
|
+
TargetParameters?: PipeTargetParameters | undefined;
|
|
571
581
|
RoleArn: string | undefined;
|
|
572
|
-
Tags?: Record<string, string
|
|
573
|
-
LogConfiguration?: PipeLogConfigurationParameters;
|
|
574
|
-
KmsKeyIdentifier?: string;
|
|
582
|
+
Tags?: Record<string, string> | undefined;
|
|
583
|
+
LogConfiguration?: PipeLogConfigurationParameters | undefined;
|
|
584
|
+
KmsKeyIdentifier?: string | undefined;
|
|
575
585
|
}
|
|
576
586
|
export declare const PipeState: {
|
|
577
587
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -592,17 +602,17 @@ export declare const PipeState: {
|
|
|
592
602
|
};
|
|
593
603
|
export type PipeState = (typeof PipeState)[keyof typeof PipeState];
|
|
594
604
|
export interface CreatePipeResponse {
|
|
595
|
-
Arn?: string;
|
|
596
|
-
Name?: string;
|
|
597
|
-
DesiredState?: RequestedPipeState;
|
|
598
|
-
CurrentState?: PipeState;
|
|
599
|
-
CreationTime?: Date;
|
|
600
|
-
LastModifiedTime?: Date;
|
|
605
|
+
Arn?: string | undefined;
|
|
606
|
+
Name?: string | undefined;
|
|
607
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
608
|
+
CurrentState?: PipeState | undefined;
|
|
609
|
+
CreationTime?: Date | undefined;
|
|
610
|
+
LastModifiedTime?: Date | undefined;
|
|
601
611
|
}
|
|
602
612
|
export declare class InternalException extends __BaseException {
|
|
603
613
|
readonly name: "InternalException";
|
|
604
614
|
readonly $fault: "server";
|
|
605
|
-
retryAfterSeconds?: number;
|
|
615
|
+
retryAfterSeconds?: number | undefined;
|
|
606
616
|
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
607
617
|
}
|
|
608
618
|
export declare class NotFoundException extends __BaseException {
|
|
@@ -624,9 +634,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
624
634
|
export declare class ThrottlingException extends __BaseException {
|
|
625
635
|
readonly name: "ThrottlingException";
|
|
626
636
|
readonly $fault: "client";
|
|
627
|
-
serviceCode?: string;
|
|
628
|
-
quotaCode?: string;
|
|
629
|
-
retryAfterSeconds?: number;
|
|
637
|
+
serviceCode?: string | undefined;
|
|
638
|
+
quotaCode?: string | undefined;
|
|
639
|
+
retryAfterSeconds?: number | undefined;
|
|
630
640
|
constructor(
|
|
631
641
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
632
642
|
);
|
|
@@ -638,7 +648,7 @@ export interface ValidationExceptionField {
|
|
|
638
648
|
export declare class ValidationException extends __BaseException {
|
|
639
649
|
readonly name: "ValidationException";
|
|
640
650
|
readonly $fault: "client";
|
|
641
|
-
fieldList?: ValidationExceptionField[];
|
|
651
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
642
652
|
constructor(
|
|
643
653
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
644
654
|
);
|
|
@@ -654,179 +664,189 @@ export declare const RequestedPipeStateDescribeResponse: {
|
|
|
654
664
|
export type RequestedPipeStateDescribeResponse =
|
|
655
665
|
(typeof RequestedPipeStateDescribeResponse)[keyof typeof RequestedPipeStateDescribeResponse];
|
|
656
666
|
export interface DeletePipeResponse {
|
|
657
|
-
Arn?: string;
|
|
658
|
-
Name?: string;
|
|
659
|
-
DesiredState?: RequestedPipeStateDescribeResponse;
|
|
660
|
-
CurrentState?: PipeState;
|
|
661
|
-
CreationTime?: Date;
|
|
662
|
-
LastModifiedTime?: Date;
|
|
667
|
+
Arn?: string | undefined;
|
|
668
|
+
Name?: string | undefined;
|
|
669
|
+
DesiredState?: RequestedPipeStateDescribeResponse | undefined;
|
|
670
|
+
CurrentState?: PipeState | undefined;
|
|
671
|
+
CreationTime?: Date | undefined;
|
|
672
|
+
LastModifiedTime?: Date | undefined;
|
|
663
673
|
}
|
|
664
674
|
export interface DescribePipeRequest {
|
|
665
675
|
Name: string | undefined;
|
|
666
676
|
}
|
|
667
677
|
export interface FirehoseLogDestination {
|
|
668
|
-
DeliveryStreamArn?: string;
|
|
678
|
+
DeliveryStreamArn?: string | undefined;
|
|
669
679
|
}
|
|
670
680
|
export interface S3LogDestination {
|
|
671
|
-
BucketName?: string;
|
|
672
|
-
Prefix?: string;
|
|
673
|
-
BucketOwner?: string;
|
|
674
|
-
OutputFormat?: S3OutputFormat;
|
|
681
|
+
BucketName?: string | undefined;
|
|
682
|
+
Prefix?: string | undefined;
|
|
683
|
+
BucketOwner?: string | undefined;
|
|
684
|
+
OutputFormat?: S3OutputFormat | undefined;
|
|
675
685
|
}
|
|
676
686
|
export interface PipeLogConfiguration {
|
|
677
|
-
S3LogDestination?: S3LogDestination;
|
|
678
|
-
FirehoseLogDestination?: FirehoseLogDestination;
|
|
679
|
-
CloudwatchLogsLogDestination?: CloudwatchLogsLogDestination;
|
|
680
|
-
Level?: LogLevel;
|
|
681
|
-
IncludeExecutionData?: IncludeExecutionDataOption[];
|
|
687
|
+
S3LogDestination?: S3LogDestination | undefined;
|
|
688
|
+
FirehoseLogDestination?: FirehoseLogDestination | undefined;
|
|
689
|
+
CloudwatchLogsLogDestination?: CloudwatchLogsLogDestination | undefined;
|
|
690
|
+
Level?: LogLevel | undefined;
|
|
691
|
+
IncludeExecutionData?: IncludeExecutionDataOption[] | undefined;
|
|
682
692
|
}
|
|
683
693
|
export interface DescribePipeResponse {
|
|
684
|
-
Arn?: string;
|
|
685
|
-
Name?: string;
|
|
686
|
-
Description?: string;
|
|
687
|
-
DesiredState?: RequestedPipeStateDescribeResponse;
|
|
688
|
-
CurrentState?: PipeState;
|
|
689
|
-
StateReason?: string;
|
|
690
|
-
Source?: string;
|
|
691
|
-
SourceParameters?: PipeSourceParameters;
|
|
692
|
-
Enrichment?: string;
|
|
693
|
-
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
694
|
-
Target?: string;
|
|
695
|
-
TargetParameters?: PipeTargetParameters;
|
|
696
|
-
RoleArn?: string;
|
|
697
|
-
Tags?: Record<string, string
|
|
698
|
-
CreationTime?: Date;
|
|
699
|
-
LastModifiedTime?: Date;
|
|
700
|
-
LogConfiguration?: PipeLogConfiguration;
|
|
701
|
-
KmsKeyIdentifier?: string;
|
|
694
|
+
Arn?: string | undefined;
|
|
695
|
+
Name?: string | undefined;
|
|
696
|
+
Description?: string | undefined;
|
|
697
|
+
DesiredState?: RequestedPipeStateDescribeResponse | undefined;
|
|
698
|
+
CurrentState?: PipeState | undefined;
|
|
699
|
+
StateReason?: string | undefined;
|
|
700
|
+
Source?: string | undefined;
|
|
701
|
+
SourceParameters?: PipeSourceParameters | undefined;
|
|
702
|
+
Enrichment?: string | undefined;
|
|
703
|
+
EnrichmentParameters?: PipeEnrichmentParameters | undefined;
|
|
704
|
+
Target?: string | undefined;
|
|
705
|
+
TargetParameters?: PipeTargetParameters | undefined;
|
|
706
|
+
RoleArn?: string | undefined;
|
|
707
|
+
Tags?: Record<string, string> | undefined;
|
|
708
|
+
CreationTime?: Date | undefined;
|
|
709
|
+
LastModifiedTime?: Date | undefined;
|
|
710
|
+
LogConfiguration?: PipeLogConfiguration | undefined;
|
|
711
|
+
KmsKeyIdentifier?: string | undefined;
|
|
702
712
|
}
|
|
703
713
|
export interface ListPipesRequest {
|
|
704
|
-
NamePrefix?: string;
|
|
705
|
-
DesiredState?: RequestedPipeState;
|
|
706
|
-
CurrentState?: PipeState;
|
|
707
|
-
SourcePrefix?: string;
|
|
708
|
-
TargetPrefix?: string;
|
|
709
|
-
NextToken?: string;
|
|
710
|
-
Limit?: number;
|
|
714
|
+
NamePrefix?: string | undefined;
|
|
715
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
716
|
+
CurrentState?: PipeState | undefined;
|
|
717
|
+
SourcePrefix?: string | undefined;
|
|
718
|
+
TargetPrefix?: string | undefined;
|
|
719
|
+
NextToken?: string | undefined;
|
|
720
|
+
Limit?: number | undefined;
|
|
711
721
|
}
|
|
712
722
|
export interface Pipe {
|
|
713
|
-
Name?: string;
|
|
714
|
-
Arn?: string;
|
|
715
|
-
DesiredState?: RequestedPipeState;
|
|
716
|
-
CurrentState?: PipeState;
|
|
717
|
-
StateReason?: string;
|
|
718
|
-
CreationTime?: Date;
|
|
719
|
-
LastModifiedTime?: Date;
|
|
720
|
-
Source?: string;
|
|
721
|
-
Target?: string;
|
|
722
|
-
Enrichment?: string;
|
|
723
|
+
Name?: string | undefined;
|
|
724
|
+
Arn?: string | undefined;
|
|
725
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
726
|
+
CurrentState?: PipeState | undefined;
|
|
727
|
+
StateReason?: string | undefined;
|
|
728
|
+
CreationTime?: Date | undefined;
|
|
729
|
+
LastModifiedTime?: Date | undefined;
|
|
730
|
+
Source?: string | undefined;
|
|
731
|
+
Target?: string | undefined;
|
|
732
|
+
Enrichment?: string | undefined;
|
|
723
733
|
}
|
|
724
734
|
export interface ListPipesResponse {
|
|
725
|
-
Pipes?: Pipe[];
|
|
726
|
-
NextToken?: string;
|
|
735
|
+
Pipes?: Pipe[] | undefined;
|
|
736
|
+
NextToken?: string | undefined;
|
|
727
737
|
}
|
|
728
738
|
export interface ListTagsForResourceRequest {
|
|
729
739
|
resourceArn: string | undefined;
|
|
730
740
|
}
|
|
731
741
|
export interface ListTagsForResourceResponse {
|
|
732
|
-
tags?: Record<string, string
|
|
742
|
+
tags?: Record<string, string> | undefined;
|
|
733
743
|
}
|
|
734
744
|
export interface StartPipeRequest {
|
|
735
745
|
Name: string | undefined;
|
|
736
746
|
}
|
|
737
747
|
export interface StartPipeResponse {
|
|
738
|
-
Arn?: string;
|
|
739
|
-
Name?: string;
|
|
740
|
-
DesiredState?: RequestedPipeState;
|
|
741
|
-
CurrentState?: PipeState;
|
|
742
|
-
CreationTime?: Date;
|
|
743
|
-
LastModifiedTime?: Date;
|
|
748
|
+
Arn?: string | undefined;
|
|
749
|
+
Name?: string | undefined;
|
|
750
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
751
|
+
CurrentState?: PipeState | undefined;
|
|
752
|
+
CreationTime?: Date | undefined;
|
|
753
|
+
LastModifiedTime?: Date | undefined;
|
|
744
754
|
}
|
|
745
755
|
export interface StopPipeRequest {
|
|
746
756
|
Name: string | undefined;
|
|
747
757
|
}
|
|
748
758
|
export interface StopPipeResponse {
|
|
749
|
-
Arn?: string;
|
|
750
|
-
Name?: string;
|
|
751
|
-
DesiredState?: RequestedPipeState;
|
|
752
|
-
CurrentState?: PipeState;
|
|
753
|
-
CreationTime?: Date;
|
|
754
|
-
LastModifiedTime?: Date;
|
|
759
|
+
Arn?: string | undefined;
|
|
760
|
+
Name?: string | undefined;
|
|
761
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
762
|
+
CurrentState?: PipeState | undefined;
|
|
763
|
+
CreationTime?: Date | undefined;
|
|
764
|
+
LastModifiedTime?: Date | undefined;
|
|
755
765
|
}
|
|
756
766
|
export interface UpdatePipeSourceActiveMQBrokerParameters {
|
|
757
767
|
Credentials: MQBrokerAccessCredentials | undefined;
|
|
758
|
-
BatchSize?: number;
|
|
759
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
768
|
+
BatchSize?: number | undefined;
|
|
769
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
760
770
|
}
|
|
761
771
|
export interface UpdatePipeSourceDynamoDBStreamParameters {
|
|
762
|
-
BatchSize?: number;
|
|
763
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
764
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
765
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
766
|
-
MaximumRecordAgeInSeconds?: number;
|
|
767
|
-
MaximumRetryAttempts?: number;
|
|
768
|
-
ParallelizationFactor?: number;
|
|
772
|
+
BatchSize?: number | undefined;
|
|
773
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
774
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | undefined;
|
|
775
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
776
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
777
|
+
MaximumRetryAttempts?: number | undefined;
|
|
778
|
+
ParallelizationFactor?: number | undefined;
|
|
769
779
|
}
|
|
770
780
|
export interface UpdatePipeSourceKinesisStreamParameters {
|
|
771
|
-
BatchSize?: number;
|
|
772
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
773
|
-
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams;
|
|
774
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
775
|
-
MaximumRecordAgeInSeconds?: number;
|
|
776
|
-
MaximumRetryAttempts?: number;
|
|
777
|
-
ParallelizationFactor?: number;
|
|
781
|
+
BatchSize?: number | undefined;
|
|
782
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
783
|
+
OnPartialBatchItemFailure?: OnPartialBatchItemFailureStreams | undefined;
|
|
784
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
785
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
786
|
+
MaximumRetryAttempts?: number | undefined;
|
|
787
|
+
ParallelizationFactor?: number | undefined;
|
|
778
788
|
}
|
|
779
789
|
export interface UpdatePipeSourceManagedStreamingKafkaParameters {
|
|
780
|
-
BatchSize?: number;
|
|
781
|
-
Credentials?: MSKAccessCredentials;
|
|
782
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
790
|
+
BatchSize?: number | undefined;
|
|
791
|
+
Credentials?: MSKAccessCredentials | undefined;
|
|
792
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
783
793
|
}
|
|
784
794
|
export interface UpdatePipeSourceRabbitMQBrokerParameters {
|
|
785
795
|
Credentials: MQBrokerAccessCredentials | undefined;
|
|
786
|
-
BatchSize?: number;
|
|
787
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
796
|
+
BatchSize?: number | undefined;
|
|
797
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
788
798
|
}
|
|
789
799
|
export interface UpdatePipeSourceSelfManagedKafkaParameters {
|
|
790
|
-
BatchSize?: number;
|
|
791
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
792
|
-
Credentials?: SelfManagedKafkaAccessConfigurationCredentials;
|
|
793
|
-
ServerRootCaCertificate?: string;
|
|
794
|
-
Vpc?: SelfManagedKafkaAccessConfigurationVpc;
|
|
800
|
+
BatchSize?: number | undefined;
|
|
801
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
802
|
+
Credentials?: SelfManagedKafkaAccessConfigurationCredentials | undefined;
|
|
803
|
+
ServerRootCaCertificate?: string | undefined;
|
|
804
|
+
Vpc?: SelfManagedKafkaAccessConfigurationVpc | undefined;
|
|
795
805
|
}
|
|
796
806
|
export interface UpdatePipeSourceSqsQueueParameters {
|
|
797
|
-
BatchSize?: number;
|
|
798
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
807
|
+
BatchSize?: number | undefined;
|
|
808
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
799
809
|
}
|
|
800
810
|
export interface UpdatePipeSourceParameters {
|
|
801
|
-
FilterCriteria?: FilterCriteria;
|
|
802
|
-
KinesisStreamParameters?: UpdatePipeSourceKinesisStreamParameters;
|
|
803
|
-
DynamoDBStreamParameters?:
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
811
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
812
|
+
KinesisStreamParameters?: UpdatePipeSourceKinesisStreamParameters | undefined;
|
|
813
|
+
DynamoDBStreamParameters?:
|
|
814
|
+
| UpdatePipeSourceDynamoDBStreamParameters
|
|
815
|
+
| undefined;
|
|
816
|
+
SqsQueueParameters?: UpdatePipeSourceSqsQueueParameters | undefined;
|
|
817
|
+
ActiveMQBrokerParameters?:
|
|
818
|
+
| UpdatePipeSourceActiveMQBrokerParameters
|
|
819
|
+
| undefined;
|
|
820
|
+
RabbitMQBrokerParameters?:
|
|
821
|
+
| UpdatePipeSourceRabbitMQBrokerParameters
|
|
822
|
+
| undefined;
|
|
823
|
+
ManagedStreamingKafkaParameters?:
|
|
824
|
+
| UpdatePipeSourceManagedStreamingKafkaParameters
|
|
825
|
+
| undefined;
|
|
826
|
+
SelfManagedKafkaParameters?:
|
|
827
|
+
| UpdatePipeSourceSelfManagedKafkaParameters
|
|
828
|
+
| undefined;
|
|
809
829
|
}
|
|
810
830
|
export interface UpdatePipeRequest {
|
|
811
831
|
Name: string | undefined;
|
|
812
|
-
Description?: string;
|
|
813
|
-
DesiredState?: RequestedPipeState;
|
|
814
|
-
SourceParameters?: UpdatePipeSourceParameters;
|
|
815
|
-
Enrichment?: string;
|
|
816
|
-
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
817
|
-
Target?: string;
|
|
818
|
-
TargetParameters?: PipeTargetParameters;
|
|
832
|
+
Description?: string | undefined;
|
|
833
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
834
|
+
SourceParameters?: UpdatePipeSourceParameters | undefined;
|
|
835
|
+
Enrichment?: string | undefined;
|
|
836
|
+
EnrichmentParameters?: PipeEnrichmentParameters | undefined;
|
|
837
|
+
Target?: string | undefined;
|
|
838
|
+
TargetParameters?: PipeTargetParameters | undefined;
|
|
819
839
|
RoleArn: string | undefined;
|
|
820
|
-
LogConfiguration?: PipeLogConfigurationParameters;
|
|
821
|
-
KmsKeyIdentifier?: string;
|
|
840
|
+
LogConfiguration?: PipeLogConfigurationParameters | undefined;
|
|
841
|
+
KmsKeyIdentifier?: string | undefined;
|
|
822
842
|
}
|
|
823
843
|
export interface UpdatePipeResponse {
|
|
824
|
-
Arn?: string;
|
|
825
|
-
Name?: string;
|
|
826
|
-
DesiredState?: RequestedPipeState;
|
|
827
|
-
CurrentState?: PipeState;
|
|
828
|
-
CreationTime?: Date;
|
|
829
|
-
LastModifiedTime?: Date;
|
|
844
|
+
Arn?: string | undefined;
|
|
845
|
+
Name?: string | undefined;
|
|
846
|
+
DesiredState?: RequestedPipeState | undefined;
|
|
847
|
+
CurrentState?: PipeState | undefined;
|
|
848
|
+
CreationTime?: Date | undefined;
|
|
849
|
+
LastModifiedTime?: Date | undefined;
|
|
830
850
|
}
|
|
831
851
|
export interface TagResourceRequest {
|
|
832
852
|
resourceArn: string | undefined;
|