@aws-sdk/client-pipes 3.928.0 → 3.930.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.
Files changed (34) hide show
  1. package/dist-cjs/index.js +1279 -908
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/PipesClient.js +2 -0
  4. package/dist-es/commands/CreatePipeCommand.js +3 -10
  5. package/dist-es/commands/DeletePipeCommand.js +3 -9
  6. package/dist-es/commands/DescribePipeCommand.js +3 -10
  7. package/dist-es/commands/ListPipesCommand.js +3 -10
  8. package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
  9. package/dist-es/commands/StartPipeCommand.js +3 -9
  10. package/dist-es/commands/StopPipeCommand.js +3 -9
  11. package/dist-es/commands/TagResourceCommand.js +3 -10
  12. package/dist-es/commands/UntagResourceCommand.js +3 -9
  13. package/dist-es/commands/UpdatePipeCommand.js +3 -10
  14. package/dist-es/models/models_0.js +0 -264
  15. package/dist-es/runtimeConfig.shared.js +2 -0
  16. package/dist-es/schemas/schemas_0.js +1251 -0
  17. package/dist-types/PipesClient.d.ts +10 -1
  18. package/dist-types/models/models_0.d.ts +12 -139
  19. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  20. package/dist-types/runtimeConfig.d.ts +1 -0
  21. package/dist-types/runtimeConfig.native.d.ts +1 -0
  22. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  23. package/dist-types/schemas/schemas_0.d.ts +177 -0
  24. package/dist-types/ts3.4/PipesClient.d.ts +4 -0
  25. package/dist-types/ts3.4/models/models_0.d.ts +0 -104
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  30. package/dist-types/ts3.4/schemas/schemas_0.d.ts +184 -0
  31. package/package.json +33 -33
  32. package/dist-es/protocols/Aws_restJson1.js +0 -531
  33. package/dist-types/protocols/Aws_restJson1.d.ts +0 -92
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -125
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class PipesClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -110,12 +110,12 @@ class PipesClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class PipesServiceException extends smithyClient.ServiceException {
113
+ let PipesServiceException$1 = class PipesServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, PipesServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
120
  const AssignPublicIp = {
121
121
  DISABLED: "DISABLED",
@@ -130,7 +130,7 @@ const BatchJobDependencyType = {
130
130
  N_TO_N: "N_TO_N",
131
131
  SEQUENTIAL: "SEQUENTIAL",
132
132
  };
133
- class ConflictException extends PipesServiceException {
133
+ let ConflictException$1 = class ConflictException extends PipesServiceException$1 {
134
134
  name = "ConflictException";
135
135
  $fault = "client";
136
136
  resourceId;
@@ -145,7 +145,7 @@ class ConflictException extends PipesServiceException {
145
145
  this.resourceId = opts.resourceId;
146
146
  this.resourceType = opts.resourceType;
147
147
  }
148
- }
148
+ };
149
149
  const RequestedPipeState = {
150
150
  RUNNING: "RUNNING",
151
151
  STOPPED: "STOPPED",
@@ -164,14 +164,6 @@ const S3OutputFormat = {
164
164
  PLAIN: "plain",
165
165
  W3C: "w3c",
166
166
  };
167
- exports.MQBrokerAccessCredentials = void 0;
168
- (function (MQBrokerAccessCredentials) {
169
- MQBrokerAccessCredentials.visit = (value, visitor) => {
170
- if (value.BasicAuth !== undefined)
171
- return visitor.BasicAuth(value.BasicAuth);
172
- return visitor._(value.$unknown[0], value.$unknown[1]);
173
- };
174
- })(exports.MQBrokerAccessCredentials || (exports.MQBrokerAccessCredentials = {}));
175
167
  const OnPartialBatchItemFailureStreams = {
176
168
  AUTOMATIC_BISECT: "AUTOMATIC_BISECT",
177
169
  };
@@ -184,34 +176,10 @@ const KinesisStreamStartPosition = {
184
176
  LATEST: "LATEST",
185
177
  TRIM_HORIZON: "TRIM_HORIZON",
186
178
  };
187
- exports.MSKAccessCredentials = void 0;
188
- (function (MSKAccessCredentials) {
189
- MSKAccessCredentials.visit = (value, visitor) => {
190
- if (value.SaslScram512Auth !== undefined)
191
- return visitor.SaslScram512Auth(value.SaslScram512Auth);
192
- if (value.ClientCertificateTlsAuth !== undefined)
193
- return visitor.ClientCertificateTlsAuth(value.ClientCertificateTlsAuth);
194
- return visitor._(value.$unknown[0], value.$unknown[1]);
195
- };
196
- })(exports.MSKAccessCredentials || (exports.MSKAccessCredentials = {}));
197
179
  const MSKStartPosition = {
198
180
  LATEST: "LATEST",
199
181
  TRIM_HORIZON: "TRIM_HORIZON",
200
182
  };
201
- exports.SelfManagedKafkaAccessConfigurationCredentials = void 0;
202
- (function (SelfManagedKafkaAccessConfigurationCredentials) {
203
- SelfManagedKafkaAccessConfigurationCredentials.visit = (value, visitor) => {
204
- if (value.BasicAuth !== undefined)
205
- return visitor.BasicAuth(value.BasicAuth);
206
- if (value.SaslScram512Auth !== undefined)
207
- return visitor.SaslScram512Auth(value.SaslScram512Auth);
208
- if (value.SaslScram256Auth !== undefined)
209
- return visitor.SaslScram256Auth(value.SaslScram256Auth);
210
- if (value.ClientCertificateTlsAuth !== undefined)
211
- return visitor.ClientCertificateTlsAuth(value.ClientCertificateTlsAuth);
212
- return visitor._(value.$unknown[0], value.$unknown[1]);
213
- };
214
- })(exports.SelfManagedKafkaAccessConfigurationCredentials || (exports.SelfManagedKafkaAccessConfigurationCredentials = {}));
215
183
  const SelfManagedKafkaStartPosition = {
216
184
  LATEST: "LATEST",
217
185
  TRIM_HORIZON: "TRIM_HORIZON",
@@ -281,7 +249,7 @@ const PipeState = {
281
249
  UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED",
282
250
  UPDATING: "UPDATING",
283
251
  };
284
- class InternalException extends PipesServiceException {
252
+ let InternalException$1 = class InternalException extends PipesServiceException$1 {
285
253
  name = "InternalException";
286
254
  $fault = "server";
287
255
  retryAfterSeconds;
@@ -294,8 +262,8 @@ class InternalException extends PipesServiceException {
294
262
  Object.setPrototypeOf(this, InternalException.prototype);
295
263
  this.retryAfterSeconds = opts.retryAfterSeconds;
296
264
  }
297
- }
298
- class NotFoundException extends PipesServiceException {
265
+ };
266
+ let NotFoundException$1 = class NotFoundException extends PipesServiceException$1 {
299
267
  name = "NotFoundException";
300
268
  $fault = "client";
301
269
  constructor(opts) {
@@ -306,8 +274,8 @@ class NotFoundException extends PipesServiceException {
306
274
  });
307
275
  Object.setPrototypeOf(this, NotFoundException.prototype);
308
276
  }
309
- }
310
- class ServiceQuotaExceededException extends PipesServiceException {
277
+ };
278
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends PipesServiceException$1 {
311
279
  name = "ServiceQuotaExceededException";
312
280
  $fault = "client";
313
281
  resourceId;
@@ -326,8 +294,8 @@ class ServiceQuotaExceededException extends PipesServiceException {
326
294
  this.serviceCode = opts.serviceCode;
327
295
  this.quotaCode = opts.quotaCode;
328
296
  }
329
- }
330
- class ThrottlingException extends PipesServiceException {
297
+ };
298
+ let ThrottlingException$1 = class ThrottlingException extends PipesServiceException$1 {
331
299
  name = "ThrottlingException";
332
300
  $fault = "client";
333
301
  serviceCode;
@@ -344,8 +312,8 @@ class ThrottlingException extends PipesServiceException {
344
312
  this.quotaCode = opts.quotaCode;
345
313
  this.retryAfterSeconds = opts.retryAfterSeconds;
346
314
  }
347
- }
348
- class ValidationException extends PipesServiceException {
315
+ };
316
+ let ValidationException$1 = class ValidationException extends PipesServiceException$1 {
349
317
  name = "ValidationException";
350
318
  $fault = "client";
351
319
  fieldList;
@@ -358,784 +326,1266 @@ class ValidationException extends PipesServiceException {
358
326
  Object.setPrototypeOf(this, ValidationException.prototype);
359
327
  this.fieldList = opts.fieldList;
360
328
  }
361
- }
329
+ };
362
330
  const RequestedPipeStateDescribeResponse = {
363
331
  DELETED: "DELETED",
364
332
  RUNNING: "RUNNING",
365
333
  STOPPED: "STOPPED",
366
334
  };
367
- const AwsVpcConfigurationFilterSensitiveLog = (obj) => ({
368
- ...obj,
369
- ...(obj.Subnets && { Subnets: smithyClient.SENSITIVE_STRING }),
370
- ...(obj.SecurityGroups && { SecurityGroups: smithyClient.SENSITIVE_STRING }),
371
- });
372
- const CapacityProviderStrategyItemFilterSensitiveLog = (obj) => ({
373
- ...obj,
374
- ...(obj.capacityProvider && { capacityProvider: smithyClient.SENSITIVE_STRING }),
375
- });
376
- const PipeEnrichmentHttpParametersFilterSensitiveLog = (obj) => ({
377
- ...obj,
378
- ...(obj.PathParameterValues && { PathParameterValues: smithyClient.SENSITIVE_STRING }),
379
- ...(obj.HeaderParameters && { HeaderParameters: smithyClient.SENSITIVE_STRING }),
380
- ...(obj.QueryStringParameters && { QueryStringParameters: smithyClient.SENSITIVE_STRING }),
381
- });
382
- const PipeEnrichmentParametersFilterSensitiveLog = (obj) => ({
383
- ...obj,
384
- ...(obj.InputTemplate && { InputTemplate: smithyClient.SENSITIVE_STRING }),
385
- ...(obj.HttpParameters && { HttpParameters: PipeEnrichmentHttpParametersFilterSensitiveLog(obj.HttpParameters) }),
386
- });
387
- const PipeSourceActiveMQBrokerParametersFilterSensitiveLog = (obj) => ({
388
- ...obj,
389
- ...(obj.Credentials && { Credentials: obj.Credentials }),
390
- ...(obj.QueueName && { QueueName: smithyClient.SENSITIVE_STRING }),
391
- });
392
- const FilterFilterSensitiveLog = (obj) => ({
393
- ...obj,
394
- ...(obj.Pattern && { Pattern: smithyClient.SENSITIVE_STRING }),
395
- });
396
- const FilterCriteriaFilterSensitiveLog = (obj) => ({
397
- ...obj,
398
- ...(obj.Filters && { Filters: obj.Filters.map((item) => FilterFilterSensitiveLog(item)) }),
399
- });
400
- const PipeSourceManagedStreamingKafkaParametersFilterSensitiveLog = (obj) => ({
401
- ...obj,
402
- ...(obj.TopicName && { TopicName: smithyClient.SENSITIVE_STRING }),
403
- ...(obj.ConsumerGroupID && { ConsumerGroupID: smithyClient.SENSITIVE_STRING }),
404
- ...(obj.Credentials && { Credentials: obj.Credentials }),
405
- });
406
- const PipeSourceRabbitMQBrokerParametersFilterSensitiveLog = (obj) => ({
407
- ...obj,
408
- ...(obj.Credentials && { Credentials: obj.Credentials }),
409
- ...(obj.QueueName && { QueueName: smithyClient.SENSITIVE_STRING }),
410
- ...(obj.VirtualHost && { VirtualHost: smithyClient.SENSITIVE_STRING }),
411
- });
412
- const SelfManagedKafkaAccessConfigurationVpcFilterSensitiveLog = (obj) => ({
413
- ...obj,
414
- ...(obj.Subnets && { Subnets: smithyClient.SENSITIVE_STRING }),
415
- ...(obj.SecurityGroup && { SecurityGroup: smithyClient.SENSITIVE_STRING }),
416
- });
417
- const PipeSourceSelfManagedKafkaParametersFilterSensitiveLog = (obj) => ({
418
- ...obj,
419
- ...(obj.TopicName && { TopicName: smithyClient.SENSITIVE_STRING }),
420
- ...(obj.AdditionalBootstrapServers && { AdditionalBootstrapServers: smithyClient.SENSITIVE_STRING }),
421
- ...(obj.ConsumerGroupID && { ConsumerGroupID: smithyClient.SENSITIVE_STRING }),
422
- ...(obj.Credentials && { Credentials: obj.Credentials }),
423
- ...(obj.Vpc && { Vpc: SelfManagedKafkaAccessConfigurationVpcFilterSensitiveLog(obj.Vpc) }),
424
- });
425
- const PipeSourceParametersFilterSensitiveLog = (obj) => ({
426
- ...obj,
427
- ...(obj.FilterCriteria && { FilterCriteria: FilterCriteriaFilterSensitiveLog(obj.FilterCriteria) }),
428
- ...(obj.ActiveMQBrokerParameters && {
429
- ActiveMQBrokerParameters: PipeSourceActiveMQBrokerParametersFilterSensitiveLog(obj.ActiveMQBrokerParameters),
430
- }),
431
- ...(obj.RabbitMQBrokerParameters && {
432
- RabbitMQBrokerParameters: PipeSourceRabbitMQBrokerParametersFilterSensitiveLog(obj.RabbitMQBrokerParameters),
433
- }),
434
- ...(obj.ManagedStreamingKafkaParameters && {
435
- ManagedStreamingKafkaParameters: PipeSourceManagedStreamingKafkaParametersFilterSensitiveLog(obj.ManagedStreamingKafkaParameters),
436
- }),
437
- ...(obj.SelfManagedKafkaParameters && {
438
- SelfManagedKafkaParameters: PipeSourceSelfManagedKafkaParametersFilterSensitiveLog(obj.SelfManagedKafkaParameters),
439
- }),
440
- });
441
- const NetworkConfigurationFilterSensitiveLog = (obj) => ({
442
- ...obj,
443
- ...(obj.awsvpcConfiguration && {
444
- awsvpcConfiguration: AwsVpcConfigurationFilterSensitiveLog(obj.awsvpcConfiguration),
445
- }),
446
- });
447
- const PlacementConstraintFilterSensitiveLog = (obj) => ({
448
- ...obj,
449
- ...(obj.expression && { expression: smithyClient.SENSITIVE_STRING }),
450
- });
451
- const PlacementStrategyFilterSensitiveLog = (obj) => ({
452
- ...obj,
453
- ...(obj.field && { field: smithyClient.SENSITIVE_STRING }),
454
- });
455
- const TagFilterSensitiveLog = (obj) => ({
456
- ...obj,
457
- ...(obj.Value && { Value: smithyClient.SENSITIVE_STRING }),
458
- });
459
- const PipeTargetEcsTaskParametersFilterSensitiveLog = (obj) => ({
460
- ...obj,
461
- ...(obj.NetworkConfiguration && {
462
- NetworkConfiguration: NetworkConfigurationFilterSensitiveLog(obj.NetworkConfiguration),
463
- }),
464
- ...(obj.CapacityProviderStrategy && {
465
- CapacityProviderStrategy: obj.CapacityProviderStrategy.map((item) => CapacityProviderStrategyItemFilterSensitiveLog(item)),
466
- }),
467
- ...(obj.PlacementConstraints && {
468
- PlacementConstraints: obj.PlacementConstraints.map((item) => PlacementConstraintFilterSensitiveLog(item)),
469
- }),
470
- ...(obj.PlacementStrategy && {
471
- PlacementStrategy: obj.PlacementStrategy.map((item) => PlacementStrategyFilterSensitiveLog(item)),
472
- }),
473
- ...(obj.ReferenceId && { ReferenceId: smithyClient.SENSITIVE_STRING }),
474
- ...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
475
- });
476
- const PipeTargetEventBridgeEventBusParametersFilterSensitiveLog = (obj) => ({
477
- ...obj,
478
- ...(obj.EndpointId && { EndpointId: smithyClient.SENSITIVE_STRING }),
479
- ...(obj.DetailType && { DetailType: smithyClient.SENSITIVE_STRING }),
480
- ...(obj.Source && { Source: smithyClient.SENSITIVE_STRING }),
481
- });
482
- const PipeTargetHttpParametersFilterSensitiveLog = (obj) => ({
483
- ...obj,
484
- ...(obj.PathParameterValues && { PathParameterValues: smithyClient.SENSITIVE_STRING }),
485
- ...(obj.HeaderParameters && { HeaderParameters: smithyClient.SENSITIVE_STRING }),
486
- ...(obj.QueryStringParameters && { QueryStringParameters: smithyClient.SENSITIVE_STRING }),
487
- });
488
- const PipeTargetKinesisStreamParametersFilterSensitiveLog = (obj) => ({
489
- ...obj,
490
- ...(obj.PartitionKey && { PartitionKey: smithyClient.SENSITIVE_STRING }),
491
- });
492
- const PipeTargetRedshiftDataParametersFilterSensitiveLog = (obj) => ({
493
- ...obj,
494
- ...(obj.Database && { Database: smithyClient.SENSITIVE_STRING }),
495
- ...(obj.DbUser && { DbUser: smithyClient.SENSITIVE_STRING }),
496
- ...(obj.StatementName && { StatementName: smithyClient.SENSITIVE_STRING }),
497
- ...(obj.Sqls && { Sqls: smithyClient.SENSITIVE_STRING }),
498
- });
499
- const SageMakerPipelineParameterFilterSensitiveLog = (obj) => ({
500
- ...obj,
501
- ...(obj.Name && { Name: smithyClient.SENSITIVE_STRING }),
502
- ...(obj.Value && { Value: smithyClient.SENSITIVE_STRING }),
503
- });
504
- const PipeTargetSageMakerPipelineParametersFilterSensitiveLog = (obj) => ({
505
- ...obj,
506
- ...(obj.PipelineParameterList && {
507
- PipelineParameterList: obj.PipelineParameterList.map((item) => SageMakerPipelineParameterFilterSensitiveLog(item)),
508
- }),
509
- });
510
- const PipeTargetSqsQueueParametersFilterSensitiveLog = (obj) => ({
511
- ...obj,
512
- ...(obj.MessageGroupId && { MessageGroupId: smithyClient.SENSITIVE_STRING }),
513
- ...(obj.MessageDeduplicationId && { MessageDeduplicationId: smithyClient.SENSITIVE_STRING }),
514
- });
515
- const PipeTargetParametersFilterSensitiveLog = (obj) => ({
516
- ...obj,
517
- ...(obj.InputTemplate && { InputTemplate: smithyClient.SENSITIVE_STRING }),
518
- ...(obj.KinesisStreamParameters && {
519
- KinesisStreamParameters: PipeTargetKinesisStreamParametersFilterSensitiveLog(obj.KinesisStreamParameters),
520
- }),
521
- ...(obj.EcsTaskParameters && {
522
- EcsTaskParameters: PipeTargetEcsTaskParametersFilterSensitiveLog(obj.EcsTaskParameters),
523
- }),
524
- ...(obj.SqsQueueParameters && {
525
- SqsQueueParameters: PipeTargetSqsQueueParametersFilterSensitiveLog(obj.SqsQueueParameters),
526
- }),
527
- ...(obj.HttpParameters && { HttpParameters: PipeTargetHttpParametersFilterSensitiveLog(obj.HttpParameters) }),
528
- ...(obj.RedshiftDataParameters && {
529
- RedshiftDataParameters: PipeTargetRedshiftDataParametersFilterSensitiveLog(obj.RedshiftDataParameters),
530
- }),
531
- ...(obj.SageMakerPipelineParameters && {
532
- SageMakerPipelineParameters: PipeTargetSageMakerPipelineParametersFilterSensitiveLog(obj.SageMakerPipelineParameters),
533
- }),
534
- ...(obj.EventBridgeEventBusParameters && {
535
- EventBridgeEventBusParameters: PipeTargetEventBridgeEventBusParametersFilterSensitiveLog(obj.EventBridgeEventBusParameters),
536
- }),
537
- });
538
- const CreatePipeRequestFilterSensitiveLog = (obj) => ({
539
- ...obj,
540
- ...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
541
- ...(obj.SourceParameters && { SourceParameters: PipeSourceParametersFilterSensitiveLog(obj.SourceParameters) }),
542
- ...(obj.EnrichmentParameters && {
543
- EnrichmentParameters: PipeEnrichmentParametersFilterSensitiveLog(obj.EnrichmentParameters),
544
- }),
545
- ...(obj.TargetParameters && { TargetParameters: PipeTargetParametersFilterSensitiveLog(obj.TargetParameters) }),
546
- ...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
547
- });
548
- const DescribePipeResponseFilterSensitiveLog = (obj) => ({
549
- ...obj,
550
- ...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
551
- ...(obj.SourceParameters && { SourceParameters: PipeSourceParametersFilterSensitiveLog(obj.SourceParameters) }),
552
- ...(obj.EnrichmentParameters && {
553
- EnrichmentParameters: PipeEnrichmentParametersFilterSensitiveLog(obj.EnrichmentParameters),
554
- }),
555
- ...(obj.TargetParameters && { TargetParameters: PipeTargetParametersFilterSensitiveLog(obj.TargetParameters) }),
556
- ...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
557
- });
558
- const ListPipesRequestFilterSensitiveLog = (obj) => ({
559
- ...obj,
560
- ...(obj.NextToken && { NextToken: smithyClient.SENSITIVE_STRING }),
561
- });
562
- const ListPipesResponseFilterSensitiveLog = (obj) => ({
563
- ...obj,
564
- ...(obj.NextToken && { NextToken: smithyClient.SENSITIVE_STRING }),
565
- });
566
- const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
567
- ...obj,
568
- ...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
569
- });
570
- const UpdatePipeSourceSelfManagedKafkaParametersFilterSensitiveLog = (obj) => ({
571
- ...obj,
572
- ...(obj.Credentials && { Credentials: obj.Credentials }),
573
- ...(obj.Vpc && { Vpc: SelfManagedKafkaAccessConfigurationVpcFilterSensitiveLog(obj.Vpc) }),
574
- });
575
- const UpdatePipeSourceParametersFilterSensitiveLog = (obj) => ({
576
- ...obj,
577
- ...(obj.FilterCriteria && { FilterCriteria: FilterCriteriaFilterSensitiveLog(obj.FilterCriteria) }),
578
- ...(obj.ActiveMQBrokerParameters && { ActiveMQBrokerParameters: obj.ActiveMQBrokerParameters }),
579
- ...(obj.RabbitMQBrokerParameters && { RabbitMQBrokerParameters: obj.RabbitMQBrokerParameters }),
580
- ...(obj.ManagedStreamingKafkaParameters && { ManagedStreamingKafkaParameters: obj.ManagedStreamingKafkaParameters }),
581
- ...(obj.SelfManagedKafkaParameters && {
582
- SelfManagedKafkaParameters: UpdatePipeSourceSelfManagedKafkaParametersFilterSensitiveLog(obj.SelfManagedKafkaParameters),
583
- }),
584
- });
585
- const UpdatePipeRequestFilterSensitiveLog = (obj) => ({
586
- ...obj,
587
- ...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
588
- ...(obj.SourceParameters && { SourceParameters: UpdatePipeSourceParametersFilterSensitiveLog(obj.SourceParameters) }),
589
- ...(obj.EnrichmentParameters && {
590
- EnrichmentParameters: PipeEnrichmentParametersFilterSensitiveLog(obj.EnrichmentParameters),
591
- }),
592
- ...(obj.TargetParameters && { TargetParameters: PipeTargetParametersFilterSensitiveLog(obj.TargetParameters) }),
593
- });
594
- const TagResourceRequestFilterSensitiveLog = (obj) => ({
595
- ...obj,
596
- ...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
597
- });
598
335
 
599
- const se_CreatePipeCommand = async (input, context) => {
600
- const b = core.requestBuilder(input, context);
601
- const headers = {
602
- "content-type": "application/json",
603
- };
604
- b.bp("/v1/pipes/{Name}");
605
- b.p("Name", () => input.Name, "{Name}", false);
606
- let body;
607
- body = JSON.stringify(smithyClient.take(input, {
608
- Description: [],
609
- DesiredState: [],
610
- Enrichment: [],
611
- EnrichmentParameters: (_) => smithyClient._json(_),
612
- KmsKeyIdentifier: [],
613
- LogConfiguration: (_) => smithyClient._json(_),
614
- RoleArn: [],
615
- Source: [],
616
- SourceParameters: (_) => se_PipeSourceParameters(_),
617
- Tags: (_) => smithyClient._json(_),
618
- Target: [],
619
- TargetParameters: (_) => smithyClient._json(_),
620
- }));
621
- b.m("POST").h(headers).b(body);
622
- return b.build();
623
- };
624
- const se_DeletePipeCommand = async (input, context) => {
625
- const b = core.requestBuilder(input, context);
626
- const headers = {};
627
- b.bp("/v1/pipes/{Name}");
628
- b.p("Name", () => input.Name, "{Name}", false);
629
- let body;
630
- b.m("DELETE").h(headers).b(body);
631
- return b.build();
632
- };
633
- const se_DescribePipeCommand = async (input, context) => {
634
- const b = core.requestBuilder(input, context);
635
- const headers = {};
636
- b.bp("/v1/pipes/{Name}");
637
- b.p("Name", () => input.Name, "{Name}", false);
638
- let body;
639
- b.m("GET").h(headers).b(body);
640
- return b.build();
641
- };
642
- const se_ListPipesCommand = async (input, context) => {
643
- const b = core.requestBuilder(input, context);
644
- const headers = {};
645
- b.bp("/v1/pipes");
646
- const query = smithyClient.map({
647
- [_NP]: [, input[_NP]],
648
- [_DS]: [, input[_DS]],
649
- [_CS]: [, input[_CS]],
650
- [_SP]: [, input[_SP]],
651
- [_TP]: [, input[_TP]],
652
- [_NT]: [, input[_NT]],
653
- [_L]: [() => input.Limit !== void 0, () => input[_L].toString()],
654
- });
655
- let body;
656
- b.m("GET").h(headers).q(query).b(body);
657
- return b.build();
658
- };
659
- const se_ListTagsForResourceCommand = async (input, context) => {
660
- const b = core.requestBuilder(input, context);
661
- const headers = {};
662
- b.bp("/tags/{resourceArn}");
663
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
664
- let body;
665
- b.m("GET").h(headers).b(body);
666
- return b.build();
667
- };
668
- const se_StartPipeCommand = async (input, context) => {
669
- const b = core.requestBuilder(input, context);
670
- const headers = {};
671
- b.bp("/v1/pipes/{Name}/start");
672
- b.p("Name", () => input.Name, "{Name}", false);
673
- let body;
674
- b.m("POST").h(headers).b(body);
675
- return b.build();
676
- };
677
- const se_StopPipeCommand = async (input, context) => {
678
- const b = core.requestBuilder(input, context);
679
- const headers = {};
680
- b.bp("/v1/pipes/{Name}/stop");
681
- b.p("Name", () => input.Name, "{Name}", false);
682
- let body;
683
- b.m("POST").h(headers).b(body);
684
- return b.build();
685
- };
686
- const se_TagResourceCommand = async (input, context) => {
687
- const b = core.requestBuilder(input, context);
688
- const headers = {
689
- "content-type": "application/json",
690
- };
691
- b.bp("/tags/{resourceArn}");
692
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
693
- let body;
694
- body = JSON.stringify(smithyClient.take(input, {
695
- tags: (_) => smithyClient._json(_),
696
- }));
697
- b.m("POST").h(headers).b(body);
698
- return b.build();
699
- };
700
- const se_UntagResourceCommand = async (input, context) => {
701
- const b = core.requestBuilder(input, context);
702
- const headers = {};
703
- b.bp("/tags/{resourceArn}");
704
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
705
- const query = smithyClient.map({
706
- [_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
707
- });
708
- let body;
709
- b.m("DELETE").h(headers).q(query).b(body);
710
- return b.build();
711
- };
712
- const se_UpdatePipeCommand = async (input, context) => {
713
- const b = core.requestBuilder(input, context);
714
- const headers = {
715
- "content-type": "application/json",
716
- };
717
- b.bp("/v1/pipes/{Name}");
718
- b.p("Name", () => input.Name, "{Name}", false);
719
- let body;
720
- body = JSON.stringify(smithyClient.take(input, {
721
- Description: [],
722
- DesiredState: [],
723
- Enrichment: [],
724
- EnrichmentParameters: (_) => smithyClient._json(_),
725
- KmsKeyIdentifier: [],
726
- LogConfiguration: (_) => smithyClient._json(_),
727
- RoleArn: [],
728
- SourceParameters: (_) => smithyClient._json(_),
729
- Target: [],
730
- TargetParameters: (_) => smithyClient._json(_),
731
- }));
732
- b.m("PUT").h(headers).b(body);
733
- return b.build();
734
- };
735
- const de_CreatePipeCommand = async (output, context) => {
736
- if (output.statusCode !== 200 && output.statusCode >= 300) {
737
- return de_CommandError(output, context);
738
- }
739
- const contents = smithyClient.map({
740
- $metadata: deserializeMetadata(output),
741
- });
742
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
743
- const doc = smithyClient.take(data, {
744
- Arn: smithyClient.expectString,
745
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
746
- CurrentState: smithyClient.expectString,
747
- DesiredState: smithyClient.expectString,
748
- LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
749
- Name: smithyClient.expectString,
750
- });
751
- Object.assign(contents, doc);
752
- return contents;
753
- };
754
- const de_DeletePipeCommand = async (output, context) => {
755
- if (output.statusCode !== 200 && output.statusCode >= 300) {
756
- return de_CommandError(output, context);
757
- }
758
- const contents = smithyClient.map({
759
- $metadata: deserializeMetadata(output),
760
- });
761
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
762
- const doc = smithyClient.take(data, {
763
- Arn: smithyClient.expectString,
764
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
765
- CurrentState: smithyClient.expectString,
766
- DesiredState: smithyClient.expectString,
767
- LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
768
- Name: smithyClient.expectString,
769
- });
770
- Object.assign(contents, doc);
771
- return contents;
772
- };
773
- const de_DescribePipeCommand = async (output, context) => {
774
- if (output.statusCode !== 200 && output.statusCode >= 300) {
775
- return de_CommandError(output, context);
776
- }
777
- const contents = smithyClient.map({
778
- $metadata: deserializeMetadata(output),
779
- });
780
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
781
- const doc = smithyClient.take(data, {
782
- Arn: smithyClient.expectString,
783
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
784
- CurrentState: smithyClient.expectString,
785
- Description: smithyClient.expectString,
786
- DesiredState: smithyClient.expectString,
787
- Enrichment: smithyClient.expectString,
788
- EnrichmentParameters: smithyClient._json,
789
- KmsKeyIdentifier: smithyClient.expectString,
790
- LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
791
- LogConfiguration: smithyClient._json,
792
- Name: smithyClient.expectString,
793
- RoleArn: smithyClient.expectString,
794
- Source: smithyClient.expectString,
795
- SourceParameters: (_) => de_PipeSourceParameters(_),
796
- StateReason: smithyClient.expectString,
797
- Tags: smithyClient._json,
798
- Target: smithyClient.expectString,
799
- TargetParameters: smithyClient._json,
800
- });
801
- Object.assign(contents, doc);
802
- return contents;
803
- };
804
- const de_ListPipesCommand = async (output, context) => {
805
- if (output.statusCode !== 200 && output.statusCode >= 300) {
806
- return de_CommandError(output, context);
807
- }
808
- const contents = smithyClient.map({
809
- $metadata: deserializeMetadata(output),
810
- });
811
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
812
- const doc = smithyClient.take(data, {
813
- NextToken: smithyClient.expectString,
814
- Pipes: (_) => de_PipeList(_),
815
- });
816
- Object.assign(contents, doc);
817
- return contents;
818
- };
819
- const de_ListTagsForResourceCommand = async (output, context) => {
820
- if (output.statusCode !== 200 && output.statusCode >= 300) {
821
- return de_CommandError(output, context);
822
- }
823
- const contents = smithyClient.map({
824
- $metadata: deserializeMetadata(output),
825
- });
826
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
827
- const doc = smithyClient.take(data, {
828
- tags: smithyClient._json,
829
- });
830
- Object.assign(contents, doc);
831
- return contents;
832
- };
833
- const de_StartPipeCommand = async (output, context) => {
834
- if (output.statusCode !== 200 && output.statusCode >= 300) {
835
- return de_CommandError(output, context);
836
- }
837
- const contents = smithyClient.map({
838
- $metadata: deserializeMetadata(output),
839
- });
840
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
841
- const doc = smithyClient.take(data, {
842
- Arn: smithyClient.expectString,
843
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
844
- CurrentState: smithyClient.expectString,
845
- DesiredState: smithyClient.expectString,
846
- LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
847
- Name: smithyClient.expectString,
848
- });
849
- Object.assign(contents, doc);
850
- return contents;
851
- };
852
- const de_StopPipeCommand = async (output, context) => {
853
- if (output.statusCode !== 200 && output.statusCode >= 300) {
854
- return de_CommandError(output, context);
855
- }
856
- const contents = smithyClient.map({
857
- $metadata: deserializeMetadata(output),
858
- });
859
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
860
- const doc = smithyClient.take(data, {
861
- Arn: smithyClient.expectString,
862
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
863
- CurrentState: smithyClient.expectString,
864
- DesiredState: smithyClient.expectString,
865
- LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
866
- Name: smithyClient.expectString,
867
- });
868
- Object.assign(contents, doc);
869
- return contents;
870
- };
871
- const de_TagResourceCommand = async (output, context) => {
872
- if (output.statusCode !== 200 && output.statusCode >= 300) {
873
- return de_CommandError(output, context);
874
- }
875
- const contents = smithyClient.map({
876
- $metadata: deserializeMetadata(output),
877
- });
878
- await smithyClient.collectBody(output.body, context);
879
- return contents;
880
- };
881
- const de_UntagResourceCommand = async (output, context) => {
882
- if (output.statusCode !== 200 && output.statusCode >= 300) {
883
- return de_CommandError(output, context);
884
- }
885
- const contents = smithyClient.map({
886
- $metadata: deserializeMetadata(output),
887
- });
888
- await smithyClient.collectBody(output.body, context);
889
- return contents;
890
- };
891
- const de_UpdatePipeCommand = async (output, context) => {
892
- if (output.statusCode !== 200 && output.statusCode >= 300) {
893
- return de_CommandError(output, context);
894
- }
895
- const contents = smithyClient.map({
896
- $metadata: deserializeMetadata(output),
897
- });
898
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
899
- const doc = smithyClient.take(data, {
900
- Arn: smithyClient.expectString,
901
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
902
- CurrentState: smithyClient.expectString,
903
- DesiredState: smithyClient.expectString,
904
- LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
905
- Name: smithyClient.expectString,
906
- });
907
- Object.assign(contents, doc);
908
- return contents;
909
- };
910
- const de_CommandError = async (output, context) => {
911
- const parsedOutput = {
912
- ...output,
913
- body: await core$1.parseJsonErrorBody(output.body, context),
914
- };
915
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
916
- switch (errorCode) {
917
- case "ConflictException":
918
- case "com.amazonaws.pipes#ConflictException":
919
- throw await de_ConflictExceptionRes(parsedOutput);
920
- case "InternalException":
921
- case "com.amazonaws.pipes#InternalException":
922
- throw await de_InternalExceptionRes(parsedOutput);
923
- case "NotFoundException":
924
- case "com.amazonaws.pipes#NotFoundException":
925
- throw await de_NotFoundExceptionRes(parsedOutput);
926
- case "ServiceQuotaExceededException":
927
- case "com.amazonaws.pipes#ServiceQuotaExceededException":
928
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
929
- case "ThrottlingException":
930
- case "com.amazonaws.pipes#ThrottlingException":
931
- throw await de_ThrottlingExceptionRes(parsedOutput);
932
- case "ValidationException":
933
- case "com.amazonaws.pipes#ValidationException":
934
- throw await de_ValidationExceptionRes(parsedOutput);
935
- default:
936
- const parsedBody = parsedOutput.body;
937
- return throwDefaultError({
938
- output,
939
- parsedBody,
940
- errorCode,
941
- });
942
- }
943
- };
944
- const throwDefaultError = smithyClient.withBaseException(PipesServiceException);
945
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
946
- const contents = smithyClient.map({});
947
- const data = parsedOutput.body;
948
- const doc = smithyClient.take(data, {
949
- message: smithyClient.expectString,
950
- resourceId: smithyClient.expectString,
951
- resourceType: smithyClient.expectString,
952
- });
953
- Object.assign(contents, doc);
954
- const exception = new ConflictException({
955
- $metadata: deserializeMetadata(parsedOutput),
956
- ...contents,
957
- });
958
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
959
- };
960
- const de_InternalExceptionRes = async (parsedOutput, context) => {
961
- const contents = smithyClient.map({
962
- [_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
963
- });
964
- const data = parsedOutput.body;
965
- const doc = smithyClient.take(data, {
966
- message: smithyClient.expectString,
967
- });
968
- Object.assign(contents, doc);
969
- const exception = new InternalException({
970
- $metadata: deserializeMetadata(parsedOutput),
971
- ...contents,
972
- });
973
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
974
- };
975
- const de_NotFoundExceptionRes = async (parsedOutput, context) => {
976
- const contents = smithyClient.map({});
977
- const data = parsedOutput.body;
978
- const doc = smithyClient.take(data, {
979
- message: smithyClient.expectString,
980
- });
981
- Object.assign(contents, doc);
982
- const exception = new NotFoundException({
983
- $metadata: deserializeMetadata(parsedOutput),
984
- ...contents,
985
- });
986
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
987
- };
988
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
989
- const contents = smithyClient.map({});
990
- const data = parsedOutput.body;
991
- const doc = smithyClient.take(data, {
992
- message: smithyClient.expectString,
993
- quotaCode: smithyClient.expectString,
994
- resourceId: smithyClient.expectString,
995
- resourceType: smithyClient.expectString,
996
- serviceCode: smithyClient.expectString,
997
- });
998
- Object.assign(contents, doc);
999
- const exception = new ServiceQuotaExceededException({
1000
- $metadata: deserializeMetadata(parsedOutput),
1001
- ...contents,
1002
- });
1003
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1004
- };
1005
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
1006
- const contents = smithyClient.map({
1007
- [_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
1008
- });
1009
- const data = parsedOutput.body;
1010
- const doc = smithyClient.take(data, {
1011
- message: smithyClient.expectString,
1012
- quotaCode: smithyClient.expectString,
1013
- serviceCode: smithyClient.expectString,
1014
- });
1015
- Object.assign(contents, doc);
1016
- const exception = new ThrottlingException({
1017
- $metadata: deserializeMetadata(parsedOutput),
1018
- ...contents,
1019
- });
1020
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1021
- };
1022
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1023
- const contents = smithyClient.map({});
1024
- const data = parsedOutput.body;
1025
- const doc = smithyClient.take(data, {
1026
- fieldList: smithyClient._json,
1027
- message: smithyClient.expectString,
1028
- });
1029
- Object.assign(contents, doc);
1030
- const exception = new ValidationException({
1031
- $metadata: deserializeMetadata(parsedOutput),
1032
- ...contents,
1033
- });
1034
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1035
- };
1036
- const se_PipeSourceKinesisStreamParameters = (input, context) => {
1037
- return smithyClient.take(input, {
1038
- BatchSize: [],
1039
- DeadLetterConfig: smithyClient._json,
1040
- MaximumBatchingWindowInSeconds: [],
1041
- MaximumRecordAgeInSeconds: [],
1042
- MaximumRetryAttempts: [],
1043
- OnPartialBatchItemFailure: [],
1044
- ParallelizationFactor: [],
1045
- StartingPosition: [],
1046
- StartingPositionTimestamp: (_) => _.getTime() / 1_000,
1047
- });
1048
- };
1049
- const se_PipeSourceParameters = (input, context) => {
1050
- return smithyClient.take(input, {
1051
- ActiveMQBrokerParameters: smithyClient._json,
1052
- DynamoDBStreamParameters: smithyClient._json,
1053
- FilterCriteria: smithyClient._json,
1054
- KinesisStreamParameters: (_) => se_PipeSourceKinesisStreamParameters(_),
1055
- ManagedStreamingKafkaParameters: smithyClient._json,
1056
- RabbitMQBrokerParameters: smithyClient._json,
1057
- SelfManagedKafkaParameters: smithyClient._json,
1058
- SqsQueueParameters: smithyClient._json,
1059
- });
1060
- };
1061
- const de_Pipe = (output, context) => {
1062
- return smithyClient.take(output, {
1063
- Arn: smithyClient.expectString,
1064
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1065
- CurrentState: smithyClient.expectString,
1066
- DesiredState: smithyClient.expectString,
1067
- Enrichment: smithyClient.expectString,
1068
- LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1069
- Name: smithyClient.expectString,
1070
- Source: smithyClient.expectString,
1071
- StateReason: smithyClient.expectString,
1072
- Target: smithyClient.expectString,
1073
- });
1074
- };
1075
- const de_PipeList = (output, context) => {
1076
- const retVal = (output || [])
1077
- .filter((e) => e != null)
1078
- .map((entry) => {
1079
- return de_Pipe(entry);
1080
- });
1081
- return retVal;
1082
- };
1083
- const de_PipeSourceKinesisStreamParameters = (output, context) => {
1084
- return smithyClient.take(output, {
1085
- BatchSize: smithyClient.expectInt32,
1086
- DeadLetterConfig: smithyClient._json,
1087
- MaximumBatchingWindowInSeconds: smithyClient.expectInt32,
1088
- MaximumRecordAgeInSeconds: smithyClient.expectInt32,
1089
- MaximumRetryAttempts: smithyClient.expectInt32,
1090
- OnPartialBatchItemFailure: smithyClient.expectString,
1091
- ParallelizationFactor: smithyClient.expectInt32,
1092
- StartingPosition: smithyClient.expectString,
1093
- StartingPositionTimestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1094
- });
1095
- };
1096
- const de_PipeSourceParameters = (output, context) => {
1097
- return smithyClient.take(output, {
1098
- ActiveMQBrokerParameters: smithyClient._json,
1099
- DynamoDBStreamParameters: smithyClient._json,
1100
- FilterCriteria: smithyClient._json,
1101
- KinesisStreamParameters: (_) => de_PipeSourceKinesisStreamParameters(_),
1102
- ManagedStreamingKafkaParameters: smithyClient._json,
1103
- RabbitMQBrokerParameters: smithyClient._json,
1104
- SelfManagedKafkaParameters: smithyClient._json,
1105
- SqsQueueParameters: smithyClient._json,
1106
- });
1107
- };
1108
- const deserializeMetadata = (output) => ({
1109
- httpStatusCode: output.statusCode,
1110
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1111
- extendedRequestId: output.headers["x-amz-id-2"],
1112
- cfId: output.headers["x-amz-cf-id"],
1113
- });
336
+ const _A = "Attempts";
337
+ const _ABS = "AdditionalBootstrapServers";
338
+ const _AMQBP = "ActiveMQBrokerParameters";
339
+ const _AP = "ArrayProperties";
340
+ const _API = "AssignPublicIp";
341
+ const _AVC = "AwsVpcConfiguration";
342
+ const _Ar = "Arn";
343
+ const _BA = "BasicAuth";
344
+ const _BAP = "BatchArrayProperties";
345
+ const _BCO = "BatchContainerOverrides";
346
+ const _BDO = "BatchDependsOn";
347
+ const _BEV = "BatchEnvironmentVariable";
348
+ const _BEVL = "BatchEnvironmentVariableList";
349
+ const _BJD = "BatchJobDependency";
350
+ const _BJP = "BatchJobParameters";
351
+ const _BN = "BucketName";
352
+ const _BO = "BucketOwner";
353
+ const _BRR = "BatchResourceRequirement";
354
+ const _BRRL = "BatchResourceRequirementsList";
355
+ const _BRS = "BatchRetryStrategy";
356
+ const _BS = "BatchSize";
357
+ const _C = "Command";
358
+ const _CCTA = "ClientCertificateTlsAuth";
359
+ const _CE = "ConflictException";
360
+ const _CGID = "ConsumerGroupID";
361
+ const _CLLD = "CloudwatchLogsLogDestination";
362
+ const _CLLDP = "CloudwatchLogsLogDestinationParameters";
363
+ const _CO = "ContainerOverrides";
364
+ const _CP = "CapacityProvider";
365
+ const _CPR = "CreatePipeRequest";
366
+ const _CPRr = "CreatePipeResponse";
367
+ const _CPS = "CapacityProviderStrategy";
368
+ const _CPSI = "CapacityProviderStrategyItem";
369
+ const _CPr = "CreatePipe";
1114
370
  const _CS = "CurrentState";
