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