localstack-core 4.10.1.dev7__py3-none-any.whl → 4.10.1.dev42__py3-none-any.whl
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.
- localstack/aws/api/acm/__init__.py +122 -122
- localstack/aws/api/apigateway/__init__.py +560 -559
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1040 -969
- localstack/aws/api/cloudwatch/__init__.py +375 -375
- localstack/aws/api/config/__init__.py +784 -786
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +8901 -8818
- localstack/aws/api/es/__init__.py +453 -453
- localstack/aws/api/events/__init__.py +552 -552
- localstack/aws/api/firehose/__init__.py +541 -543
- localstack/aws/api/iam/__init__.py +639 -572
- localstack/aws/api/kinesis/__init__.py +235 -147
- localstack/aws/api/kms/__init__.py +340 -336
- localstack/aws/api/lambda_/__init__.py +574 -573
- localstack/aws/api/logs/__init__.py +676 -675
- localstack/aws/api/opensearch/__init__.py +814 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1188 -1166
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +67 -67
- localstack/aws/api/route53/__init__.py +254 -254
- localstack/aws/api/route53resolver/__init__.py +396 -396
- localstack/aws/api/s3/__init__.py +1350 -1349
- localstack/aws/api/s3control/__init__.py +594 -594
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +193 -193
- localstack/aws/api/ses/__init__.py +227 -227
- localstack/aws/api/sns/__init__.py +115 -115
- localstack/aws/api/sqs/__init__.py +100 -100
- localstack/aws/api/ssm/__init__.py +1977 -1971
- localstack/aws/api/stepfunctions/__init__.py +323 -323
- localstack/aws/api/sts/__init__.py +90 -66
- localstack/aws/api/support/__init__.py +112 -112
- localstack/aws/api/swf/__init__.py +378 -386
- localstack/aws/api/transcribe/__init__.py +425 -425
- localstack/aws/handlers/service.py +11 -1
- localstack/aws/protocol/parser.py +1 -1
- localstack/aws/scaffold.py +15 -17
- localstack/cli/localstack.py +6 -1
- localstack/dev/kubernetes/__main__.py +38 -3
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +32 -9
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/v2/provider.py +6 -6
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +34 -4
- localstack/services/kms/provider.py +93 -16
- localstack/services/lambda_/api_utils.py +3 -1
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +1 -1
- localstack/services/lambda_/runtimes.py +8 -3
- localstack/services/logs/provider.py +36 -19
- localstack/services/s3/provider.py +1 -1
- localstack/services/sns/v2/models.py +24 -1
- localstack/services/sns/v2/provider.py +144 -12
- localstack/services/sns/v2/utils.py +8 -0
- localstack/services/sqs/models.py +37 -10
- localstack/testing/snapshots/transformer_utility.py +2 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/catalog/catalog_loader.py +111 -3
- localstack/utils/crypto.py +109 -0
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/METADATA +6 -5
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/RECORD +76 -76
- localstack_core-4.10.1.dev42.dist-info/plux.json +1 -0
- localstack_core-4.10.1.dev7.dist-info/plux.json +0 -1
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
from enum import StrEnum
|
|
3
|
-
from typing import
|
|
3
|
+
from typing import TypedDict
|
|
4
4
|
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
6
|
|
|
@@ -243,7 +243,7 @@ class InternalException(ServiceException):
|
|
|
243
243
|
code: str = "InternalException"
|
|
244
244
|
sender_fault: bool = False
|
|
245
245
|
status_code: int = 500
|
|
246
|
-
retryAfterSeconds:
|
|
246
|
+
retryAfterSeconds: Integer | None
|
|
247
247
|
|
|
248
248
|
|
|
249
249
|
class NotFoundException(ServiceException):
|
|
@@ -266,9 +266,9 @@ class ThrottlingException(ServiceException):
|
|
|
266
266
|
code: str = "ThrottlingException"
|
|
267
267
|
sender_fault: bool = True
|
|
268
268
|
status_code: int = 429
|
|
269
|
-
serviceCode:
|
|
270
|
-
quotaCode:
|
|
271
|
-
retryAfterSeconds:
|
|
269
|
+
serviceCode: String | None
|
|
270
|
+
quotaCode: String | None
|
|
271
|
+
retryAfterSeconds: Integer | None
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
class ValidationExceptionField(TypedDict, total=False):
|
|
@@ -276,28 +276,28 @@ class ValidationExceptionField(TypedDict, total=False):
|
|
|
276
276
|
message: ErrorMessage
|
|
277
277
|
|
|
278
278
|
|
|
279
|
-
ValidationExceptionFieldList =
|
|
279
|
+
ValidationExceptionFieldList = list[ValidationExceptionField]
|
|
280
280
|
|
|
281
281
|
|
|
282
282
|
class ValidationException(ServiceException):
|
|
283
283
|
code: str = "ValidationException"
|
|
284
284
|
sender_fault: bool = True
|
|
285
285
|
status_code: int = 400
|
|
286
|
-
fieldList:
|
|
286
|
+
fieldList: ValidationExceptionFieldList | None
|
|
287
287
|
|
|
288
288
|
|
|
289
|
-
SecurityGroups =
|
|
290
|
-
Subnets =
|
|
289
|
+
SecurityGroups = list[SecurityGroup]
|
|
290
|
+
Subnets = list[Subnet]
|
|
291
291
|
|
|
292
292
|
|
|
293
293
|
class AwsVpcConfiguration(TypedDict, total=False):
|
|
294
294
|
Subnets: Subnets
|
|
295
|
-
SecurityGroups:
|
|
296
|
-
AssignPublicIp:
|
|
295
|
+
SecurityGroups: SecurityGroups | None
|
|
296
|
+
AssignPublicIp: AssignPublicIp | None
|
|
297
297
|
|
|
298
298
|
|
|
299
299
|
class BatchArrayProperties(TypedDict, total=False):
|
|
300
|
-
Size:
|
|
300
|
+
Size: BatchArraySize | None
|
|
301
301
|
|
|
302
302
|
|
|
303
303
|
class BatchResourceRequirement(TypedDict, total=False):
|
|
@@ -305,56 +305,56 @@ class BatchResourceRequirement(TypedDict, total=False):
|
|
|
305
305
|
Value: String
|
|
306
306
|
|
|
307
307
|
|
|
308
|
-
BatchResourceRequirementsList =
|
|
308
|
+
BatchResourceRequirementsList = list[BatchResourceRequirement]
|
|
309
309
|
|
|
310
310
|
|
|
311
311
|
class BatchEnvironmentVariable(TypedDict, total=False):
|
|
312
|
-
Name:
|
|
313
|
-
Value:
|
|
312
|
+
Name: String | None
|
|
313
|
+
Value: String | None
|
|
314
314
|
|
|
315
315
|
|
|
316
|
-
BatchEnvironmentVariableList =
|
|
317
|
-
StringList =
|
|
316
|
+
BatchEnvironmentVariableList = list[BatchEnvironmentVariable]
|
|
317
|
+
StringList = list[String]
|
|
318
318
|
|
|
319
319
|
|
|
320
320
|
class BatchContainerOverrides(TypedDict, total=False):
|
|
321
|
-
Command:
|
|
322
|
-
Environment:
|
|
323
|
-
InstanceType:
|
|
324
|
-
ResourceRequirements:
|
|
321
|
+
Command: StringList | None
|
|
322
|
+
Environment: BatchEnvironmentVariableList | None
|
|
323
|
+
InstanceType: String | None
|
|
324
|
+
ResourceRequirements: BatchResourceRequirementsList | None
|
|
325
325
|
|
|
326
326
|
|
|
327
327
|
class BatchJobDependency(TypedDict, total=False):
|
|
328
|
-
JobId:
|
|
329
|
-
Type:
|
|
328
|
+
JobId: String | None
|
|
329
|
+
Type: BatchJobDependencyType | None
|
|
330
330
|
|
|
331
331
|
|
|
332
|
-
BatchDependsOn =
|
|
333
|
-
BatchParametersMap =
|
|
332
|
+
BatchDependsOn = list[BatchJobDependency]
|
|
333
|
+
BatchParametersMap = dict[String, String]
|
|
334
334
|
|
|
335
335
|
|
|
336
336
|
class BatchRetryStrategy(TypedDict, total=False):
|
|
337
|
-
Attempts:
|
|
337
|
+
Attempts: BatchRetryAttempts | None
|
|
338
338
|
|
|
339
339
|
|
|
340
340
|
class CapacityProviderStrategyItem(TypedDict, total=False):
|
|
341
341
|
capacityProvider: CapacityProvider
|
|
342
|
-
weight:
|
|
343
|
-
base:
|
|
342
|
+
weight: CapacityProviderStrategyItemWeight | None
|
|
343
|
+
base: CapacityProviderStrategyItemBase | None
|
|
344
344
|
|
|
345
345
|
|
|
346
|
-
CapacityProviderStrategy =
|
|
346
|
+
CapacityProviderStrategy = list[CapacityProviderStrategyItem]
|
|
347
347
|
|
|
348
348
|
|
|
349
349
|
class CloudwatchLogsLogDestination(TypedDict, total=False):
|
|
350
|
-
LogGroupArn:
|
|
350
|
+
LogGroupArn: CloudwatchLogGroupArn | None
|
|
351
351
|
|
|
352
352
|
|
|
353
353
|
class CloudwatchLogsLogDestinationParameters(TypedDict, total=False):
|
|
354
354
|
LogGroupArn: CloudwatchLogGroupArn
|
|
355
355
|
|
|
356
356
|
|
|
357
|
-
IncludeExecutionData =
|
|
357
|
+
IncludeExecutionData = list[IncludeExecutionDataOption]
|
|
358
358
|
|
|
359
359
|
|
|
360
360
|
class FirehoseLogDestinationParameters(TypedDict, total=False):
|
|
@@ -364,19 +364,19 @@ class FirehoseLogDestinationParameters(TypedDict, total=False):
|
|
|
364
364
|
class S3LogDestinationParameters(TypedDict, total=False):
|
|
365
365
|
BucketName: S3LogDestinationParametersBucketNameString
|
|
366
366
|
BucketOwner: S3LogDestinationParametersBucketOwnerString
|
|
367
|
-
OutputFormat:
|
|
368
|
-
Prefix:
|
|
367
|
+
OutputFormat: S3OutputFormat | None
|
|
368
|
+
Prefix: S3LogDestinationParametersPrefixString | None
|
|
369
369
|
|
|
370
370
|
|
|
371
371
|
class PipeLogConfigurationParameters(TypedDict, total=False):
|
|
372
|
-
S3LogDestination:
|
|
373
|
-
FirehoseLogDestination:
|
|
374
|
-
CloudwatchLogsLogDestination:
|
|
372
|
+
S3LogDestination: S3LogDestinationParameters | None
|
|
373
|
+
FirehoseLogDestination: FirehoseLogDestinationParameters | None
|
|
374
|
+
CloudwatchLogsLogDestination: CloudwatchLogsLogDestinationParameters | None
|
|
375
375
|
Level: LogLevel
|
|
376
|
-
IncludeExecutionData:
|
|
376
|
+
IncludeExecutionData: IncludeExecutionData | None
|
|
377
377
|
|
|
378
378
|
|
|
379
|
-
TagMap =
|
|
379
|
+
TagMap = dict[TagKey, TagValue]
|
|
380
380
|
|
|
381
381
|
|
|
382
382
|
class MultiMeasureAttributeMapping(TypedDict, total=False):
|
|
@@ -385,7 +385,7 @@ class MultiMeasureAttributeMapping(TypedDict, total=False):
|
|
|
385
385
|
MultiMeasureAttributeName: MultiMeasureAttributeName
|
|
386
386
|
|
|
387
387
|
|
|
388
|
-
MultiMeasureAttributeMappings =
|
|
388
|
+
MultiMeasureAttributeMappings = list[MultiMeasureAttributeMapping]
|
|
389
389
|
|
|
390
390
|
|
|
391
391
|
class MultiMeasureMapping(TypedDict, total=False):
|
|
@@ -393,7 +393,7 @@ class MultiMeasureMapping(TypedDict, total=False):
|
|
|
393
393
|
MultiMeasureAttributeMappings: MultiMeasureAttributeMappings
|
|
394
394
|
|
|
395
395
|
|
|
396
|
-
MultiMeasureMappings =
|
|
396
|
+
MultiMeasureMappings = list[MultiMeasureMapping]
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
class SingleMeasureMapping(TypedDict, total=False):
|
|
@@ -402,7 +402,7 @@ class SingleMeasureMapping(TypedDict, total=False):
|
|
|
402
402
|
MeasureName: MeasureName
|
|
403
403
|
|
|
404
404
|
|
|
405
|
-
SingleMeasureMappings =
|
|
405
|
+
SingleMeasureMappings = list[SingleMeasureMapping]
|
|
406
406
|
|
|
407
407
|
|
|
408
408
|
class DimensionMapping(TypedDict, total=False):
|
|
@@ -411,34 +411,34 @@ class DimensionMapping(TypedDict, total=False):
|
|
|
411
411
|
DimensionName: DimensionName
|
|
412
412
|
|
|
413
413
|
|
|
414
|
-
DimensionMappings =
|
|
414
|
+
DimensionMappings = list[DimensionMapping]
|
|
415
415
|
|
|
416
416
|
|
|
417
417
|
class PipeTargetTimestreamParameters(TypedDict, total=False):
|
|
418
418
|
TimeValue: TimeValue
|
|
419
|
-
EpochTimeUnit:
|
|
420
|
-
TimeFieldType:
|
|
421
|
-
TimestampFormat:
|
|
419
|
+
EpochTimeUnit: EpochTimeUnit | None
|
|
420
|
+
TimeFieldType: TimeFieldType | None
|
|
421
|
+
TimestampFormat: TimestampFormat | None
|
|
422
422
|
VersionValue: VersionValue
|
|
423
423
|
DimensionMappings: DimensionMappings
|
|
424
|
-
SingleMeasureMappings:
|
|
425
|
-
MultiMeasureMappings:
|
|
424
|
+
SingleMeasureMappings: SingleMeasureMappings | None
|
|
425
|
+
MultiMeasureMappings: MultiMeasureMappings | None
|
|
426
426
|
|
|
427
427
|
|
|
428
428
|
class PipeTargetCloudWatchLogsParameters(TypedDict, total=False):
|
|
429
|
-
LogStreamName:
|
|
430
|
-
Timestamp:
|
|
429
|
+
LogStreamName: LogStreamName | None
|
|
430
|
+
Timestamp: JsonPath | None
|
|
431
431
|
|
|
432
432
|
|
|
433
|
-
EventBridgeEventResourceList =
|
|
433
|
+
EventBridgeEventResourceList = list[ArnOrJsonPath]
|
|
434
434
|
|
|
435
435
|
|
|
436
436
|
class PipeTargetEventBridgeEventBusParameters(TypedDict, total=False):
|
|
437
|
-
EndpointId:
|
|
438
|
-
DetailType:
|
|
439
|
-
Source:
|
|
440
|
-
Resources:
|
|
441
|
-
Time:
|
|
437
|
+
EndpointId: EventBridgeEndpointId | None
|
|
438
|
+
DetailType: EventBridgeDetailType | None
|
|
439
|
+
Source: EventBridgeEventSource | None
|
|
440
|
+
Resources: EventBridgeEventResourceList | None
|
|
441
|
+
Time: JsonPath | None
|
|
442
442
|
|
|
443
443
|
|
|
444
444
|
class SageMakerPipelineParameter(TypedDict, total=False):
|
|
@@ -446,49 +446,49 @@ class SageMakerPipelineParameter(TypedDict, total=False):
|
|
|
446
446
|
Value: SageMakerPipelineParameterValue
|
|
447
447
|
|
|
448
448
|
|
|
449
|
-
SageMakerPipelineParameterList =
|
|
449
|
+
SageMakerPipelineParameterList = list[SageMakerPipelineParameter]
|
|
450
450
|
|
|
451
451
|
|
|
452
452
|
class PipeTargetSageMakerPipelineParameters(TypedDict, total=False):
|
|
453
|
-
PipelineParameterList:
|
|
453
|
+
PipelineParameterList: SageMakerPipelineParameterList | None
|
|
454
454
|
|
|
455
455
|
|
|
456
|
-
Sqls =
|
|
456
|
+
Sqls = list[Sql]
|
|
457
457
|
|
|
458
458
|
|
|
459
459
|
class PipeTargetRedshiftDataParameters(TypedDict, total=False):
|
|
460
|
-
SecretManagerArn:
|
|
460
|
+
SecretManagerArn: SecretManagerArnOrJsonPath | None
|
|
461
461
|
Database: Database
|
|
462
|
-
DbUser:
|
|
463
|
-
StatementName:
|
|
464
|
-
WithEvent:
|
|
462
|
+
DbUser: DbUser | None
|
|
463
|
+
StatementName: StatementName | None
|
|
464
|
+
WithEvent: Boolean | None
|
|
465
465
|
Sqls: Sqls
|
|
466
466
|
|
|
467
467
|
|
|
468
|
-
QueryStringParametersMap =
|
|
469
|
-
HeaderParametersMap =
|
|
470
|
-
PathParameterList =
|
|
468
|
+
QueryStringParametersMap = dict[QueryStringKey, QueryStringValue]
|
|
469
|
+
HeaderParametersMap = dict[HeaderKey, HeaderValue]
|
|
470
|
+
PathParameterList = list[PathParameter]
|
|
471
471
|
|
|
472
472
|
|
|
473
473
|
class PipeTargetHttpParameters(TypedDict, total=False):
|
|
474
|
-
PathParameterValues:
|
|
475
|
-
HeaderParameters:
|
|
476
|
-
QueryStringParameters:
|
|
474
|
+
PathParameterValues: PathParameterList | None
|
|
475
|
+
HeaderParameters: HeaderParametersMap | None
|
|
476
|
+
QueryStringParameters: QueryStringParametersMap | None
|
|
477
477
|
|
|
478
478
|
|
|
479
479
|
class PipeTargetSqsQueueParameters(TypedDict, total=False):
|
|
480
|
-
MessageGroupId:
|
|
481
|
-
MessageDeduplicationId:
|
|
480
|
+
MessageGroupId: MessageGroupId | None
|
|
481
|
+
MessageDeduplicationId: MessageDeduplicationId | None
|
|
482
482
|
|
|
483
483
|
|
|
484
484
|
class PipeTargetBatchJobParameters(TypedDict, total=False):
|
|
485
485
|
JobDefinition: String
|
|
486
486
|
JobName: String
|
|
487
|
-
ArrayProperties:
|
|
488
|
-
RetryStrategy:
|
|
489
|
-
ContainerOverrides:
|
|
490
|
-
DependsOn:
|
|
491
|
-
Parameters:
|
|
487
|
+
ArrayProperties: BatchArrayProperties | None
|
|
488
|
+
RetryStrategy: BatchRetryStrategy | None
|
|
489
|
+
ContainerOverrides: BatchContainerOverrides | None
|
|
490
|
+
DependsOn: BatchDependsOn | None
|
|
491
|
+
Parameters: BatchParametersMap | None
|
|
492
492
|
|
|
493
493
|
|
|
494
494
|
class Tag(TypedDict, total=False):
|
|
@@ -496,15 +496,15 @@ class Tag(TypedDict, total=False):
|
|
|
496
496
|
Value: TagValue
|
|
497
497
|
|
|
498
498
|
|
|
499
|
-
TagList =
|
|
499
|
+
TagList = list[Tag]
|
|
500
500
|
|
|
501
501
|
|
|
502
502
|
class EcsInferenceAcceleratorOverride(TypedDict, total=False):
|
|
503
|
-
deviceName:
|
|
504
|
-
deviceType:
|
|
503
|
+
deviceName: String | None
|
|
504
|
+
deviceType: String | None
|
|
505
505
|
|
|
506
506
|
|
|
507
|
-
EcsInferenceAcceleratorOverrideList =
|
|
507
|
+
EcsInferenceAcceleratorOverrideList = list[EcsInferenceAcceleratorOverride]
|
|
508
508
|
|
|
509
509
|
|
|
510
510
|
class EcsEphemeralStorage(TypedDict, total=False):
|
|
@@ -516,7 +516,7 @@ class EcsResourceRequirement(TypedDict, total=False):
|
|
|
516
516
|
value: String
|
|
517
517
|
|
|
518
518
|
|
|
519
|
-
EcsResourceRequirementsList =
|
|
519
|
+
EcsResourceRequirementsList = list[EcsResourceRequirement]
|
|
520
520
|
|
|
521
521
|
|
|
522
522
|
class EcsEnvironmentFile(TypedDict, total=False):
|
|
@@ -524,77 +524,77 @@ class EcsEnvironmentFile(TypedDict, total=False):
|
|
|
524
524
|
value: String
|
|
525
525
|
|
|
526
526
|
|
|
527
|
-
EcsEnvironmentFileList =
|
|
527
|
+
EcsEnvironmentFileList = list[EcsEnvironmentFile]
|
|
528
528
|
|
|
529
529
|
|
|
530
530
|
class EcsEnvironmentVariable(TypedDict, total=False):
|
|
531
|
-
name:
|
|
532
|
-
value:
|
|
531
|
+
name: String | None
|
|
532
|
+
value: String | None
|
|
533
533
|
|
|
534
534
|
|
|
535
|
-
EcsEnvironmentVariableList =
|
|
535
|
+
EcsEnvironmentVariableList = list[EcsEnvironmentVariable]
|
|
536
536
|
|
|
537
537
|
|
|
538
538
|
class EcsContainerOverride(TypedDict, total=False):
|
|
539
|
-
Command:
|
|
540
|
-
Cpu:
|
|
541
|
-
Environment:
|
|
542
|
-
EnvironmentFiles:
|
|
543
|
-
Memory:
|
|
544
|
-
MemoryReservation:
|
|
545
|
-
Name:
|
|
546
|
-
ResourceRequirements:
|
|
539
|
+
Command: StringList | None
|
|
540
|
+
Cpu: Integer | None
|
|
541
|
+
Environment: EcsEnvironmentVariableList | None
|
|
542
|
+
EnvironmentFiles: EcsEnvironmentFileList | None
|
|
543
|
+
Memory: Integer | None
|
|
544
|
+
MemoryReservation: Integer | None
|
|
545
|
+
Name: String | None
|
|
546
|
+
ResourceRequirements: EcsResourceRequirementsList | None
|
|
547
547
|
|
|
548
548
|
|
|
549
|
-
EcsContainerOverrideList =
|
|
549
|
+
EcsContainerOverrideList = list[EcsContainerOverride]
|
|
550
550
|
|
|
551
551
|
|
|
552
552
|
class EcsTaskOverride(TypedDict, total=False):
|
|
553
|
-
ContainerOverrides:
|
|
554
|
-
Cpu:
|
|
555
|
-
EphemeralStorage:
|
|
556
|
-
ExecutionRoleArn:
|
|
557
|
-
InferenceAcceleratorOverrides:
|
|
558
|
-
Memory:
|
|
559
|
-
TaskRoleArn:
|
|
553
|
+
ContainerOverrides: EcsContainerOverrideList | None
|
|
554
|
+
Cpu: String | None
|
|
555
|
+
EphemeralStorage: EcsEphemeralStorage | None
|
|
556
|
+
ExecutionRoleArn: ArnOrJsonPath | None
|
|
557
|
+
InferenceAcceleratorOverrides: EcsInferenceAcceleratorOverrideList | None
|
|
558
|
+
Memory: String | None
|
|
559
|
+
TaskRoleArn: ArnOrJsonPath | None
|
|
560
560
|
|
|
561
561
|
|
|
562
562
|
class PlacementStrategy(TypedDict, total=False):
|
|
563
|
-
type:
|
|
564
|
-
field:
|
|
563
|
+
type: PlacementStrategyType | None
|
|
564
|
+
field: PlacementStrategyField | None
|
|
565
565
|
|
|
566
566
|
|
|
567
|
-
PlacementStrategies =
|
|
567
|
+
PlacementStrategies = list[PlacementStrategy]
|
|
568
568
|
|
|
569
569
|
|
|
570
570
|
class PlacementConstraint(TypedDict, total=False):
|
|
571
|
-
type:
|
|
572
|
-
expression:
|
|
571
|
+
type: PlacementConstraintType | None
|
|
572
|
+
expression: PlacementConstraintExpression | None
|
|
573
573
|
|
|
574
574
|
|
|
575
|
-
PlacementConstraints =
|
|
575
|
+
PlacementConstraints = list[PlacementConstraint]
|
|
576
576
|
|
|
577
577
|
|
|
578
578
|
class NetworkConfiguration(TypedDict, total=False):
|
|
579
|
-
awsvpcConfiguration:
|
|
579
|
+
awsvpcConfiguration: AwsVpcConfiguration | None
|
|
580
580
|
|
|
581
581
|
|
|
582
582
|
class PipeTargetEcsTaskParameters(TypedDict, total=False):
|
|
583
583
|
TaskDefinitionArn: ArnOrJsonPath
|
|
584
|
-
TaskCount:
|
|
585
|
-
LaunchType:
|
|
586
|
-
NetworkConfiguration:
|
|
587
|
-
PlatformVersion:
|
|
588
|
-
Group:
|
|
589
|
-
CapacityProviderStrategy:
|
|
590
|
-
EnableECSManagedTags:
|
|
591
|
-
EnableExecuteCommand:
|
|
592
|
-
PlacementConstraints:
|
|
593
|
-
PlacementStrategy:
|
|
594
|
-
PropagateTags:
|
|
595
|
-
ReferenceId:
|
|
596
|
-
Overrides:
|
|
597
|
-
Tags:
|
|
584
|
+
TaskCount: LimitMin1 | None
|
|
585
|
+
LaunchType: LaunchType | None
|
|
586
|
+
NetworkConfiguration: NetworkConfiguration | None
|
|
587
|
+
PlatformVersion: String | None
|
|
588
|
+
Group: String | None
|
|
589
|
+
CapacityProviderStrategy: CapacityProviderStrategy | None
|
|
590
|
+
EnableECSManagedTags: Boolean | None
|
|
591
|
+
EnableExecuteCommand: Boolean | None
|
|
592
|
+
PlacementConstraints: PlacementConstraints | None
|
|
593
|
+
PlacementStrategy: PlacementStrategies | None
|
|
594
|
+
PropagateTags: PropagateTags | None
|
|
595
|
+
ReferenceId: ReferenceId | None
|
|
596
|
+
Overrides: EcsTaskOverride | None
|
|
597
|
+
Tags: TagList | None
|
|
598
598
|
|
|
599
599
|
|
|
600
600
|
class PipeTargetKinesisStreamParameters(TypedDict, total=False):
|
|
@@ -602,121 +602,121 @@ class PipeTargetKinesisStreamParameters(TypedDict, total=False):
|
|
|
602
602
|
|
|
603
603
|
|
|
604
604
|
class PipeTargetStateMachineParameters(TypedDict, total=False):
|
|
605
|
-
InvocationType:
|
|
605
|
+
InvocationType: PipeTargetInvocationType | None
|
|
606
606
|
|
|
607
607
|
|
|
608
608
|
class PipeTargetLambdaFunctionParameters(TypedDict, total=False):
|
|
609
|
-
InvocationType:
|
|
609
|
+
InvocationType: PipeTargetInvocationType | None
|
|
610
610
|
|
|
611
611
|
|
|
612
612
|
class PipeTargetParameters(TypedDict, total=False):
|
|
613
|
-
InputTemplate:
|
|
614
|
-
LambdaFunctionParameters:
|
|
615
|
-
StepFunctionStateMachineParameters:
|
|
616
|
-
KinesisStreamParameters:
|
|
617
|
-
EcsTaskParameters:
|
|
618
|
-
BatchJobParameters:
|
|
619
|
-
SqsQueueParameters:
|
|
620
|
-
HttpParameters:
|
|
621
|
-
RedshiftDataParameters:
|
|
622
|
-
SageMakerPipelineParameters:
|
|
623
|
-
EventBridgeEventBusParameters:
|
|
624
|
-
CloudWatchLogsParameters:
|
|
625
|
-
TimestreamParameters:
|
|
613
|
+
InputTemplate: InputTemplate | None
|
|
614
|
+
LambdaFunctionParameters: PipeTargetLambdaFunctionParameters | None
|
|
615
|
+
StepFunctionStateMachineParameters: PipeTargetStateMachineParameters | None
|
|
616
|
+
KinesisStreamParameters: PipeTargetKinesisStreamParameters | None
|
|
617
|
+
EcsTaskParameters: PipeTargetEcsTaskParameters | None
|
|
618
|
+
BatchJobParameters: PipeTargetBatchJobParameters | None
|
|
619
|
+
SqsQueueParameters: PipeTargetSqsQueueParameters | None
|
|
620
|
+
HttpParameters: PipeTargetHttpParameters | None
|
|
621
|
+
RedshiftDataParameters: PipeTargetRedshiftDataParameters | None
|
|
622
|
+
SageMakerPipelineParameters: PipeTargetSageMakerPipelineParameters | None
|
|
623
|
+
EventBridgeEventBusParameters: PipeTargetEventBridgeEventBusParameters | None
|
|
624
|
+
CloudWatchLogsParameters: PipeTargetCloudWatchLogsParameters | None
|
|
625
|
+
TimestreamParameters: PipeTargetTimestreamParameters | None
|
|
626
626
|
|
|
627
627
|
|
|
628
628
|
class PipeEnrichmentHttpParameters(TypedDict, total=False):
|
|
629
|
-
PathParameterValues:
|
|
630
|
-
HeaderParameters:
|
|
631
|
-
QueryStringParameters:
|
|
629
|
+
PathParameterValues: PathParameterList | None
|
|
630
|
+
HeaderParameters: HeaderParametersMap | None
|
|
631
|
+
QueryStringParameters: QueryStringParametersMap | None
|
|
632
632
|
|
|
633
633
|
|
|
634
634
|
class PipeEnrichmentParameters(TypedDict, total=False):
|
|
635
|
-
InputTemplate:
|
|
636
|
-
HttpParameters:
|
|
635
|
+
InputTemplate: InputTemplate | None
|
|
636
|
+
HttpParameters: PipeEnrichmentHttpParameters | None
|
|
637
637
|
|
|
638
638
|
|
|
639
|
-
SecurityGroupIds =
|
|
640
|
-
SubnetIds =
|
|
639
|
+
SecurityGroupIds = list[SecurityGroupId]
|
|
640
|
+
SubnetIds = list[SubnetId]
|
|
641
641
|
|
|
642
642
|
|
|
643
643
|
class SelfManagedKafkaAccessConfigurationVpc(TypedDict, total=False):
|
|
644
|
-
Subnets:
|
|
645
|
-
SecurityGroup:
|
|
644
|
+
Subnets: SubnetIds | None
|
|
645
|
+
SecurityGroup: SecurityGroupIds | None
|
|
646
646
|
|
|
647
647
|
|
|
648
648
|
class SelfManagedKafkaAccessConfigurationCredentials(TypedDict, total=False):
|
|
649
|
-
BasicAuth:
|
|
650
|
-
SaslScram512Auth:
|
|
651
|
-
SaslScram256Auth:
|
|
652
|
-
ClientCertificateTlsAuth:
|
|
649
|
+
BasicAuth: SecretManagerArn | None
|
|
650
|
+
SaslScram512Auth: SecretManagerArn | None
|
|
651
|
+
SaslScram256Auth: SecretManagerArn | None
|
|
652
|
+
ClientCertificateTlsAuth: SecretManagerArn | None
|
|
653
653
|
|
|
654
654
|
|
|
655
|
-
KafkaBootstrapServers =
|
|
655
|
+
KafkaBootstrapServers = list[EndpointString]
|
|
656
656
|
|
|
657
657
|
|
|
658
658
|
class PipeSourceSelfManagedKafkaParameters(TypedDict, total=False):
|
|
659
659
|
TopicName: KafkaTopicName
|
|
660
|
-
StartingPosition:
|
|
661
|
-
AdditionalBootstrapServers:
|
|
662
|
-
BatchSize:
|
|
663
|
-
MaximumBatchingWindowInSeconds:
|
|
664
|
-
ConsumerGroupID:
|
|
665
|
-
Credentials:
|
|
666
|
-
ServerRootCaCertificate:
|
|
667
|
-
Vpc:
|
|
660
|
+
StartingPosition: SelfManagedKafkaStartPosition | None
|
|
661
|
+
AdditionalBootstrapServers: KafkaBootstrapServers | None
|
|
662
|
+
BatchSize: LimitMax10000 | None
|
|
663
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
664
|
+
ConsumerGroupID: URI | None
|
|
665
|
+
Credentials: SelfManagedKafkaAccessConfigurationCredentials | None
|
|
666
|
+
ServerRootCaCertificate: SecretManagerArn | None
|
|
667
|
+
Vpc: SelfManagedKafkaAccessConfigurationVpc | None
|
|
668
668
|
|
|
669
669
|
|
|
670
670
|
class MSKAccessCredentials(TypedDict, total=False):
|
|
671
|
-
SaslScram512Auth:
|
|
672
|
-
ClientCertificateTlsAuth:
|
|
671
|
+
SaslScram512Auth: SecretManagerArn | None
|
|
672
|
+
ClientCertificateTlsAuth: SecretManagerArn | None
|
|
673
673
|
|
|
674
674
|
|
|
675
675
|
class PipeSourceManagedStreamingKafkaParameters(TypedDict, total=False):
|
|
676
676
|
TopicName: KafkaTopicName
|
|
677
|
-
StartingPosition:
|
|
678
|
-
BatchSize:
|
|
679
|
-
MaximumBatchingWindowInSeconds:
|
|
680
|
-
ConsumerGroupID:
|
|
681
|
-
Credentials:
|
|
677
|
+
StartingPosition: MSKStartPosition | None
|
|
678
|
+
BatchSize: LimitMax10000 | None
|
|
679
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
680
|
+
ConsumerGroupID: URI | None
|
|
681
|
+
Credentials: MSKAccessCredentials | None
|
|
682
682
|
|
|
683
683
|
|
|
684
684
|
class MQBrokerAccessCredentials(TypedDict, total=False):
|
|
685
|
-
BasicAuth:
|
|
685
|
+
BasicAuth: SecretManagerArn | None
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
class PipeSourceRabbitMQBrokerParameters(TypedDict, total=False):
|
|
689
689
|
Credentials: MQBrokerAccessCredentials
|
|
690
690
|
QueueName: MQBrokerQueueName
|
|
691
|
-
VirtualHost:
|
|
692
|
-
BatchSize:
|
|
693
|
-
MaximumBatchingWindowInSeconds:
|
|
691
|
+
VirtualHost: URI | None
|
|
692
|
+
BatchSize: LimitMax10000 | None
|
|
693
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
694
694
|
|
|
695
695
|
|
|
696
696
|
class PipeSourceActiveMQBrokerParameters(TypedDict, total=False):
|
|
697
697
|
Credentials: MQBrokerAccessCredentials
|
|
698
698
|
QueueName: MQBrokerQueueName
|
|
699
|
-
BatchSize:
|
|
700
|
-
MaximumBatchingWindowInSeconds:
|
|
699
|
+
BatchSize: LimitMax10000 | None
|
|
700
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
701
701
|
|
|
702
702
|
|
|
703
703
|
class PipeSourceSqsQueueParameters(TypedDict, total=False):
|
|
704
|
-
BatchSize:
|
|
705
|
-
MaximumBatchingWindowInSeconds:
|
|
704
|
+
BatchSize: LimitMax10000 | None
|
|
705
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
706
706
|
|
|
707
707
|
|
|
708
708
|
class DeadLetterConfig(TypedDict, total=False):
|
|
709
|
-
Arn:
|
|
709
|
+
Arn: Arn | None
|
|
710
710
|
|
|
711
711
|
|
|
712
712
|
class PipeSourceDynamoDBStreamParameters(TypedDict, total=False):
|
|
713
|
-
BatchSize:
|
|
714
|
-
DeadLetterConfig:
|
|
715
|
-
OnPartialBatchItemFailure:
|
|
716
|
-
MaximumBatchingWindowInSeconds:
|
|
717
|
-
MaximumRecordAgeInSeconds:
|
|
718
|
-
MaximumRetryAttempts:
|
|
719
|
-
ParallelizationFactor:
|
|
713
|
+
BatchSize: LimitMax10000 | None
|
|
714
|
+
DeadLetterConfig: DeadLetterConfig | None
|
|
715
|
+
OnPartialBatchItemFailure: OnPartialBatchItemFailureStreams | None
|
|
716
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
717
|
+
MaximumRecordAgeInSeconds: MaximumRecordAgeInSeconds | None
|
|
718
|
+
MaximumRetryAttempts: MaximumRetryAttemptsESM | None
|
|
719
|
+
ParallelizationFactor: LimitMax10 | None
|
|
720
720
|
StartingPosition: DynamoDBStreamStartPosition
|
|
721
721
|
|
|
722
722
|
|
|
@@ -724,62 +724,62 @@ Timestamp = datetime
|
|
|
724
724
|
|
|
725
725
|
|
|
726
726
|
class PipeSourceKinesisStreamParameters(TypedDict, total=False):
|
|
727
|
-
BatchSize:
|
|
728
|
-
DeadLetterConfig:
|
|
729
|
-
OnPartialBatchItemFailure:
|
|
730
|
-
MaximumBatchingWindowInSeconds:
|
|
731
|
-
MaximumRecordAgeInSeconds:
|
|
732
|
-
MaximumRetryAttempts:
|
|
733
|
-
ParallelizationFactor:
|
|
727
|
+
BatchSize: LimitMax10000 | None
|
|
728
|
+
DeadLetterConfig: DeadLetterConfig | None
|
|
729
|
+
OnPartialBatchItemFailure: OnPartialBatchItemFailureStreams | None
|
|
730
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
731
|
+
MaximumRecordAgeInSeconds: MaximumRecordAgeInSeconds | None
|
|
732
|
+
MaximumRetryAttempts: MaximumRetryAttemptsESM | None
|
|
733
|
+
ParallelizationFactor: LimitMax10 | None
|
|
734
734
|
StartingPosition: KinesisStreamStartPosition
|
|
735
|
-
StartingPositionTimestamp:
|
|
735
|
+
StartingPositionTimestamp: Timestamp | None
|
|
736
736
|
|
|
737
737
|
|
|
738
738
|
class Filter(TypedDict, total=False):
|
|
739
|
-
Pattern:
|
|
739
|
+
Pattern: EventPattern | None
|
|
740
740
|
|
|
741
741
|
|
|
742
|
-
FilterList =
|
|
742
|
+
FilterList = list[Filter]
|
|
743
743
|
|
|
744
744
|
|
|
745
745
|
class FilterCriteria(TypedDict, total=False):
|
|
746
|
-
Filters:
|
|
746
|
+
Filters: FilterList | None
|
|
747
747
|
|
|
748
748
|
|
|
749
749
|
class PipeSourceParameters(TypedDict, total=False):
|
|
750
|
-
FilterCriteria:
|
|
751
|
-
KinesisStreamParameters:
|
|
752
|
-
DynamoDBStreamParameters:
|
|
753
|
-
SqsQueueParameters:
|
|
754
|
-
ActiveMQBrokerParameters:
|
|
755
|
-
RabbitMQBrokerParameters:
|
|
756
|
-
ManagedStreamingKafkaParameters:
|
|
757
|
-
SelfManagedKafkaParameters:
|
|
750
|
+
FilterCriteria: FilterCriteria | None
|
|
751
|
+
KinesisStreamParameters: PipeSourceKinesisStreamParameters | None
|
|
752
|
+
DynamoDBStreamParameters: PipeSourceDynamoDBStreamParameters | None
|
|
753
|
+
SqsQueueParameters: PipeSourceSqsQueueParameters | None
|
|
754
|
+
ActiveMQBrokerParameters: PipeSourceActiveMQBrokerParameters | None
|
|
755
|
+
RabbitMQBrokerParameters: PipeSourceRabbitMQBrokerParameters | None
|
|
756
|
+
ManagedStreamingKafkaParameters: PipeSourceManagedStreamingKafkaParameters | None
|
|
757
|
+
SelfManagedKafkaParameters: PipeSourceSelfManagedKafkaParameters | None
|
|
758
758
|
|
|
759
759
|
|
|
760
760
|
class CreatePipeRequest(ServiceRequest):
|
|
761
761
|
Name: PipeName
|
|
762
|
-
Description:
|
|
763
|
-
DesiredState:
|
|
762
|
+
Description: PipeDescription | None
|
|
763
|
+
DesiredState: RequestedPipeState | None
|
|
764
764
|
Source: ArnOrUrl
|
|
765
|
-
SourceParameters:
|
|
766
|
-
Enrichment:
|
|
767
|
-
EnrichmentParameters:
|
|
765
|
+
SourceParameters: PipeSourceParameters | None
|
|
766
|
+
Enrichment: OptionalArn | None
|
|
767
|
+
EnrichmentParameters: PipeEnrichmentParameters | None
|
|
768
768
|
Target: Arn
|
|
769
|
-
TargetParameters:
|
|
769
|
+
TargetParameters: PipeTargetParameters | None
|
|
770
770
|
RoleArn: RoleArn
|
|
771
|
-
Tags:
|
|
772
|
-
LogConfiguration:
|
|
773
|
-
KmsKeyIdentifier:
|
|
771
|
+
Tags: TagMap | None
|
|
772
|
+
LogConfiguration: PipeLogConfigurationParameters | None
|
|
773
|
+
KmsKeyIdentifier: KmsKeyIdentifier | None
|
|
774
774
|
|
|
775
775
|
|
|
776
776
|
class CreatePipeResponse(TypedDict, total=False):
|
|
777
|
-
Arn:
|
|
778
|
-
Name:
|
|
779
|
-
DesiredState:
|
|
780
|
-
CurrentState:
|
|
781
|
-
CreationTime:
|
|
782
|
-
LastModifiedTime:
|
|
777
|
+
Arn: PipeArn | None
|
|
778
|
+
Name: PipeName | None
|
|
779
|
+
DesiredState: RequestedPipeState | None
|
|
780
|
+
CurrentState: PipeState | None
|
|
781
|
+
CreationTime: Timestamp | None
|
|
782
|
+
LastModifiedTime: Timestamp | None
|
|
783
783
|
|
|
784
784
|
|
|
785
785
|
class DeletePipeRequest(ServiceRequest):
|
|
@@ -787,12 +787,12 @@ class DeletePipeRequest(ServiceRequest):
|
|
|
787
787
|
|
|
788
788
|
|
|
789
789
|
class DeletePipeResponse(TypedDict, total=False):
|
|
790
|
-
Arn:
|
|
791
|
-
Name:
|
|
792
|
-
DesiredState:
|
|
793
|
-
CurrentState:
|
|
794
|
-
CreationTime:
|
|
795
|
-
LastModifiedTime:
|
|
790
|
+
Arn: PipeArn | None
|
|
791
|
+
Name: PipeName | None
|
|
792
|
+
DesiredState: RequestedPipeStateDescribeResponse | None
|
|
793
|
+
CurrentState: PipeState | None
|
|
794
|
+
CreationTime: Timestamp | None
|
|
795
|
+
LastModifiedTime: Timestamp | None
|
|
796
796
|
|
|
797
797
|
|
|
798
798
|
class DescribePipeRequest(ServiceRequest):
|
|
@@ -800,74 +800,74 @@ class DescribePipeRequest(ServiceRequest):
|
|
|
800
800
|
|
|
801
801
|
|
|
802
802
|
class FirehoseLogDestination(TypedDict, total=False):
|
|
803
|
-
DeliveryStreamArn:
|
|
803
|
+
DeliveryStreamArn: FirehoseArn | None
|
|
804
804
|
|
|
805
805
|
|
|
806
806
|
class S3LogDestination(TypedDict, total=False):
|
|
807
|
-
BucketName:
|
|
808
|
-
Prefix:
|
|
809
|
-
BucketOwner:
|
|
810
|
-
OutputFormat:
|
|
807
|
+
BucketName: String | None
|
|
808
|
+
Prefix: String | None
|
|
809
|
+
BucketOwner: String | None
|
|
810
|
+
OutputFormat: S3OutputFormat | None
|
|
811
811
|
|
|
812
812
|
|
|
813
813
|
class PipeLogConfiguration(TypedDict, total=False):
|
|
814
|
-
S3LogDestination:
|
|
815
|
-
FirehoseLogDestination:
|
|
816
|
-
CloudwatchLogsLogDestination:
|
|
817
|
-
Level:
|
|
818
|
-
IncludeExecutionData:
|
|
814
|
+
S3LogDestination: S3LogDestination | None
|
|
815
|
+
FirehoseLogDestination: FirehoseLogDestination | None
|
|
816
|
+
CloudwatchLogsLogDestination: CloudwatchLogsLogDestination | None
|
|
817
|
+
Level: LogLevel | None
|
|
818
|
+
IncludeExecutionData: IncludeExecutionData | None
|
|
819
819
|
|
|
820
820
|
|
|
821
821
|
class DescribePipeResponse(TypedDict, total=False):
|
|
822
|
-
Arn:
|
|
823
|
-
Name:
|
|
824
|
-
Description:
|
|
825
|
-
DesiredState:
|
|
826
|
-
CurrentState:
|
|
827
|
-
StateReason:
|
|
828
|
-
Source:
|
|
829
|
-
SourceParameters:
|
|
830
|
-
Enrichment:
|
|
831
|
-
EnrichmentParameters:
|
|
832
|
-
Target:
|
|
833
|
-
TargetParameters:
|
|
834
|
-
RoleArn:
|
|
835
|
-
Tags:
|
|
836
|
-
CreationTime:
|
|
837
|
-
LastModifiedTime:
|
|
838
|
-
LogConfiguration:
|
|
839
|
-
KmsKeyIdentifier:
|
|
822
|
+
Arn: PipeArn | None
|
|
823
|
+
Name: PipeName | None
|
|
824
|
+
Description: PipeDescription | None
|
|
825
|
+
DesiredState: RequestedPipeStateDescribeResponse | None
|
|
826
|
+
CurrentState: PipeState | None
|
|
827
|
+
StateReason: PipeStateReason | None
|
|
828
|
+
Source: ArnOrUrl | None
|
|
829
|
+
SourceParameters: PipeSourceParameters | None
|
|
830
|
+
Enrichment: OptionalArn | None
|
|
831
|
+
EnrichmentParameters: PipeEnrichmentParameters | None
|
|
832
|
+
Target: Arn | None
|
|
833
|
+
TargetParameters: PipeTargetParameters | None
|
|
834
|
+
RoleArn: RoleArn | None
|
|
835
|
+
Tags: TagMap | None
|
|
836
|
+
CreationTime: Timestamp | None
|
|
837
|
+
LastModifiedTime: Timestamp | None
|
|
838
|
+
LogConfiguration: PipeLogConfiguration | None
|
|
839
|
+
KmsKeyIdentifier: KmsKeyIdentifier | None
|
|
840
840
|
|
|
841
841
|
|
|
842
842
|
class ListPipesRequest(ServiceRequest):
|
|
843
|
-
NamePrefix:
|
|
844
|
-
DesiredState:
|
|
845
|
-
CurrentState:
|
|
846
|
-
SourcePrefix:
|
|
847
|
-
TargetPrefix:
|
|
848
|
-
NextToken:
|
|
849
|
-
Limit:
|
|
843
|
+
NamePrefix: PipeName | None
|
|
844
|
+
DesiredState: RequestedPipeState | None
|
|
845
|
+
CurrentState: PipeState | None
|
|
846
|
+
SourcePrefix: ResourceArn | None
|
|
847
|
+
TargetPrefix: ResourceArn | None
|
|
848
|
+
NextToken: NextToken | None
|
|
849
|
+
Limit: LimitMax100 | None
|
|
850
850
|
|
|
851
851
|
|
|
852
852
|
class Pipe(TypedDict, total=False):
|
|
853
|
-
Name:
|
|
854
|
-
Arn:
|
|
855
|
-
DesiredState:
|
|
856
|
-
CurrentState:
|
|
857
|
-
StateReason:
|
|
858
|
-
CreationTime:
|
|
859
|
-
LastModifiedTime:
|
|
860
|
-
Source:
|
|
861
|
-
Target:
|
|
862
|
-
Enrichment:
|
|
853
|
+
Name: PipeName | None
|
|
854
|
+
Arn: PipeArn | None
|
|
855
|
+
DesiredState: RequestedPipeState | None
|
|
856
|
+
CurrentState: PipeState | None
|
|
857
|
+
StateReason: PipeStateReason | None
|
|
858
|
+
CreationTime: Timestamp | None
|
|
859
|
+
LastModifiedTime: Timestamp | None
|
|
860
|
+
Source: ArnOrUrl | None
|
|
861
|
+
Target: Arn | None
|
|
862
|
+
Enrichment: OptionalArn | None
|
|
863
863
|
|
|
864
864
|
|
|
865
|
-
PipeList =
|
|
865
|
+
PipeList = list[Pipe]
|
|
866
866
|
|
|
867
867
|
|
|
868
868
|
class ListPipesResponse(TypedDict, total=False):
|
|
869
|
-
Pipes:
|
|
870
|
-
NextToken:
|
|
869
|
+
Pipes: PipeList | None
|
|
870
|
+
NextToken: NextToken | None
|
|
871
871
|
|
|
872
872
|
|
|
873
873
|
class ListTagsForResourceRequest(ServiceRequest):
|
|
@@ -875,7 +875,7 @@ class ListTagsForResourceRequest(ServiceRequest):
|
|
|
875
875
|
|
|
876
876
|
|
|
877
877
|
class ListTagsForResourceResponse(TypedDict, total=False):
|
|
878
|
-
tags:
|
|
878
|
+
tags: TagMap | None
|
|
879
879
|
|
|
880
880
|
|
|
881
881
|
class StartPipeRequest(ServiceRequest):
|
|
@@ -883,12 +883,12 @@ class StartPipeRequest(ServiceRequest):
|
|
|
883
883
|
|
|
884
884
|
|
|
885
885
|
class StartPipeResponse(TypedDict, total=False):
|
|
886
|
-
Arn:
|
|
887
|
-
Name:
|
|
888
|
-
DesiredState:
|
|
889
|
-
CurrentState:
|
|
890
|
-
CreationTime:
|
|
891
|
-
LastModifiedTime:
|
|
886
|
+
Arn: PipeArn | None
|
|
887
|
+
Name: PipeName | None
|
|
888
|
+
DesiredState: RequestedPipeState | None
|
|
889
|
+
CurrentState: PipeState | None
|
|
890
|
+
CreationTime: Timestamp | None
|
|
891
|
+
LastModifiedTime: Timestamp | None
|
|
892
892
|
|
|
893
893
|
|
|
894
894
|
class StopPipeRequest(ServiceRequest):
|
|
@@ -896,15 +896,15 @@ class StopPipeRequest(ServiceRequest):
|
|
|
896
896
|
|
|
897
897
|
|
|
898
898
|
class StopPipeResponse(TypedDict, total=False):
|
|
899
|
-
Arn:
|
|
900
|
-
Name:
|
|
901
|
-
DesiredState:
|
|
902
|
-
CurrentState:
|
|
903
|
-
CreationTime:
|
|
904
|
-
LastModifiedTime:
|
|
899
|
+
Arn: PipeArn | None
|
|
900
|
+
Name: PipeName | None
|
|
901
|
+
DesiredState: RequestedPipeState | None
|
|
902
|
+
CurrentState: PipeState | None
|
|
903
|
+
CreationTime: Timestamp | None
|
|
904
|
+
LastModifiedTime: Timestamp | None
|
|
905
905
|
|
|
906
906
|
|
|
907
|
-
TagKeyList =
|
|
907
|
+
TagKeyList = list[TagKey]
|
|
908
908
|
|
|
909
909
|
|
|
910
910
|
class TagResourceRequest(ServiceRequest):
|
|
@@ -926,93 +926,93 @@ class UntagResourceResponse(TypedDict, total=False):
|
|
|
926
926
|
|
|
927
927
|
|
|
928
928
|
class UpdatePipeSourceSelfManagedKafkaParameters(TypedDict, total=False):
|
|
929
|
-
BatchSize:
|
|
930
|
-
MaximumBatchingWindowInSeconds:
|
|
931
|
-
Credentials:
|
|
932
|
-
ServerRootCaCertificate:
|
|
933
|
-
Vpc:
|
|
929
|
+
BatchSize: LimitMax10000 | None
|
|
930
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
931
|
+
Credentials: SelfManagedKafkaAccessConfigurationCredentials | None
|
|
932
|
+
ServerRootCaCertificate: SecretManagerArn | None
|
|
933
|
+
Vpc: SelfManagedKafkaAccessConfigurationVpc | None
|
|
934
934
|
|
|
935
935
|
|
|
936
936
|
class UpdatePipeSourceManagedStreamingKafkaParameters(TypedDict, total=False):
|
|
937
|
-
BatchSize:
|
|
938
|
-
Credentials:
|
|
939
|
-
MaximumBatchingWindowInSeconds:
|
|
937
|
+
BatchSize: LimitMax10000 | None
|
|
938
|
+
Credentials: MSKAccessCredentials | None
|
|
939
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
940
940
|
|
|
941
941
|
|
|
942
942
|
class UpdatePipeSourceRabbitMQBrokerParameters(TypedDict, total=False):
|
|
943
943
|
Credentials: MQBrokerAccessCredentials
|
|
944
|
-
BatchSize:
|
|
945
|
-
MaximumBatchingWindowInSeconds:
|
|
944
|
+
BatchSize: LimitMax10000 | None
|
|
945
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
946
946
|
|
|
947
947
|
|
|
948
948
|
class UpdatePipeSourceActiveMQBrokerParameters(TypedDict, total=False):
|
|
949
949
|
Credentials: MQBrokerAccessCredentials
|
|
950
|
-
BatchSize:
|
|
951
|
-
MaximumBatchingWindowInSeconds:
|
|
950
|
+
BatchSize: LimitMax10000 | None
|
|
951
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
952
952
|
|
|
953
953
|
|
|
954
954
|
class UpdatePipeSourceSqsQueueParameters(TypedDict, total=False):
|
|
955
|
-
BatchSize:
|
|
956
|
-
MaximumBatchingWindowInSeconds:
|
|
955
|
+
BatchSize: LimitMax10000 | None
|
|
956
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
957
957
|
|
|
958
958
|
|
|
959
959
|
class UpdatePipeSourceDynamoDBStreamParameters(TypedDict, total=False):
|
|
960
|
-
BatchSize:
|
|
961
|
-
DeadLetterConfig:
|
|
962
|
-
OnPartialBatchItemFailure:
|
|
963
|
-
MaximumBatchingWindowInSeconds:
|
|
964
|
-
MaximumRecordAgeInSeconds:
|
|
965
|
-
MaximumRetryAttempts:
|
|
966
|
-
ParallelizationFactor:
|
|
960
|
+
BatchSize: LimitMax10000 | None
|
|
961
|
+
DeadLetterConfig: DeadLetterConfig | None
|
|
962
|
+
OnPartialBatchItemFailure: OnPartialBatchItemFailureStreams | None
|
|
963
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
964
|
+
MaximumRecordAgeInSeconds: MaximumRecordAgeInSeconds | None
|
|
965
|
+
MaximumRetryAttempts: MaximumRetryAttemptsESM | None
|
|
966
|
+
ParallelizationFactor: LimitMax10 | None
|
|
967
967
|
|
|
968
968
|
|
|
969
969
|
class UpdatePipeSourceKinesisStreamParameters(TypedDict, total=False):
|
|
970
|
-
BatchSize:
|
|
971
|
-
DeadLetterConfig:
|
|
972
|
-
OnPartialBatchItemFailure:
|
|
973
|
-
MaximumBatchingWindowInSeconds:
|
|
974
|
-
MaximumRecordAgeInSeconds:
|
|
975
|
-
MaximumRetryAttempts:
|
|
976
|
-
ParallelizationFactor:
|
|
970
|
+
BatchSize: LimitMax10000 | None
|
|
971
|
+
DeadLetterConfig: DeadLetterConfig | None
|
|
972
|
+
OnPartialBatchItemFailure: OnPartialBatchItemFailureStreams | None
|
|
973
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
974
|
+
MaximumRecordAgeInSeconds: MaximumRecordAgeInSeconds | None
|
|
975
|
+
MaximumRetryAttempts: MaximumRetryAttemptsESM | None
|
|
976
|
+
ParallelizationFactor: LimitMax10 | None
|
|
977
977
|
|
|
978
978
|
|
|
979
979
|
class UpdatePipeSourceParameters(TypedDict, total=False):
|
|
980
|
-
FilterCriteria:
|
|
981
|
-
KinesisStreamParameters:
|
|
982
|
-
DynamoDBStreamParameters:
|
|
983
|
-
SqsQueueParameters:
|
|
984
|
-
ActiveMQBrokerParameters:
|
|
985
|
-
RabbitMQBrokerParameters:
|
|
986
|
-
ManagedStreamingKafkaParameters:
|
|
987
|
-
SelfManagedKafkaParameters:
|
|
980
|
+
FilterCriteria: FilterCriteria | None
|
|
981
|
+
KinesisStreamParameters: UpdatePipeSourceKinesisStreamParameters | None
|
|
982
|
+
DynamoDBStreamParameters: UpdatePipeSourceDynamoDBStreamParameters | None
|
|
983
|
+
SqsQueueParameters: UpdatePipeSourceSqsQueueParameters | None
|
|
984
|
+
ActiveMQBrokerParameters: UpdatePipeSourceActiveMQBrokerParameters | None
|
|
985
|
+
RabbitMQBrokerParameters: UpdatePipeSourceRabbitMQBrokerParameters | None
|
|
986
|
+
ManagedStreamingKafkaParameters: UpdatePipeSourceManagedStreamingKafkaParameters | None
|
|
987
|
+
SelfManagedKafkaParameters: UpdatePipeSourceSelfManagedKafkaParameters | None
|
|
988
988
|
|
|
989
989
|
|
|
990
990
|
class UpdatePipeRequest(ServiceRequest):
|
|
991
991
|
Name: PipeName
|
|
992
|
-
Description:
|
|
993
|
-
DesiredState:
|
|
994
|
-
SourceParameters:
|
|
995
|
-
Enrichment:
|
|
996
|
-
EnrichmentParameters:
|
|
997
|
-
Target:
|
|
998
|
-
TargetParameters:
|
|
992
|
+
Description: PipeDescription | None
|
|
993
|
+
DesiredState: RequestedPipeState | None
|
|
994
|
+
SourceParameters: UpdatePipeSourceParameters | None
|
|
995
|
+
Enrichment: OptionalArn | None
|
|
996
|
+
EnrichmentParameters: PipeEnrichmentParameters | None
|
|
997
|
+
Target: Arn | None
|
|
998
|
+
TargetParameters: PipeTargetParameters | None
|
|
999
999
|
RoleArn: RoleArn
|
|
1000
|
-
LogConfiguration:
|
|
1001
|
-
KmsKeyIdentifier:
|
|
1000
|
+
LogConfiguration: PipeLogConfigurationParameters | None
|
|
1001
|
+
KmsKeyIdentifier: KmsKeyIdentifier | None
|
|
1002
1002
|
|
|
1003
1003
|
|
|
1004
1004
|
class UpdatePipeResponse(TypedDict, total=False):
|
|
1005
|
-
Arn:
|
|
1006
|
-
Name:
|
|
1007
|
-
DesiredState:
|
|
1008
|
-
CurrentState:
|
|
1009
|
-
CreationTime:
|
|
1010
|
-
LastModifiedTime:
|
|
1005
|
+
Arn: PipeArn | None
|
|
1006
|
+
Name: PipeName | None
|
|
1007
|
+
DesiredState: RequestedPipeState | None
|
|
1008
|
+
CurrentState: PipeState | None
|
|
1009
|
+
CreationTime: Timestamp | None
|
|
1010
|
+
LastModifiedTime: Timestamp | None
|
|
1011
1011
|
|
|
1012
1012
|
|
|
1013
1013
|
class PipesApi:
|
|
1014
|
-
service = "pipes"
|
|
1015
|
-
version = "2015-10-07"
|
|
1014
|
+
service: str = "pipes"
|
|
1015
|
+
version: str = "2015-10-07"
|
|
1016
1016
|
|
|
1017
1017
|
@handler("CreatePipe")
|
|
1018
1018
|
def create_pipe(
|