371
+ const _CT = "CreationTime";
372
+ const _CWLP = "CloudWatchLogsParameters";
373
+ const _Cp = "Cpu";
374
+ const _Cr = "Credentials";
375
+ const _D = "Database";
376
+ const _DDBSP = "DynamoDBStreamParameters";
377
+ const _DLC = "DeadLetterConfig";
378
+ const _DM = "DimensionMapping";
379
+ const _DMi = "DimensionMappings";
380
+ const _DN = "DimensionName";
381
+ const _DO = "DependsOn";
382
+ const _DP = "DeletePipe";
383
+ const _DPR = "DeletePipeRequest";
384
+ const _DPRe = "DeletePipeResponse";
385
+ const _DPRes = "DescribePipeRequest";
386
+ const _DPResc = "DescribePipeResponse";
387
+ const _DPe = "DescribePipe";
1115
388
  const _DS = "DesiredState";
389
+ const _DSA = "DeliveryStreamArn";
390
+ const _DT = "DetailType";
391
+ const _DU = "DbUser";
392
+ const _DV = "DimensionValue";
393
+ const _DVT = "DimensionValueType";
394
+ const _De = "Description";
395
+ const _E = "Environment";
396
+ const _EBDT = "EventBridgeDetailType";
397
+ const _EBEBP = "EventBridgeEventBusParameters";
398
+ const _EBEI = "EventBridgeEndpointId";
399
+ const _EBES = "EventBridgeEventSource";
400
+ const _ECO = "EcsContainerOverride";
401
+ const _ECOL = "EcsContainerOverrideList";
402
+ const _EEC = "EnableExecuteCommand";
403
+ const _EECSMT = "EnableECSManagedTags";
404
+ const _EEF = "EcsEnvironmentFile";
405
+ const _EEFL = "EcsEnvironmentFileList";
406
+ const _EES = "EcsEphemeralStorage";
407
+ const _EEV = "EcsEnvironmentVariable";
408
+ const _EEVL = "EcsEnvironmentVariableList";
409
+ const _EF = "EnvironmentFiles";
410
+ const _EI = "EndpointId";
411
+ const _EIAO = "EcsInferenceAcceleratorOverride";
412
+ const _EIAOL = "EcsInferenceAcceleratorOverrideList";
413
+ const _EP = "EventPattern";
414
+ const _EPn = "EnrichmentParameters";
415
+ const _ERA = "ExecutionRoleArn";
416
+ const _ERR = "EcsResourceRequirement";
417
+ const _ERRL = "EcsResourceRequirementsList";
418
+ const _ES = "EndpointString";
419
+ const _ESp = "EphemeralStorage";
420
+ const _ETO = "EcsTaskOverride";
421
+ const _ETP = "EcsTaskParameters";
422
+ const _ETU = "EpochTimeUnit";
423
+ const _En = "Enrichment";
424
+ const _F = "Filter";
425
+ const _FC = "FilterCriteria";
426
+ const _FL = "FilterList";
427
+ const _FLD = "FirehoseLogDestination";
428
+ const _FLDP = "FirehoseLogDestinationParameters";
429
+ const _Fi = "Filters";
430
+ const _G = "Group";
431
+ const _HP = "HeaderParameters";
432
+ const _HPM = "HeaderParametersMap";
433
+ const _HPt = "HttpParameters";
434
+ const _HV = "HeaderValue";
435
+ const _IAO = "InferenceAcceleratorOverrides";
436
+ const _IE = "InternalException";
437
+ const _IED = "IncludeExecutionData";
438
+ const _IT = "InputTemplate";
439
+ const _ITn = "InstanceType";
440
+ const _ITnv = "InvocationType";
441
+ const _JD = "JobDefinition";
442
+ const _JI = "JobId";
443
+ const _JN = "JobName";
444
+ const _K = "Key";
445
+ const _KBS = "KafkaBootstrapServers";
446
+ const _KKI = "KmsKeyIdentifier";
447
+ const _KPK = "KinesisPartitionKey";
448
+ const _KSP = "KinesisStreamParameters";
449
+ const _KTN = "KafkaTopicName";
1116
450
  const _L = "Limit";
451
+ const _LC = "LogConfiguration";
452
+ const _LFP = "LambdaFunctionParameters";
453
+ const _LGA = "LogGroupArn";
454
+ const _LMT = "LastModifiedTime";
455
+ const _LP = "ListPipes";
456
+ const _LPR = "ListPipesRequest";
457
+ const _LPRi = "ListPipesResponse";
458
+ const _LSN = "LogStreamName";
459
+ const _LT = "LaunchType";
460
+ const _LTFR = "ListTagsForResource";
461
+ const _LTFRR = "ListTagsForResourceRequest";
462
+ const _LTFRRi = "ListTagsForResourceResponse";
463
+ const _Le = "Level";
464
+ const _M = "Memory";
465
+ const _MBWIS = "MaximumBatchingWindowInSeconds";
466
+ const _MDI = "MessageDeduplicationId";
467
+ const _MGI = "MessageGroupId";
468
+ const _MMAM = "MultiMeasureAttributeMapping";
469
+ const _MMAMu = "MultiMeasureAttributeMappings";
470
+ const _MMAN = "MultiMeasureAttributeName";
471
+ const _MMM = "MultiMeasureMapping";
472
+ const _MMMu = "MultiMeasureMappings";
473
+ const _MMN = "MultiMeasureName";
474
+ const _MN = "MeasureName";
475
+ const _MQBAC = "MQBrokerAccessCredentials";
476
+ const _MQBQN = "MQBrokerQueueName";
477
+ const _MR = "MemoryReservation";
478
+ const _MRA = "MaximumRetryAttempts";
479
+ const _MRAIS = "MaximumRecordAgeInSeconds";
480
+ const _MSKAC = "MSKAccessCredentials";
481
+ const _MSKP = "ManagedStreamingKafkaParameters";
482
+ const _MV = "MeasureValue";
483
+ const _MVT = "MeasureValueType";
484
+ const _N = "Name";
485
+ const _NC = "NetworkConfiguration";
486
+ const _NFE = "NotFoundException";
1117
487
  const _NP = "NamePrefix";
1118
488
  const _NT = "NextToken";
1119
- const _SP = "SourcePrefix";
1120
- const _TP = "TargetPrefix";
489
+ const _O = "Overrides";
490
+ const _OF = "OutputFormat";
491
+ const _OPBIF = "OnPartialBatchItemFailure";
492
+ const _P = "Pattern";
493
+ const _PC = "PlacementConstraints";
494
+ const _PCE = "PlacementConstraintExpression";
495
+ const _PCl = "PlacementConstraint";
496
+ const _PD = "PipeDescription";
497
+ const _PEHP = "PipeEnrichmentHttpParameters";
498
+ const _PEP = "PipeEnrichmentParameters";
499
+ const _PF = "ParallelizationFactor";
500
+ const _PK = "PartitionKey";
501
+ const _PL = "PipeList";
502
+ const _PLC = "PipeLogConfiguration";
503
+ const _PLCP = "PipeLogConfigurationParameters";
504
+ const _PP = "PathParameter";
505
+ const _PPL = "PipelineParameterList";
506
+ const _PPLa = "PathParameterList";
507
+ const _PPV = "PathParameterValues";
508
+ const _PS = "PlacementStrategy";
509
+ const _PSAMQBP = "PipeSourceActiveMQBrokerParameters";
510
+ const _PSDDBSP = "PipeSourceDynamoDBStreamParameters";
511
+ const _PSF = "PlacementStrategyField";
512
+ const _PSKSP = "PipeSourceKinesisStreamParameters";
513
+ const _PSMSKP = "PipeSourceManagedStreamingKafkaParameters";
514
+ const _PSP = "PipeSourceParameters";
515
+ const _PSRMQBP = "PipeSourceRabbitMQBrokerParameters";
516
+ const _PSSMKP = "PipeSourceSelfManagedKafkaParameters";
517
+ const _PSSQP = "PipeSourceSqsQueueParameters";
518
+ const _PSl = "PlacementStrategies";
519
+ const _PT = "PropagateTags";
520
+ const _PTBJP = "PipeTargetBatchJobParameters";
521
+ const _PTCWLP = "PipeTargetCloudWatchLogsParameters";
522
+ const _PTEBEBP = "PipeTargetEventBridgeEventBusParameters";
523
+ const _PTETP = "PipeTargetEcsTaskParameters";
524
+ const _PTHP = "PipeTargetHttpParameters";
525
+ const _PTKSP = "PipeTargetKinesisStreamParameters";
526
+ const _PTLFP = "PipeTargetLambdaFunctionParameters";
527
+ const _PTP = "PipeTargetParameters";
528
+ const _PTRDP = "PipeTargetRedshiftDataParameters";
529
+ const _PTSMP = "PipeTargetStateMachineParameters";
530
+ const _PTSMPP = "PipeTargetSageMakerPipelineParameters";
531
+ const _PTSQP = "PipeTargetSqsQueueParameters";
532
+ const _PTTP = "PipeTargetTimestreamParameters";
533
+ const _PV = "PlatformVersion";
534
+ const _Pa = "Parameters";
535
+ const _Pi = "Pipes";
536
+ const _Pip = "Pipe";
537
+ const _Pr = "Prefix";
538
+ const _QN = "QueueName";
539
+ const _QSP = "QueryStringParameters";
540
+ const _QSPM = "QueryStringParametersMap";
541
+ const _QSV = "QueryStringValue";
542
+ const _R = "Resources";
543
+ const _RA = "RoleArn";
544
+ const _RA_ = "Retry-After";
545
+ const _RDP = "RedshiftDataParameters";
546
+ const _RI = "ReferenceId";
547
+ const _RMQBP = "RabbitMQBrokerParameters";
548
+ const _RR = "ResourceRequirements";
549
+ const _RS = "RetryStrategy";
550
+ const _S = "Sql";
551
+ const _SFSMP = "StepFunctionStateMachineParameters";
552
+ const _SG = "SecurityGroup";
553
+ const _SGI = "SecurityGroupId";
554
+ const _SGIe = "SecurityGroupIds";
555
+ const _SGe = "SecurityGroups";
556
+ const _SI = "SubnetId";
557
+ const _SIu = "SubnetIds";
558
+ const _SLD = "S3LogDestination";
559
+ const _SLDP = "S3LogDestinationParameters";
560
+ const _SMA = "SecretManagerArn";
561
+ const _SMKACC = "SelfManagedKafkaAccessConfigurationCredentials";
562
+ const _SMKACV = "SelfManagedKafkaAccessConfigurationVpc";
563
+ const _SMKP = "SelfManagedKafkaParameters";
564
+ const _SMM = "SingleMeasureMappings";
565
+ const _SMMi = "SingleMeasureMapping";
566
+ const _SMPP = "SageMakerPipelineParameters";
567
+ const _SMPPL = "SageMakerPipelineParameterList";
568
+ const _SMPPN = "SageMakerPipelineParameterName";
569
+ const _SMPPV = "SageMakerPipelineParameterValue";
570
+ const _SMPPa = "SageMakerPipelineParameter";
571
+ const _SN = "StatementName";
572
+ const _SP = "SourceParameters";
573
+ const _SPR = "StartPipeRequest";
574
+ const _SPRt = "StartPipeResponse";
575
+ const _SPRto = "StopPipeRequest";
576
+ const _SPRtop = "StopPipeResponse";
577
+ const _SPT = "StartingPositionTimestamp";
578
+ const _SPo = "SourcePrefix";
579
+ const _SPt = "StartingPosition";
580
+ const _SPta = "StartPipe";
581
+ const _SPto = "StopPipe";
582
+ const _SQEE = "ServiceQuotaExceededException";
583
+ const _SQP = "SqsQueueParameters";
584
+ const _SR = "StateReason";
585
+ const _SRCC = "ServerRootCaCertificate";
586
+ const _SSA = "SaslScram512Auth";
587
+ const _SSAa = "SaslScram256Auth";
588
+ const _Si = "Size";
589
+ const _So = "Source";
590
+ const _Sq = "Sqls";
591
+ const _Su = "Subnet";
592
+ const _Sub = "Subnets";
593
+ const _T = "Type";
594
+ const _TC = "TaskCount";
595
+ const _TDA = "TaskDefinitionArn";
596
+ const _TE = "ThrottlingException";
597
+ const _TF = "TimestampFormat";
598
+ const _TFT = "TimeFieldType";
599
+ const _TL = "TagList";
600
+ const _TM = "TagMap";
601
+ const _TN = "TopicName";
602
+ const _TP = "TargetParameters";
603
+ const _TPa = "TargetPrefix";
604
+ const _TPi = "TimestreamParameters";
605
+ const _TR = "TagResource";
606
+ const _TRA = "TaskRoleArn";
607
+ const _TRR = "TagResourceRequest";
608
+ const _TRRa = "TagResourceResponse";
609
+ const _TV = "TagValue";
610
+ const _TVi = "TimeValue";
611
+ const _Ta = "Target";
612
+ const _Tag = "Tags";
613
+ const _Tag_ = "Tag";
614
+ const _Ti = "Timestamp";
615
+ const _Tim = "Time";
616
+ const _UP = "UpdatePipe";
617
+ const _UPR = "UpdatePipeRequest";
618
+ const _UPRp = "UpdatePipeResponse";
619
+ const _UPSAMQBP = "UpdatePipeSourceActiveMQBrokerParameters";
620
+ const _UPSDDBSP = "UpdatePipeSourceDynamoDBStreamParameters";
621
+ const _UPSKSP = "UpdatePipeSourceKinesisStreamParameters";
622
+ const _UPSMSKP = "UpdatePipeSourceManagedStreamingKafkaParameters";
623
+ const _UPSP = "UpdatePipeSourceParameters";
624
+ const _UPSRMQBP = "UpdatePipeSourceRabbitMQBrokerParameters";
625
+ const _UPSSMKP = "UpdatePipeSourceSelfManagedKafkaParameters";
626
+ const _UPSSQP = "UpdatePipeSourceSqsQueueParameters";
627
+ const _UR = "UntagResource";
628
+ const _URI = "URI";
629
+ const _URR = "UntagResourceRequest";
630
+ const _URRn = "UntagResourceResponse";
631
+ const _V = "Value";
632
+ const _VE = "ValidationException";
633
+ const _VEF = "ValidationExceptionField";
634
+ const _VEFL = "ValidationExceptionFieldList";
635
+ const _VH = "VirtualHost";
636
+ const _VV = "VersionValue";
637
+ const _Vp = "Vpc";
638
+ const _WE = "WithEvent";
639
+ const _aC = "awsvpcConfiguration";
640
+ const _b = "base";
641
+ const _c = "client";
642
+ const _cP = "capacityProvider";
643
+ const _dN = "deviceName";
644
+ const _dT = "deviceType";
645
+ const _e = "error";
646
+ const _ex = "expression";
647
+ const _f = "field";
648
+ const _fL = "fieldList";
649
+ const _h = "http";
650
+ const _hE = "httpError";
651
+ const _hH = "httpHeader";
652
+ const _hQ = "httpQuery";
653
+ const _m = "message";
654
+ const _n = "name";
655
+ const _qC = "quotaCode";
656
+ const _rA = "resourceArn";
1121
657
  const _rAS = "retryAfterSeconds";
1122
- const _ra = "retry-after";
658
+ const _rI = "resourceId";
659
+ const _rT = "resourceType";
660
+ const _s = "server";
661
+ const _sC = "serviceCode";
662
+ const _sIGB = "sizeInGiB";
663
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.pipes";
664
+ const _t = "type";
1123
665
  const _tK = "tagKeys";
666
+ const _ta = "tags";
667
+ const _v = "value";
668
+ const _w = "weight";
669
+ const n0 = "com.amazonaws.pipes";
670
+ var CapacityProvider = [0, n0, _CP, 8, 0];
671
+ var Database = [0, n0, _D, 8, 0];
672
+ var DbUser = [0, n0, _DU, 8, 0];
673
+ var EndpointString = [0, n0, _ES, 8, 0];
674
+ var EventBridgeDetailType = [0, n0, _EBDT, 8, 0];
675
+ var EventBridgeEndpointId = [0, n0, _EBEI, 8, 0];
676
+ var EventBridgeEventSource = [0, n0, _EBES, 8, 0];
677
+ var EventPattern = [0, n0, _EP, 8, 0];
678
+ var HeaderValue = [0, n0, _HV, 8, 0];
679
+ var InputTemplate = [0, n0, _IT, 8, 0];
680
+ var KafkaTopicName = [0, n0, _KTN, 8, 0];
681
+ var KinesisPartitionKey = [0, n0, _KPK, 8, 0];
682
+ var MessageDeduplicationId = [0, n0, _MDI, 8, 0];
683
+ var MessageGroupId = [0, n0, _MGI, 8, 0];
684
+ var MQBrokerQueueName = [0, n0, _MQBQN, 8, 0];
685
+ var NextToken = [0, n0, _NT, 8, 0];
686
+ var PathParameter = [0, n0, _PP, 8, 0];
687
+ var PipeDescription = [0, n0, _PD, 8, 0];
688
+ var PlacementConstraintExpression = [0, n0, _PCE, 8, 0];
689
+ var PlacementStrategyField = [0, n0, _PSF, 8, 0];
690
+ var QueryStringValue = [0, n0, _QSV, 8, 0];
691
+ var ReferenceId = [0, n0, _RI, 8, 0];
692
+ var SageMakerPipelineParameterName = [0, n0, _SMPPN, 8, 0];
693
+ var SageMakerPipelineParameterValue = [0, n0, _SMPPV, 8, 0];
694
+ var SecurityGroup = [0, n0, _SG, 8, 0];
695
+ var SecurityGroupId = [0, n0, _SGI, 8, 0];
696
+ var Sql = [0, n0, _S, 8, 0];
697
+ var StatementName = [0, n0, _SN, 8, 0];
698
+ var Subnet = [0, n0, _Su, 8, 0];
699
+ var SubnetId = [0, n0, _SI, 8, 0];
700
+ var TagValue = [0, n0, _TV, 8, 0];
701
+ var URI = [0, n0, _URI, 8, 0];
702
+ var AwsVpcConfiguration = [
703
+ 3,
704
+ n0,
705
+ _AVC,
706
+ 0,
707
+ [_Sub, _SGe, _API],
708
+ [[() => Subnets, 0], [() => SecurityGroups, 0], 0],
709
+ ];
710
+ var BatchArrayProperties = [3, n0, _BAP, 0, [_Si], [1]];
711
+ var BatchContainerOverrides = [
712
+ 3,
713
+ n0,
714
+ _BCO,
715
+ 0,
716
+ [_C, _E, _ITn, _RR],
717
+ [64 | 0, () => BatchEnvironmentVariableList, 0, () => BatchResourceRequirementsList],
718
+ ];
719
+ var BatchEnvironmentVariable = [3, n0, _BEV, 0, [_N, _V], [0, 0]];
720
+ var BatchJobDependency = [3, n0, _BJD, 0, [_JI, _T], [0, 0]];
721
+ var BatchResourceRequirement = [3, n0, _BRR, 0, [_T, _V], [0, 0]];
722
+ var BatchRetryStrategy = [3, n0, _BRS, 0, [_A], [1]];
723
+ var CapacityProviderStrategyItem = [
724
+ 3,
725
+ n0,
726
+ _CPSI,
727
+ 0,
728
+ [_cP, _w, _b],
729
+ [[() => CapacityProvider, 0], 1, 1],
730
+ ];
731
+ var CloudwatchLogsLogDestination = [3, n0, _CLLD, 0, [_LGA], [0]];
732
+ var CloudwatchLogsLogDestinationParameters = [3, n0, _CLLDP, 0, [_LGA], [0]];
733
+ var ConflictException = [
734
+ -3,
735
+ n0,
736
+ _CE,
737
+ {
738
+ [_e]: _c,
739
+ [_hE]: 409,
740
+ },
741
+ [_m, _rI, _rT],
742
+ [0, 0, 0],
743
+ ];
744
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
745
+ var CreatePipeRequest = [
746
+ 3,
747
+ n0,
748
+ _CPR,
749
+ 0,
750
+ [_N, _De, _DS, _So, _SP, _En, _EPn, _Ta, _TP, _RA, _Tag, _LC, _KKI],
751
+ [
752
+ [0, 1],
753
+ [() => PipeDescription, 0],
754
+ 0,
755
+ 0,
756
+ [() => PipeSourceParameters, 0],
757
+ 0,
758
+ [() => PipeEnrichmentParameters, 0],
759
+ 0,
760
+ [() => PipeTargetParameters, 0],
761
+ 0,
762
+ [() => TagMap, 0],
763
+ () => PipeLogConfigurationParameters,
764
+ 0,
765
+ ],
766
+ ];
767
+ var CreatePipeResponse = [
768
+ 3,
769
+ n0,
770
+ _CPRr,
771
+ 0,
772
+ [_Ar, _N, _DS, _CS, _CT, _LMT],
773
+ [0, 0, 0, 0, 4, 4],
774
+ ];
775
+ var DeadLetterConfig = [3, n0, _DLC, 0, [_Ar], [0]];
776
+ var DeletePipeRequest = [3, n0, _DPR, 0, [_N], [[0, 1]]];
777
+ var DeletePipeResponse = [
778
+ 3,
779
+ n0,
780
+ _DPRe,
781
+ 0,
782
+ [_Ar, _N, _DS, _CS, _CT, _LMT],
783
+ [0, 0, 0, 0, 4, 4],
784
+ ];
785
+ var DescribePipeRequest = [3, n0, _DPRes, 0, [_N], [[0, 1]]];
786
+ var DescribePipeResponse = [
787
+ 3,
788
+ n0,
789
+ _DPResc,
790
+ 0,
791
+ [_Ar, _N, _De, _DS, _CS, _SR, _So, _SP, _En, _EPn, _Ta, _TP, _RA, _Tag, _CT, _LMT, _LC, _KKI],
792
+ [
793
+ 0,
794
+ 0,
795
+ [() => PipeDescription, 0],
796
+ 0,
797
+ 0,
798
+ 0,
799
+ 0,
800
+ [() => PipeSourceParameters, 0],
801
+ 0,
802
+ [() => PipeEnrichmentParameters, 0],
803
+ 0,
804
+ [() => PipeTargetParameters, 0],
805
+ 0,
806
+ [() => TagMap, 0],
807
+ 4,
808
+ 4,
809
+ () => PipeLogConfiguration,
810
+ 0,
811
+ ],
812
+ ];
813
+ var DimensionMapping = [3, n0, _DM, 0, [_DV, _DVT, _DN], [0, 0, 0]];
814
+ var EcsContainerOverride = [
815
+ 3,
816
+ n0,
817
+ _ECO,
818
+ 0,
819
+ [_C, _Cp, _E, _EF, _M, _MR, _N, _RR],
820
+ [
821
+ 64 | 0,
822
+ 1,
823
+ () => EcsEnvironmentVariableList,
824
+ () => EcsEnvironmentFileList,
825
+ 1,
826
+ 1,
827
+ 0,
828
+ () => EcsResourceRequirementsList,
829
+ ],
830
+ ];
831
+ var EcsEnvironmentFile = [3, n0, _EEF, 0, [_t, _v], [0, 0]];
832
+ var EcsEnvironmentVariable = [3, n0, _EEV, 0, [_n, _v], [0, 0]];
833
+ var EcsEphemeralStorage = [3, n0, _EES, 0, [_sIGB], [1]];
834
+ var EcsInferenceAcceleratorOverride = [3, n0, _EIAO, 0, [_dN, _dT], [0, 0]];
835
+ var EcsResourceRequirement = [3, n0, _ERR, 0, [_t, _v], [0, 0]];
836
+ var EcsTaskOverride = [
837
+ 3,
838
+ n0,
839
+ _ETO,
840
+ 0,
841
+ [_CO, _Cp, _ESp, _ERA, _IAO, _M, _TRA],
842
+ [() => EcsContainerOverrideList, 0, () => EcsEphemeralStorage, 0, () => EcsInferenceAcceleratorOverrideList, 0, 0],
843
+ ];
844
+ var Filter = [3, n0, _F, 0, [_P], [[() => EventPattern, 0]]];
845
+ var FilterCriteria = [3, n0, _FC, 0, [_Fi], [[() => FilterList, 0]]];
846
+ var FirehoseLogDestination = [3, n0, _FLD, 0, [_DSA], [0]];
847
+ var FirehoseLogDestinationParameters = [3, n0, _FLDP, 0, [_DSA], [0]];
848
+ var InternalException = [
849
+ -3,
850
+ n0,
851
+ _IE,
852
+ {
853
+ [_e]: _s,
854
+ [_hE]: 500,
855
+ },
856
+ [_m, _rAS],
857
+ [
858
+ 0,
859
+ [
860
+ 1,
861
+ {
862
+ [_hH]: _RA_,
863
+ },
864
+ ],
865
+ ],
866
+ ];
867
+ schema.TypeRegistry.for(n0).registerError(InternalException, InternalException$1);
868
+ var ListPipesRequest = [
869
+ 3,
870
+ n0,
871
+ _LPR,
872
+ 0,
873
+ [_NP, _DS, _CS, _SPo, _TPa, _NT, _L],
874
+ [
875
+ [
876
+ 0,
877
+ {
878
+ [_hQ]: _NP,
879
+ },
880
+ ],
881
+ [
882
+ 0,
883
+ {
884
+ [_hQ]: _DS,
885
+ },
886
+ ],
887
+ [
888
+ 0,
889
+ {
890
+ [_hQ]: _CS,
891
+ },
892
+ ],
893
+ [
894
+ 0,
895
+ {
896
+ [_hQ]: _SPo,
897
+ },
898
+ ],
899
+ [
900
+ 0,
901
+ {
902
+ [_hQ]: _TPa,
903
+ },
904
+ ],
905
+ [
906
+ () => NextToken,
907
+ {
908
+ [_hQ]: _NT,
909
+ },
910
+ ],
911
+ [
912
+ 1,
913
+ {
914
+ [_hQ]: _L,
915
+ },
916
+ ],
917
+ ],
918
+ ];
919
+ var ListPipesResponse = [
920
+ 3,
921
+ n0,
922
+ _LPRi,
923
+ 0,
924
+ [_Pi, _NT],
925
+ [() => PipeList, [() => NextToken, 0]],
926
+ ];
927
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
928
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [[() => TagMap, 0]]];
929
+ var MultiMeasureAttributeMapping = [3, n0, _MMAM, 0, [_MV, _MVT, _MMAN], [0, 0, 0]];
930
+ var MultiMeasureMapping = [
931
+ 3,
932
+ n0,
933
+ _MMM,
934
+ 0,
935
+ [_MMN, _MMAMu],
936
+ [0, () => MultiMeasureAttributeMappings],
937
+ ];
938
+ var NetworkConfiguration = [3, n0, _NC, 0, [_aC], [[() => AwsVpcConfiguration, 0]]];
939
+ var NotFoundException = [
940
+ -3,
941
+ n0,
942
+ _NFE,
943
+ {
944
+ [_e]: _c,
945
+ [_hE]: 404,
946
+ },
947
+ [_m],
948
+ [0],
949
+ ];
950
+ schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
951
+ var Pipe = [
952
+ 3,
953
+ n0,
954
+ _Pip,
955
+ 0,
956
+ [_N, _Ar, _DS, _CS, _SR, _CT, _LMT, _So, _Ta, _En],
957
+ [0, 0, 0, 0, 0, 4, 4, 0, 0, 0],
958
+ ];
959
+ var PipeEnrichmentHttpParameters = [
960
+ 3,
961
+ n0,
962
+ _PEHP,
963
+ 0,
964
+ [_PPV, _HP, _QSP],
965
+ [
966
+ [() => PathParameterList, 0],
967
+ [() => HeaderParametersMap, 0],
968
+ [() => QueryStringParametersMap, 0],
969
+ ],
970
+ ];
971
+ var PipeEnrichmentParameters = [
972
+ 3,
973
+ n0,
974
+ _PEP,
975
+ 0,
976
+ [_IT, _HPt],
977
+ [
978
+ [() => InputTemplate, 0],
979
+ [() => PipeEnrichmentHttpParameters, 0],
980
+ ],
981
+ ];
982
+ var PipeLogConfiguration = [
983
+ 3,
984
+ n0,
985
+ _PLC,
986
+ 0,
987
+ [_SLD, _FLD, _CLLD, _Le, _IED],
988
+ [() => S3LogDestination, () => FirehoseLogDestination, () => CloudwatchLogsLogDestination, 0, 64 | 0],
989
+ ];
990
+ var PipeLogConfigurationParameters = [
991
+ 3,
992
+ n0,
993
+ _PLCP,
994
+ 0,
995
+ [_SLD, _FLD, _CLLD, _Le, _IED],
996
+ [
997
+ () => S3LogDestinationParameters,
998
+ () => FirehoseLogDestinationParameters,
999
+ () => CloudwatchLogsLogDestinationParameters,
1000
+ 0,
1001
+ 64 | 0,
1002
+ ],
1003
+ ];
1004
+ var PipeSourceActiveMQBrokerParameters = [
1005
+ 3,
1006
+ n0,
1007
+ _PSAMQBP,
1008
+ 0,
1009
+ [_Cr, _QN, _BS, _MBWIS],
1010
+ [() => MQBrokerAccessCredentials, [() => MQBrokerQueueName, 0], 1, 1],
1011
+ ];
1012
+ var PipeSourceDynamoDBStreamParameters = [
1013
+ 3,
1014
+ n0,
1015
+ _PSDDBSP,
1016
+ 0,
1017
+ [_BS, _DLC, _OPBIF, _MBWIS, _MRAIS, _MRA, _PF, _SPt],
1018
+ [1, () => DeadLetterConfig, 0, 1, 1, 1, 1, 0],
1019
+ ];
1020
+ var PipeSourceKinesisStreamParameters = [
1021
+ 3,
1022
+ n0,
1023
+ _PSKSP,
1024
+ 0,
1025
+ [_BS, _DLC, _OPBIF, _MBWIS, _MRAIS, _MRA, _PF, _SPt, _SPT],
1026
+ [1, () => DeadLetterConfig, 0, 1, 1, 1, 1, 0, 4],
1027
+ ];
1028
+ var PipeSourceManagedStreamingKafkaParameters = [
1029
+ 3,
1030
+ n0,
1031
+ _PSMSKP,
1032
+ 0,
1033
+ [_TN, _SPt, _BS, _MBWIS, _CGID, _Cr],
1034
+ [[() => KafkaTopicName, 0], 0, 1, 1, [() => URI, 0], () => MSKAccessCredentials],
1035
+ ];
1036
+ var PipeSourceParameters = [
1037
+ 3,
1038
+ n0,
1039
+ _PSP,
1040
+ 0,
1041
+ [_FC, _KSP, _DDBSP, _SQP, _AMQBP, _RMQBP, _MSKP, _SMKP],
1042
+ [
1043
+ [() => FilterCriteria, 0],
1044
+ () => PipeSourceKinesisStreamParameters,
1045
+ () => PipeSourceDynamoDBStreamParameters,
1046
+ () => PipeSourceSqsQueueParameters,
1047
+ [() => PipeSourceActiveMQBrokerParameters, 0],
1048
+ [() => PipeSourceRabbitMQBrokerParameters, 0],
1049
+ [() => PipeSourceManagedStreamingKafkaParameters, 0],
1050
+ [() => PipeSourceSelfManagedKafkaParameters, 0],
1051
+ ],
1052
+ ];
1053
+ var PipeSourceRabbitMQBrokerParameters = [
1054
+ 3,
1055
+ n0,
1056
+ _PSRMQBP,
1057
+ 0,
1058
+ [_Cr, _QN, _VH, _BS, _MBWIS],
1059
+ [() => MQBrokerAccessCredentials, [() => MQBrokerQueueName, 0], [() => URI, 0], 1, 1],
1060
+ ];
1061
+ var PipeSourceSelfManagedKafkaParameters = [
1062
+ 3,
1063
+ n0,
1064
+ _PSSMKP,
1065
+ 0,
1066
+ [_TN, _SPt, _ABS, _BS, _MBWIS, _CGID, _Cr, _SRCC, _Vp],
1067
+ [
1068
+ [() => KafkaTopicName, 0],
1069
+ 0,
1070
+ [() => KafkaBootstrapServers, 0],
1071
+ 1,
1072
+ 1,
1073
+ [() => URI, 0],
1074
+ () => SelfManagedKafkaAccessConfigurationCredentials,
1075
+ 0,
1076
+ [() => SelfManagedKafkaAccessConfigurationVpc, 0],
1077
+ ],
1078
+ ];
1079
+ var PipeSourceSqsQueueParameters = [3, n0, _PSSQP, 0, [_BS, _MBWIS], [1, 1]];
1080
+ var PipeTargetBatchJobParameters = [
1081
+ 3,
1082
+ n0,
1083
+ _PTBJP,
1084
+ 0,
1085
+ [_JD, _JN, _AP, _RS, _CO, _DO, _Pa],
1086
+ [
1087
+ 0,
1088
+ 0,
1089
+ () => BatchArrayProperties,
1090
+ () => BatchRetryStrategy,
1091
+ () => BatchContainerOverrides,
1092
+ () => BatchDependsOn,
1093
+ 128 | 0,
1094
+ ],
1095
+ ];
1096
+ var PipeTargetCloudWatchLogsParameters = [3, n0, _PTCWLP, 0, [_LSN, _Ti], [0, 0]];
1097
+ var PipeTargetEcsTaskParameters = [
1098
+ 3,
1099
+ n0,
1100
+ _PTETP,
1101
+ 0,
1102
+ [_TDA, _TC, _LT, _NC, _PV, _G, _CPS, _EECSMT, _EEC, _PC, _PS, _PT, _RI, _O, _Tag],
1103
+ [
1104
+ 0,
1105
+ 1,
1106
+ 0,
1107
+ [() => NetworkConfiguration, 0],
1108
+ 0,
1109
+ 0,
1110
+ [() => CapacityProviderStrategy, 0],
1111
+ 2,
1112
+ 2,
1113
+ [() => PlacementConstraints, 0],
1114
+ [() => PlacementStrategies, 0],
1115
+ 0,
1116
+ [() => ReferenceId, 0],
1117
+ () => EcsTaskOverride,
1118
+ [() => TagList, 0],
1119
+ ],
1120
+ ];
1121
+ var PipeTargetEventBridgeEventBusParameters = [
1122
+ 3,
1123
+ n0,
1124
+ _PTEBEBP,
1125
+ 0,
1126
+ [_EI, _DT, _So, _R, _Tim],
1127
+ [[() => EventBridgeEndpointId, 0], [() => EventBridgeDetailType, 0], [() => EventBridgeEventSource, 0], 64 | 0, 0],
1128
+ ];
1129
+ var PipeTargetHttpParameters = [
1130
+ 3,
1131
+ n0,
1132
+ _PTHP,
1133
+ 0,
1134
+ [_PPV, _HP, _QSP],
1135
+ [
1136
+ [() => PathParameterList, 0],
1137
+ [() => HeaderParametersMap, 0],
1138
+ [() => QueryStringParametersMap, 0],
1139
+ ],
1140
+ ];
1141
+ var PipeTargetKinesisStreamParameters = [
1142
+ 3,
1143
+ n0,
1144
+ _PTKSP,
1145
+ 0,
1146
+ [_PK],
1147
+ [[() => KinesisPartitionKey, 0]],
1148
+ ];
1149
+ var PipeTargetLambdaFunctionParameters = [3, n0, _PTLFP, 0, [_ITnv], [0]];
1150
+ var PipeTargetParameters = [
1151
+ 3,
1152
+ n0,
1153
+ _PTP,
1154
+ 0,
1155
+ [_IT, _LFP, _SFSMP, _KSP, _ETP, _BJP, _SQP, _HPt, _RDP, _SMPP, _EBEBP, _CWLP, _TPi],
1156
+ [
1157
+ [() => InputTemplate, 0],
1158
+ () => PipeTargetLambdaFunctionParameters,
1159
+ () => PipeTargetStateMachineParameters,
1160
+ [() => PipeTargetKinesisStreamParameters, 0],
1161
+ [() => PipeTargetEcsTaskParameters, 0],
1162
+ () => PipeTargetBatchJobParameters,
1163
+ [() => PipeTargetSqsQueueParameters, 0],
1164
+ [() => PipeTargetHttpParameters, 0],
1165
+ [() => PipeTargetRedshiftDataParameters, 0],
1166
+ [() => PipeTargetSageMakerPipelineParameters, 0],
1167
+ [() => PipeTargetEventBridgeEventBusParameters, 0],
1168
+ () => PipeTargetCloudWatchLogsParameters,
1169
+ () => PipeTargetTimestreamParameters,
1170
+ ],
1171
+ ];
1172
+ var PipeTargetRedshiftDataParameters = [
1173
+ 3,
1174
+ n0,
1175
+ _PTRDP,
1176
+ 0,
1177
+ [_SMA, _D, _DU, _SN, _WE, _Sq],
1178
+ [0, [() => Database, 0], [() => DbUser, 0], [() => StatementName, 0], 2, [() => Sqls, 0]],
1179
+ ];
1180
+ var PipeTargetSageMakerPipelineParameters = [
1181
+ 3,
1182
+ n0,
1183
+ _PTSMPP,
1184
+ 0,
1185
+ [_PPL],
1186
+ [[() => SageMakerPipelineParameterList, 0]],
1187
+ ];
1188
+ var PipeTargetSqsQueueParameters = [
1189
+ 3,
1190
+ n0,
1191
+ _PTSQP,
1192
+ 0,
1193
+ [_MGI, _MDI],
1194
+ [
1195
+ [() => MessageGroupId, 0],
1196
+ [() => MessageDeduplicationId, 0],
1197
+ ],
1198
+ ];
1199
+ var PipeTargetStateMachineParameters = [3, n0, _PTSMP, 0, [_ITnv], [0]];
1200
+ var PipeTargetTimestreamParameters = [
1201
+ 3,
1202
+ n0,
1203
+ _PTTP,
1204
+ 0,
1205
+ [_TVi, _ETU, _TFT, _TF, _VV, _DMi, _SMM, _MMMu],
1206
+ [0, 0, 0, 0, 0, () => DimensionMappings, () => SingleMeasureMappings, () => MultiMeasureMappings],
1207
+ ];
1208
+ var PlacementConstraint = [
1209
+ 3,
1210
+ n0,
1211
+ _PCl,
1212
+ 0,
1213
+ [_t, _ex],
1214
+ [0, [() => PlacementConstraintExpression, 0]],
1215
+ ];
1216
+ var PlacementStrategy = [3, n0, _PS, 0, [_t, _f], [0, [() => PlacementStrategyField, 0]]];
1217
+ var S3LogDestination = [3, n0, _SLD, 0, [_BN, _Pr, _BO, _OF], [0, 0, 0, 0]];
1218
+ var S3LogDestinationParameters = [3, n0, _SLDP, 0, [_BN, _BO, _OF, _Pr], [0, 0, 0, 0]];
1219
+ var SageMakerPipelineParameter = [
1220
+ 3,
1221
+ n0,
1222
+ _SMPPa,
1223
+ 0,
1224
+ [_N, _V],
1225
+ [
1226
+ [() => SageMakerPipelineParameterName, 0],
1227
+ [() => SageMakerPipelineParameterValue, 0],
1228
+ ],
1229
+ ];
1230
+ var SelfManagedKafkaAccessConfigurationVpc = [
1231
+ 3,
1232
+ n0,
1233
+ _SMKACV,
1234
+ 0,
1235
+ [_Sub, _SG],
1236
+ [
1237
+ [() => SubnetIds, 0],
1238
+ [() => SecurityGroupIds, 0],
1239
+ ],
1240
+ ];
1241
+ var ServiceQuotaExceededException = [
1242
+ -3,
1243
+ n0,
1244
+ _SQEE,
1245
+ {
1246
+ [_e]: _c,
1247
+ [_hE]: 402,
1248
+ },
1249
+ [_m, _rI, _rT, _sC, _qC],
1250
+ [0, 0, 0, 0, 0],
1251
+ ];
1252
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1253
+ var SingleMeasureMapping = [3, n0, _SMMi, 0, [_MV, _MVT, _MN], [0, 0, 0]];
1254
+ var StartPipeRequest = [3, n0, _SPR, 0, [_N], [[0, 1]]];
1255
+ var StartPipeResponse = [
1256
+ 3,
1257
+ n0,
1258
+ _SPRt,
1259
+ 0,
1260
+ [_Ar, _N, _DS, _CS, _CT, _LMT],
1261
+ [0, 0, 0, 0, 4, 4],
1262
+ ];
1263
+ var StopPipeRequest = [3, n0, _SPRto, 0, [_N], [[0, 1]]];
1264
+ var StopPipeResponse = [
1265
+ 3,
1266
+ n0,
1267
+ _SPRtop,
1268
+ 0,
1269
+ [_Ar, _N, _DS, _CS, _CT, _LMT],
1270
+ [0, 0, 0, 0, 4, 4],
1271
+ ];
1272
+ var Tag = [3, n0, _Tag_, 0, [_K, _V], [0, [() => TagValue, 0]]];
1273
+ var TagResourceRequest = [
1274
+ 3,
1275
+ n0,
1276
+ _TRR,
1277
+ 0,
1278
+ [_rA, _ta],
1279
+ [
1280
+ [0, 1],
1281
+ [() => TagMap, 0],
1282
+ ],
1283
+ ];
1284
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1285
+ var ThrottlingException = [
1286
+ -3,
1287
+ n0,
1288
+ _TE,
1289
+ {
1290
+ [_e]: _c,
1291
+ [_hE]: 429,
1292
+ },
1293
+ [_m, _sC, _qC, _rAS],
1294
+ [
1295
+ 0,
1296
+ 0,
1297
+ 0,
1298
+ [
1299
+ 1,
1300
+ {
1301
+ [_hH]: _RA_,
1302
+ },
1303
+ ],
1304
+ ],
1305
+ ];
1306
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1307
+ var UntagResourceRequest = [
1308
+ 3,
1309
+ n0,
1310
+ _URR,
1311
+ 0,
1312
+ [_rA, _tK],
1313
+ [
1314
+ [0, 1],
1315
+ [
1316
+ 64 | 0,
1317
+ {
1318
+ [_hQ]: _tK,
1319
+ },
1320
+ ],
1321
+ ],
1322
+ ];
1323
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1324
+ var UpdatePipeRequest = [
1325
+ 3,
1326
+ n0,
1327
+ _UPR,
1328
+ 0,
1329
+ [_N, _De, _DS, _SP, _En, _EPn, _Ta, _TP, _RA, _LC, _KKI],
1330
+ [
1331
+ [0, 1],
1332
+ [() => PipeDescription, 0],
1333
+ 0,
1334
+ [() => UpdatePipeSourceParameters, 0],
1335
+ 0,
1336
+ [() => PipeEnrichmentParameters, 0],
1337
+ 0,
1338
+ [() => PipeTargetParameters, 0],
1339
+ 0,
1340
+ () => PipeLogConfigurationParameters,
1341
+ 0,
1342
+ ],
1343
+ ];
1344
+ var UpdatePipeResponse = [
1345
+ 3,
1346
+ n0,
1347
+ _UPRp,
1348
+ 0,
1349
+ [_Ar, _N, _DS, _CS, _CT, _LMT],
1350
+ [0, 0, 0, 0, 4, 4],
1351
+ ];
1352
+ var UpdatePipeSourceActiveMQBrokerParameters = [
1353
+ 3,
1354
+ n0,
1355
+ _UPSAMQBP,
1356
+ 0,
1357
+ [_Cr, _BS, _MBWIS],
1358
+ [() => MQBrokerAccessCredentials, 1, 1],
1359
+ ];
1360
+ var UpdatePipeSourceDynamoDBStreamParameters = [
1361
+ 3,
1362
+ n0,
1363
+ _UPSDDBSP,
1364
+ 0,
1365
+ [_BS, _DLC, _OPBIF, _MBWIS, _MRAIS, _MRA, _PF],
1366
+ [1, () => DeadLetterConfig, 0, 1, 1, 1, 1],
1367
+ ];
1368
+ var UpdatePipeSourceKinesisStreamParameters = [
1369
+ 3,
1370
+ n0,
1371
+ _UPSKSP,
1372
+ 0,
1373
+ [_BS, _DLC, _OPBIF, _MBWIS, _MRAIS, _MRA, _PF],
1374
+ [1, () => DeadLetterConfig, 0, 1, 1, 1, 1],
1375
+ ];
1376
+ var UpdatePipeSourceManagedStreamingKafkaParameters = [
1377
+ 3,
1378
+ n0,
1379
+ _UPSMSKP,
1380
+ 0,
1381
+ [_BS, _Cr, _MBWIS],
1382
+ [1, () => MSKAccessCredentials, 1],
1383
+ ];
1384
+ var UpdatePipeSourceParameters = [
1385
+ 3,
1386
+ n0,
1387
+ _UPSP,
1388
+ 0,
1389
+ [_FC, _KSP, _DDBSP, _SQP, _AMQBP, _RMQBP, _MSKP, _SMKP],
1390
+ [
1391
+ [() => FilterCriteria, 0],
1392
+ () => UpdatePipeSourceKinesisStreamParameters,
1393
+ () => UpdatePipeSourceDynamoDBStreamParameters,
1394
+ () => UpdatePipeSourceSqsQueueParameters,
1395
+ () => UpdatePipeSourceActiveMQBrokerParameters,
1396
+ () => UpdatePipeSourceRabbitMQBrokerParameters,
1397
+ () => UpdatePipeSourceManagedStreamingKafkaParameters,
1398
+ [() => UpdatePipeSourceSelfManagedKafkaParameters, 0],
1399
+ ],
1400
+ ];
1401
+ var UpdatePipeSourceRabbitMQBrokerParameters = [
1402
+ 3,
1403
+ n0,
1404
+ _UPSRMQBP,
1405
+ 0,
1406
+ [_Cr, _BS, _MBWIS],
1407
+ [() => MQBrokerAccessCredentials, 1, 1],
1408
+ ];
1409
+ var UpdatePipeSourceSelfManagedKafkaParameters = [
1410
+ 3,
1411
+ n0,
1412
+ _UPSSMKP,
1413
+ 0,
1414
+ [_BS, _MBWIS, _Cr, _SRCC, _Vp],
1415
+ [1, 1, () => SelfManagedKafkaAccessConfigurationCredentials, 0, [() => SelfManagedKafkaAccessConfigurationVpc, 0]],
1416
+ ];
1417
+ var UpdatePipeSourceSqsQueueParameters = [3, n0, _UPSSQP, 0, [_BS, _MBWIS], [1, 1]];
1418
+ var ValidationException = [
1419
+ -3,
1420
+ n0,
1421
+ _VE,
1422
+ {
1423
+ [_e]: _c,
1424
+ [_hE]: 400,
1425
+ },
1426
+ [_m, _fL],
1427
+ [0, () => ValidationExceptionFieldList],
1428
+ ];
1429
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1430
+ var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
1431
+ var PipesServiceException = [-3, _sm, "PipesServiceException", 0, [], []];
1432
+ schema.TypeRegistry.for(_sm).registerError(PipesServiceException, PipesServiceException$1);
1433
+ var BatchDependsOn = [1, n0, _BDO, 0, () => BatchJobDependency];
1434
+ var BatchEnvironmentVariableList = [1, n0, _BEVL, 0, () => BatchEnvironmentVariable];
1435
+ var BatchResourceRequirementsList = [1, n0, _BRRL, 0, () => BatchResourceRequirement];
1436
+ var CapacityProviderStrategy = [1, n0, _CPS, 0, [() => CapacityProviderStrategyItem, 0]];
1437
+ var DimensionMappings = [1, n0, _DMi, 0, () => DimensionMapping];
1438
+ var EcsContainerOverrideList = [1, n0, _ECOL, 0, () => EcsContainerOverride];
1439
+ var EcsEnvironmentFileList = [1, n0, _EEFL, 0, () => EcsEnvironmentFile];
1440
+ var EcsEnvironmentVariableList = [1, n0, _EEVL, 0, () => EcsEnvironmentVariable];
1441
+ var EcsInferenceAcceleratorOverrideList = [
1442
+ 1,
1443
+ n0,
1444
+ _EIAOL,
1445
+ 0,
1446
+ () => EcsInferenceAcceleratorOverride,
1447
+ ];
1448
+ var EcsResourceRequirementsList = [1, n0, _ERRL, 0, () => EcsResourceRequirement];
1449
+ var FilterList = [1, n0, _FL, 0, [() => Filter, 0]];
1450
+ var KafkaBootstrapServers = [1, n0, _KBS, 0, [() => EndpointString, 0]];
1451
+ var MultiMeasureAttributeMappings = [1, n0, _MMAMu, 0, () => MultiMeasureAttributeMapping];
1452
+ var MultiMeasureMappings = [1, n0, _MMMu, 0, () => MultiMeasureMapping];
1453
+ var PathParameterList = [1, n0, _PPLa, 0, [() => PathParameter, 0]];
1454
+ var PipeList = [1, n0, _PL, 0, () => Pipe];
1455
+ var PlacementConstraints = [1, n0, _PC, 0, [() => PlacementConstraint, 0]];
1456
+ var PlacementStrategies = [1, n0, _PSl, 0, [() => PlacementStrategy, 0]];
1457
+ var SageMakerPipelineParameterList = [1, n0, _SMPPL, 0, [() => SageMakerPipelineParameter, 0]];
1458
+ var SecurityGroupIds = [1, n0, _SGIe, 0, [() => SecurityGroupId, 0]];
1459
+ var SecurityGroups = [1, n0, _SGe, 0, [() => SecurityGroup, 0]];
1460
+ var SingleMeasureMappings = [1, n0, _SMM, 0, () => SingleMeasureMapping];
1461
+ var Sqls = [1, n0, _Sq, 0, [() => Sql, 0]];
1462
+ var SubnetIds = [1, n0, _SIu, 0, [() => SubnetId, 0]];
1463
+ var Subnets = [1, n0, _Sub, 0, [() => Subnet, 0]];
1464
+ var TagList = [1, n0, _TL, 0, [() => Tag, 0]];
1465
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
1466
+ var HeaderParametersMap = [2, n0, _HPM, 0, [0, 0], [() => HeaderValue, 0]];
1467
+ var QueryStringParametersMap = [2, n0, _QSPM, 0, [0, 0], [() => QueryStringValue, 0]];
1468
+ var TagMap = [2, n0, _TM, 0, [0, 0], [() => TagValue, 0]];
1469
+ var MQBrokerAccessCredentials = [3, n0, _MQBAC, 0, [_BA], [0]];
1470
+ var MSKAccessCredentials = [3, n0, _MSKAC, 0, [_SSA, _CCTA], [0, 0]];
1471
+ var SelfManagedKafkaAccessConfigurationCredentials = [
1472
+ 3,
1473
+ n0,
1474
+ _SMKACC,
1475
+ 0,
1476
+ [_BA, _SSA, _SSAa, _CCTA],
1477
+ [0, 0, 0, 0],
1478
+ ];
1479
+ var CreatePipe = [
1480
+ 9,
1481
+ n0,
1482
+ _CPr,
1483
+ {
1484
+ [_h]: ["POST", "/v1/pipes/{Name}", 200],
1485
+ },
1486
+ () => CreatePipeRequest,
1487
+ () => CreatePipeResponse,
1488
+ ];
1489
+ var DeletePipe = [
1490
+ 9,
1491
+ n0,
1492
+ _DP,
1493
+ {
1494
+ [_h]: ["DELETE", "/v1/pipes/{Name}", 200],
1495
+ },
1496
+ () => DeletePipeRequest,
1497
+ () => DeletePipeResponse,
1498
+ ];
1499
+ var DescribePipe = [
1500
+ 9,
1501
+ n0,
1502
+ _DPe,
1503
+ {
1504
+ [_h]: ["GET", "/v1/pipes/{Name}", 200],
1505
+ },
1506
+ () => DescribePipeRequest,
1507
+ () => DescribePipeResponse,
1508
+ ];
1509
+ var ListPipes = [
1510
+ 9,
1511
+ n0,
1512
+ _LP,
1513
+ {
1514
+ [_h]: ["GET", "/v1/pipes", 200],
1515
+ },
1516
+ () => ListPipesRequest,
1517
+ () => ListPipesResponse,
1518
+ ];
1519
+ var ListTagsForResource = [
1520
+ 9,
1521
+ n0,
1522
+ _LTFR,
1523
+ {
1524
+ [_h]: ["GET", "/tags/{resourceArn}", 200],
1525
+ },
1526
+ () => ListTagsForResourceRequest,
1527
+ () => ListTagsForResourceResponse,
1528
+ ];
1529
+ var StartPipe = [
1530
+ 9,
1531
+ n0,
1532
+ _SPta,
1533
+ {
1534
+ [_h]: ["POST", "/v1/pipes/{Name}/start", 200],
1535
+ },
1536
+ () => StartPipeRequest,
1537
+ () => StartPipeResponse,
1538
+ ];
1539
+ var StopPipe = [
1540
+ 9,
1541
+ n0,
1542
+ _SPto,
1543
+ {
1544
+ [_h]: ["POST", "/v1/pipes/{Name}/stop", 200],
1545
+ },
1546
+ () => StopPipeRequest,
1547
+ () => StopPipeResponse,
1548
+ ];
1549
+ var TagResource = [
1550
+ 9,
1551
+ n0,
1552
+ _TR,
1553
+ {
1554
+ [_h]: ["POST", "/tags/{resourceArn}", 200],
1555
+ },
1556
+ () => TagResourceRequest,
1557
+ () => TagResourceResponse,
1558
+ ];
1559
+ var UntagResource = [
1560
+ 9,
1561
+ n0,
1562
+ _UR,
1563
+ {
1564
+ [_h]: ["DELETE", "/tags/{resourceArn}", 200],
1565
+ },
1566
+ () => UntagResourceRequest,
1567
+ () => UntagResourceResponse,
1568
+ ];
1569
+ var UpdatePipe = [
1570
+ 9,
1571
+ n0,
1572
+ _UP,
1573
+ {
1574
+ [_h]: ["PUT", "/v1/pipes/{Name}", 200],
1575
+ },
1576
+ () => UpdatePipeRequest,
1577
+ () => UpdatePipeResponse,
1578
+ ];
1124
1579
 
1125
1580
  class CreatePipeCommand extends smithyClient.Command
1126
1581
  .classBuilder()
1127
1582
  .ep(commonParams)
1128
1583
  .m(function (Command, cs, config, o) {
1129
- return [
1130
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1131
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1132
- ];
1584
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1133
1585
  })
1134
1586
  .s("Pipes", "CreatePipe", {})
1135
1587
  .n("PipesClient", "CreatePipeCommand")
1136
- .f(CreatePipeRequestFilterSensitiveLog, void 0)
1137
- .ser(se_CreatePipeCommand)
1138
- .de(de_CreatePipeCommand)
1588
+ .sc(CreatePipe)
1139
1589
  .build() {
1140
1590
  }
1141
1591
 
@@ -1143,16 +1593,11 @@ class DeletePipeCommand extends smithyClient.Command
1143
1593
  .classBuilder()
1144
1594
  .ep(commonParams)
1145
1595
  .m(function (Command, cs, config, o) {
1146
- return [
1147
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1148
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1149
- ];
1596
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1150
1597
  })
1151
1598
  .s("Pipes", "DeletePipe", {})
1152
1599
  .n("PipesClient", "DeletePipeCommand")
1153
- .f(void 0, void 0)
1154
- .ser(se_DeletePipeCommand)
1155
- .de(de_DeletePipeCommand)
1600
+ .sc(DeletePipe)
1156
1601
  .build() {
1157
1602
  }
1158
1603
 
@@ -1160,16 +1605,11 @@ class DescribePipeCommand extends smithyClient.Command
1160
1605
  .classBuilder()
1161
1606
  .ep(commonParams)
1162
1607
  .m(function (Command, cs, config, o) {
1163
- return [
1164
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1165
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1166
- ];
1608
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1167
1609
  })
1168
1610
  .s("Pipes", "DescribePipe", {})
1169
1611
  .n("PipesClient", "DescribePipeCommand")
1170
- .f(void 0, DescribePipeResponseFilterSensitiveLog)
1171
- .ser(se_DescribePipeCommand)
1172
- .de(de_DescribePipeCommand)
1612
+ .sc(DescribePipe)
1173
1613
  .build() {
1174
1614
  }
1175
1615
 
@@ -1177,16 +1617,11 @@ class ListPipesCommand extends smithyClient.Command
1177
1617
  .classBuilder()
1178
1618
  .ep(commonParams)
1179
1619
  .m(function (Command, cs, config, o) {
1180
- return [
1181
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1182
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1183
- ];
1620
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1184
1621
  })
1185
1622
  .s("Pipes", "ListPipes", {})
1186
1623
  .n("PipesClient", "ListPipesCommand")
1187
- .f(ListPipesRequestFilterSensitiveLog, ListPipesResponseFilterSensitiveLog)
1188
- .ser(se_ListPipesCommand)
1189
- .de(de_ListPipesCommand)
1624
+ .sc(ListPipes)
1190
1625
  .build() {
1191
1626
  }
1192
1627
 
@@ -1194,16 +1629,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1194
1629
  .classBuilder()
1195
1630
  .ep(commonParams)
1196
1631
  .m(function (Command, cs, config, o) {
1197
- return [
1198
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1199
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1200
- ];
1632
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1201
1633
  })
1202
1634
  .s("Pipes", "ListTagsForResource", {})
1203
1635
  .n("PipesClient", "ListTagsForResourceCommand")
1204
- .f(void 0, ListTagsForResourceResponseFilterSensitiveLog)
1205
- .ser(se_ListTagsForResourceCommand)
1206
- .de(de_ListTagsForResourceCommand)
1636
+ .sc(ListTagsForResource)
1207
1637
  .build() {
1208
1638
  }
1209
1639
 
@@ -1211,16 +1641,11 @@ class StartPipeCommand extends smithyClient.Command
1211
1641
  .classBuilder()
1212
1642
  .ep(commonParams)
1213
1643
  .m(function (Command, cs, config, o) {
1214
- return [
1215
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1216
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1217
- ];
1644
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1218
1645
  })
1219
1646
  .s("Pipes", "StartPipe", {})
1220
1647
  .n("PipesClient", "StartPipeCommand")
1221
- .f(void 0, void 0)
1222
- .ser(se_StartPipeCommand)
1223
- .de(de_StartPipeCommand)
1648
+ .sc(StartPipe)
1224
1649
  .build() {
1225
1650
  }
1226
1651
 
@@ -1228,16 +1653,11 @@ class StopPipeCommand extends smithyClient.Command
1228
1653
  .classBuilder()
1229
1654
  .ep(commonParams)
1230
1655
  .m(function (Command, cs, config, o) {
1231
- return [
1232
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1233
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1234
- ];
1656
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1235
1657
  })
1236
1658
  .s("Pipes", "StopPipe", {})
1237
1659
  .n("PipesClient", "StopPipeCommand")
1238
- .f(void 0, void 0)
1239
- .ser(se_StopPipeCommand)
1240
- .de(de_StopPipeCommand)
1660
+ .sc(StopPipe)
1241
1661
  .build() {
1242
1662
  }
1243
1663
 
@@ -1245,16 +1665,11 @@ class TagResourceCommand extends smithyClient.Command
1245
1665
  .classBuilder()
1246
1666
  .ep(commonParams)
1247
1667
  .m(function (Command, cs, config, o) {
1248
- return [
1249
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1250
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1251
- ];
1668
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1252
1669
  })
1253
1670
  .s("Pipes", "TagResource", {})
1254
1671
  .n("PipesClient", "TagResourceCommand")
1255
- .f(TagResourceRequestFilterSensitiveLog, void 0)
1256
- .ser(se_TagResourceCommand)
1257
- .de(de_TagResourceCommand)
1672
+ .sc(TagResource)
1258
1673
  .build() {
1259
1674
  }
1260
1675
 
@@ -1262,16 +1677,11 @@ class UntagResourceCommand extends smithyClient.Command
1262
1677
  .classBuilder()
1263
1678
  .ep(commonParams)
1264
1679
  .m(function (Command, cs, config, o) {
1265
- return [
1266
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1267
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1268
- ];
1680
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1269
1681
  })
1270
1682
  .s("Pipes", "UntagResource", {})
1271
1683
  .n("PipesClient", "UntagResourceCommand")
1272
- .f(void 0, void 0)
1273
- .ser(se_UntagResourceCommand)
1274
- .de(de_UntagResourceCommand)
1684
+ .sc(UntagResource)
1275
1685
  .build() {
1276
1686
  }
1277
1687
 
@@ -1279,16 +1689,11 @@ class UpdatePipeCommand extends smithyClient.Command
1279
1689
  .classBuilder()
1280
1690
  .ep(commonParams)
1281
1691
  .m(function (Command, cs, config, o) {
1282
- return [
1283
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1284
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1285
- ];
1692
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1286
1693
  })
1287
1694
  .s("Pipes", "UpdatePipe", {})
1288
1695
  .n("PipesClient", "UpdatePipeCommand")
1289
- .f(UpdatePipeRequestFilterSensitiveLog, void 0)
1290
- .ser(se_UpdatePipeCommand)
1291
- .de(de_UpdatePipeCommand)
1696
+ .sc(UpdatePipe)
1292
1697
  .build() {
1293
1698
  }
1294
1699
 
@@ -1319,81 +1724,47 @@ Object.defineProperty(exports, "__Client", {
1319
1724
  get: function () { return smithyClient.Client; }
1320
1725
  });
1321
1726
  exports.AssignPublicIp = AssignPublicIp;
1322
- exports.AwsVpcConfigurationFilterSensitiveLog = AwsVpcConfigurationFilterSensitiveLog;
1323
1727
  exports.BatchJobDependencyType = BatchJobDependencyType;
1324
1728
  exports.BatchResourceRequirementType = BatchResourceRequirementType;
1325
- exports.CapacityProviderStrategyItemFilterSensitiveLog = CapacityProviderStrategyItemFilterSensitiveLog;
1326
- exports.ConflictException = ConflictException;
1729
+ exports.ConflictException = ConflictException$1;
1327
1730
  exports.CreatePipeCommand = CreatePipeCommand;
1328
- exports.CreatePipeRequestFilterSensitiveLog = CreatePipeRequestFilterSensitiveLog;
1329
1731
  exports.DeletePipeCommand = DeletePipeCommand;
1330
1732
  exports.DescribePipeCommand = DescribePipeCommand;
1331
- exports.DescribePipeResponseFilterSensitiveLog = DescribePipeResponseFilterSensitiveLog;
1332
1733
  exports.DimensionValueType = DimensionValueType;
1333
1734
  exports.DynamoDBStreamStartPosition = DynamoDBStreamStartPosition;
1334
1735
  exports.EcsEnvironmentFileType = EcsEnvironmentFileType;
1335
1736
  exports.EcsResourceRequirementType = EcsResourceRequirementType;
1336
1737
  exports.EpochTimeUnit = EpochTimeUnit;
1337
- exports.FilterCriteriaFilterSensitiveLog = FilterCriteriaFilterSensitiveLog;
1338
- exports.FilterFilterSensitiveLog = FilterFilterSensitiveLog;
1339
1738
  exports.IncludeExecutionDataOption = IncludeExecutionDataOption;
1340
- exports.InternalException = InternalException;
1739
+ exports.InternalException = InternalException$1;
1341
1740
  exports.KinesisStreamStartPosition = KinesisStreamStartPosition;
1342
1741
  exports.LaunchType = LaunchType;
1343
1742
  exports.ListPipesCommand = ListPipesCommand;
1344
- exports.ListPipesRequestFilterSensitiveLog = ListPipesRequestFilterSensitiveLog;
1345
- exports.ListPipesResponseFilterSensitiveLog = ListPipesResponseFilterSensitiveLog;
1346
1743
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1347
- exports.ListTagsForResourceResponseFilterSensitiveLog = ListTagsForResourceResponseFilterSensitiveLog;
1348
1744
  exports.LogLevel = LogLevel;
1349
1745
  exports.MSKStartPosition = MSKStartPosition;
1350
1746
  exports.MeasureValueType = MeasureValueType;
1351
- exports.NetworkConfigurationFilterSensitiveLog = NetworkConfigurationFilterSensitiveLog;
1352
- exports.NotFoundException = NotFoundException;
1747
+ exports.NotFoundException = NotFoundException$1;
1353
1748
  exports.OnPartialBatchItemFailureStreams = OnPartialBatchItemFailureStreams;
1354
- exports.PipeEnrichmentHttpParametersFilterSensitiveLog = PipeEnrichmentHttpParametersFilterSensitiveLog;
1355
- exports.PipeEnrichmentParametersFilterSensitiveLog = PipeEnrichmentParametersFilterSensitiveLog;
1356
- exports.PipeSourceActiveMQBrokerParametersFilterSensitiveLog = PipeSourceActiveMQBrokerParametersFilterSensitiveLog;
1357
- exports.PipeSourceManagedStreamingKafkaParametersFilterSensitiveLog = PipeSourceManagedStreamingKafkaParametersFilterSensitiveLog;
1358
- exports.PipeSourceParametersFilterSensitiveLog = PipeSourceParametersFilterSensitiveLog;
1359
- exports.PipeSourceRabbitMQBrokerParametersFilterSensitiveLog = PipeSourceRabbitMQBrokerParametersFilterSensitiveLog;
1360
- exports.PipeSourceSelfManagedKafkaParametersFilterSensitiveLog = PipeSourceSelfManagedKafkaParametersFilterSensitiveLog;
1361
1749
  exports.PipeState = PipeState;
1362
- exports.PipeTargetEcsTaskParametersFilterSensitiveLog = PipeTargetEcsTaskParametersFilterSensitiveLog;
1363
- exports.PipeTargetEventBridgeEventBusParametersFilterSensitiveLog = PipeTargetEventBridgeEventBusParametersFilterSensitiveLog;
1364
- exports.PipeTargetHttpParametersFilterSensitiveLog = PipeTargetHttpParametersFilterSensitiveLog;
1365
1750
  exports.PipeTargetInvocationType = PipeTargetInvocationType;
1366
- exports.PipeTargetKinesisStreamParametersFilterSensitiveLog = PipeTargetKinesisStreamParametersFilterSensitiveLog;
1367
- exports.PipeTargetParametersFilterSensitiveLog = PipeTargetParametersFilterSensitiveLog;
1368
- exports.PipeTargetRedshiftDataParametersFilterSensitiveLog = PipeTargetRedshiftDataParametersFilterSensitiveLog;
1369
- exports.PipeTargetSageMakerPipelineParametersFilterSensitiveLog = PipeTargetSageMakerPipelineParametersFilterSensitiveLog;
1370
- exports.PipeTargetSqsQueueParametersFilterSensitiveLog = PipeTargetSqsQueueParametersFilterSensitiveLog;
1371
1751
  exports.Pipes = Pipes;
1372
1752
  exports.PipesClient = PipesClient;
1373
- exports.PipesServiceException = PipesServiceException;
1374
- exports.PlacementConstraintFilterSensitiveLog = PlacementConstraintFilterSensitiveLog;
1753
+ exports.PipesServiceException = PipesServiceException$1;
1375
1754
  exports.PlacementConstraintType = PlacementConstraintType;
1376
- exports.PlacementStrategyFilterSensitiveLog = PlacementStrategyFilterSensitiveLog;
1377
1755
  exports.PlacementStrategyType = PlacementStrategyType;
1378
1756
  exports.PropagateTags = PropagateTags;
1379
1757
  exports.RequestedPipeState = RequestedPipeState;
1380
1758
  exports.RequestedPipeStateDescribeResponse = RequestedPipeStateDescribeResponse;
1381
1759
  exports.S3OutputFormat = S3OutputFormat;
1382
- exports.SageMakerPipelineParameterFilterSensitiveLog = SageMakerPipelineParameterFilterSensitiveLog;
1383
- exports.SelfManagedKafkaAccessConfigurationVpcFilterSensitiveLog = SelfManagedKafkaAccessConfigurationVpcFilterSensitiveLog;
1384
1760
  exports.SelfManagedKafkaStartPosition = SelfManagedKafkaStartPosition;
1385
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1761
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1386
1762
  exports.StartPipeCommand = StartPipeCommand;
1387
1763
  exports.StopPipeCommand = StopPipeCommand;
1388
- exports.TagFilterSensitiveLog = TagFilterSensitiveLog;
1389
1764
  exports.TagResourceCommand = TagResourceCommand;
1390
- exports.TagResourceRequestFilterSensitiveLog = TagResourceRequestFilterSensitiveLog;
1391
- exports.ThrottlingException = ThrottlingException;
1765
+ exports.ThrottlingException = ThrottlingException$1;
1392
1766
  exports.TimeFieldType = TimeFieldType;
1393
1767
  exports.UntagResourceCommand = UntagResourceCommand;
1394
1768
  exports.UpdatePipeCommand = UpdatePipeCommand;
1395
- exports.UpdatePipeRequestFilterSensitiveLog = UpdatePipeRequestFilterSensitiveLog;
1396
- exports.UpdatePipeSourceParametersFilterSensitiveLog = UpdatePipeSourceParametersFilterSensitiveLog;
1397
- exports.UpdatePipeSourceSelfManagedKafkaParametersFilterSensitiveLog = UpdatePipeSourceSelfManagedKafkaParametersFilterSensitiveLog;
1398
- exports.ValidationException = ValidationException;
1769
+ exports.ValidationException = ValidationException$1;
1399
1770
  exports.paginateListPipes = paginateListPipes;