localstack-core 4.7.1.dev139__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.

Potentially problematic release.


This version of localstack-core might be problematic. Click here for more details.

Files changed (208) hide show
  1. localstack/aws/api/acm/__init__.py +122 -122
  2. localstack/aws/api/apigateway/__init__.py +560 -559
  3. localstack/aws/api/cloudcontrol/__init__.py +63 -63
  4. localstack/aws/api/cloudformation/__init__.py +1041 -969
  5. localstack/aws/api/cloudwatch/__init__.py +408 -368
  6. localstack/aws/api/config/__init__.py +788 -786
  7. localstack/aws/api/core.py +4 -0
  8. localstack/aws/api/dynamodb/__init__.py +753 -759
  9. localstack/aws/api/dynamodbstreams/__init__.py +74 -74
  10. localstack/aws/api/ec2/__init__.py +9713 -8573
  11. localstack/aws/api/es/__init__.py +453 -453
  12. localstack/aws/api/events/__init__.py +552 -552
  13. localstack/aws/api/firehose/__init__.py +541 -543
  14. localstack/aws/api/iam/__init__.py +646 -572
  15. localstack/aws/api/kinesis/__init__.py +251 -144
  16. localstack/aws/api/kms/__init__.py +343 -333
  17. localstack/aws/api/lambda_/__init__.py +585 -571
  18. localstack/aws/api/logs/__init__.py +682 -666
  19. localstack/aws/api/opensearch/__init__.py +814 -785
  20. localstack/aws/api/pipes/__init__.py +336 -336
  21. localstack/aws/api/redshift/__init__.py +1192 -1164
  22. localstack/aws/api/resource_groups/__init__.py +175 -175
  23. localstack/aws/api/resourcegroupstaggingapi/__init__.py +67 -67
  24. localstack/aws/api/route53/__init__.py +256 -254
  25. localstack/aws/api/route53resolver/__init__.py +396 -396
  26. localstack/aws/api/s3/__init__.py +1358 -1345
  27. localstack/aws/api/s3control/__init__.py +616 -584
  28. localstack/aws/api/scheduler/__init__.py +118 -118
  29. localstack/aws/api/secretsmanager/__init__.py +193 -193
  30. localstack/aws/api/ses/__init__.py +227 -227
  31. localstack/aws/api/sns/__init__.py +115 -115
  32. localstack/aws/api/sqs/__init__.py +100 -100
  33. localstack/aws/api/ssm/__init__.py +1978 -1970
  34. localstack/aws/api/stepfunctions/__init__.py +323 -323
  35. localstack/aws/api/sts/__init__.py +90 -66
  36. localstack/aws/api/support/__init__.py +112 -112
  37. localstack/aws/api/swf/__init__.py +378 -386
  38. localstack/aws/api/transcribe/__init__.py +425 -425
  39. localstack/aws/client.py +7 -2
  40. localstack/aws/forwarder.py +52 -5
  41. localstack/aws/handlers/analytics.py +1 -1
  42. localstack/aws/handlers/logging.py +12 -2
  43. localstack/aws/handlers/metric_handler.py +41 -1
  44. localstack/aws/handlers/service.py +43 -10
  45. localstack/aws/protocol/parser.py +440 -21
  46. localstack/aws/protocol/serializer.py +684 -64
  47. localstack/aws/protocol/service_router.py +120 -20
  48. localstack/aws/scaffold.py +15 -17
  49. localstack/aws/skeleton.py +4 -2
  50. localstack/aws/spec-patches.json +58 -0
  51. localstack/aws/spec.py +33 -13
  52. localstack/cli/exceptions.py +1 -1
  53. localstack/cli/localstack.py +10 -5
  54. localstack/cli/lpm.py +3 -4
  55. localstack/cli/profiles.py +1 -2
  56. localstack/config.py +18 -12
  57. localstack/constants.py +4 -29
  58. localstack/dev/kubernetes/__main__.py +39 -4
  59. localstack/dev/run/paths.py +1 -1
  60. localstack/dns/plugins.py +5 -1
  61. localstack/dns/server.py +12 -3
  62. localstack/packages/api.py +9 -8
  63. localstack/packages/core.py +2 -2
  64. localstack/packages/plugins.py +0 -8
  65. localstack/runtime/init.py +1 -1
  66. localstack/services/apigateway/helpers.py +5 -9
  67. localstack/services/apigateway/legacy/provider.py +85 -12
  68. localstack/services/apigateway/next_gen/execute_api/integrations/aws.py +3 -0
  69. localstack/services/apigateway/next_gen/execute_api/integrations/http.py +3 -3
  70. localstack/services/apigateway/next_gen/execute_api/test_invoke.py +50 -6
  71. localstack/services/apigateway/next_gen/provider.py +5 -0
  72. localstack/services/apigateway/patches.py +0 -9
  73. localstack/services/cloudformation/engine/entities.py +12 -1
  74. localstack/services/cloudformation/engine/v2/change_set_model.py +0 -3
  75. localstack/services/cloudformation/engine/v2/change_set_model_describer.py +14 -0
  76. localstack/services/cloudformation/engine/v2/change_set_model_executor.py +13 -15
  77. localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +118 -24
  78. localstack/services/cloudformation/engine/v2/change_set_model_transform.py +4 -1
  79. localstack/services/cloudformation/engine/v2/change_set_model_validator.py +5 -14
  80. localstack/services/cloudformation/engine/v2/change_set_model_visitor.py +1 -0
  81. localstack/services/cloudformation/engine/v2/resolving.py +6 -4
  82. localstack/services/cloudformation/engine/yaml_parser.py +9 -2
  83. localstack/services/cloudformation/provider.py +2 -2
  84. localstack/services/cloudformation/resource_provider.py +5 -1
  85. localstack/services/cloudformation/resources.py +24149 -0
  86. localstack/services/cloudformation/v2/entities.py +6 -3
  87. localstack/services/cloudformation/v2/provider.py +178 -33
  88. localstack/services/cloudformation/v2/types.py +8 -4
  89. localstack/services/cloudwatch/provider_v2.py +25 -28
  90. localstack/services/dynamodb/packages.py +2 -1
  91. localstack/services/dynamodb/provider.py +42 -0
  92. localstack/services/dynamodb/v2/provider.py +42 -0
  93. localstack/services/ecr/resource_providers/aws_ecr_repository.py +5 -2
  94. localstack/services/es/provider.py +2 -2
  95. localstack/services/events/event_rule_engine.py +31 -13
  96. localstack/services/events/models.py +4 -5
  97. localstack/services/events/target.py +17 -9
  98. localstack/services/iam/provider.py +11 -116
  99. localstack/services/iam/resources/policy_simulator.py +133 -0
  100. localstack/services/kinesis/models.py +15 -2
  101. localstack/services/kinesis/packages.py +1 -1
  102. localstack/services/kinesis/provider.py +77 -0
  103. localstack/services/kms/models.py +34 -4
  104. localstack/services/kms/provider.py +107 -21
  105. localstack/services/lambda_/api_utils.py +3 -1
  106. localstack/services/lambda_/invocation/internal_sqs_queue.py +5 -9
  107. localstack/services/lambda_/packages.py +1 -1
  108. localstack/services/lambda_/provider.py +1 -1
  109. localstack/services/lambda_/runtimes.py +8 -3
  110. localstack/services/logs/provider.py +36 -19
  111. localstack/services/moto.py +2 -1
  112. localstack/services/opensearch/cluster.py +15 -7
  113. localstack/services/opensearch/packages.py +26 -7
  114. localstack/services/opensearch/provider.py +6 -1
  115. localstack/services/opensearch/versions.py +56 -7
  116. localstack/services/s3/constants.py +5 -2
  117. localstack/services/s3/cors.py +4 -4
  118. localstack/services/s3/notifications.py +1 -1
  119. localstack/services/s3/presigned_url.py +27 -43
  120. localstack/services/s3/provider.py +68 -12
  121. localstack/services/s3/utils.py +42 -11
  122. localstack/services/ses/provider.py +16 -7
  123. localstack/services/sns/constants.py +7 -1
  124. localstack/services/sns/v2/models.py +190 -0
  125. localstack/services/sns/v2/provider.py +992 -2
  126. localstack/services/sns/v2/utils.py +138 -0
  127. localstack/services/sqs/developer_api.py +205 -0
  128. localstack/services/sqs/models.py +79 -13
  129. localstack/services/sqs/provider.py +8 -309
  130. localstack/services/sqs/query_api.py +1 -1
  131. localstack/services/sqs/utils.py +121 -2
  132. localstack/services/stepfunctions/asl/jsonata/jsonata.py +1 -1
  133. localstack/testing/aws/cloudformation_utils.py +1 -1
  134. localstack/testing/pytest/cloudformation/fixtures.py +3 -3
  135. localstack/testing/pytest/container.py +4 -5
  136. localstack/testing/pytest/fixtures.py +20 -19
  137. localstack/testing/pytest/in_memory_localstack.py +0 -4
  138. localstack/testing/pytest/marking.py +13 -4
  139. localstack/testing/pytest/stepfunctions/utils.py +4 -3
  140. localstack/testing/pytest/util.py +1 -1
  141. localstack/testing/pytest/validation_tracking.py +1 -2
  142. localstack/testing/snapshots/transformer_utility.py +7 -0
  143. localstack/testing/testselection/matching.py +0 -1
  144. localstack/utils/analytics/events.py +2 -2
  145. localstack/utils/analytics/metadata.py +1 -2
  146. localstack/utils/analytics/metrics/counter.py +6 -8
  147. localstack/utils/analytics/publisher.py +1 -2
  148. localstack/utils/analytics/service_request_aggregator.py +2 -2
  149. localstack/utils/archives.py +11 -11
  150. localstack/utils/aws/arns.py +17 -9
  151. localstack/utils/aws/aws_responses.py +7 -7
  152. localstack/utils/aws/aws_stack.py +2 -3
  153. localstack/utils/aws/client_types.py +0 -8
  154. localstack/utils/aws/message_forwarding.py +1 -2
  155. localstack/utils/aws/request_context.py +4 -5
  156. localstack/utils/batch_policy.py +3 -3
  157. localstack/utils/bootstrap.py +7 -7
  158. localstack/utils/catalog/catalog.py +139 -0
  159. localstack/utils/catalog/catalog_loader.py +119 -0
  160. localstack/utils/catalog/common.py +58 -0
  161. localstack/utils/catalog/plugins.py +28 -0
  162. localstack/utils/cloudwatch/cloudwatch_util.py +5 -5
  163. localstack/utils/collections.py +7 -8
  164. localstack/utils/config_listener.py +1 -1
  165. localstack/utils/container_networking.py +2 -3
  166. localstack/utils/container_utils/container_client.py +115 -131
  167. localstack/utils/container_utils/docker_cmd_client.py +42 -42
  168. localstack/utils/container_utils/docker_sdk_client.py +63 -62
  169. localstack/utils/crypto.py +109 -0
  170. localstack/utils/diagnose.py +2 -3
  171. localstack/utils/docker_utils.py +3 -4
  172. localstack/utils/files.py +31 -7
  173. localstack/utils/functions.py +3 -2
  174. localstack/utils/http.py +4 -5
  175. localstack/utils/json.py +19 -5
  176. localstack/utils/kinesis/kinesis_connector.py +2 -1
  177. localstack/utils/net.py +6 -6
  178. localstack/utils/no_exit_argument_parser.py +2 -2
  179. localstack/utils/numbers.py +9 -2
  180. localstack/utils/objects.py +6 -5
  181. localstack/utils/patch.py +2 -1
  182. localstack/utils/run.py +10 -9
  183. localstack/utils/scheduler.py +11 -11
  184. localstack/utils/server/tcp_proxy.py +2 -2
  185. localstack/utils/serving.py +2 -3
  186. localstack/utils/strings.py +10 -11
  187. localstack/utils/sync.py +126 -1
  188. localstack/utils/tagging.py +1 -4
  189. localstack/utils/testutil.py +5 -4
  190. localstack/utils/threads.py +2 -2
  191. localstack/utils/time.py +11 -3
  192. localstack/utils/urls.py +1 -3
  193. localstack/version.py +2 -2
  194. {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/METADATA +19 -13
  195. {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/RECORD +203 -199
  196. {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/entry_points.txt +4 -2
  197. localstack_core-4.10.1.dev42.dist-info/plux.json +1 -0
  198. localstack/packages/terraform.py +0 -46
  199. localstack/services/cloudformation/deploy.html +0 -144
  200. localstack/services/cloudformation/deploy_ui.py +0 -47
  201. localstack/services/cloudformation/plugins.py +0 -12
  202. localstack_core-4.7.1.dev139.dist-info/plux.json +0 -1
  203. {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack +0 -0
  204. {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack-supervisor +0 -0
  205. {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack.bat +0 -0
  206. {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/WHEEL +0 -0
  207. {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/licenses/LICENSE.txt +0 -0
  208. {localstack_core-4.7.1.dev139.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 Dict, List, Optional, TypedDict
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: Optional[Integer]
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: Optional[String]
270
- quotaCode: Optional[String]
271
- retryAfterSeconds: Optional[Integer]
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 = List[ValidationExceptionField]
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: Optional[ValidationExceptionFieldList]
286
+ fieldList: ValidationExceptionFieldList | None
287
287
 
288
288
 
289
- SecurityGroups = List[SecurityGroup]
290
- Subnets = List[Subnet]
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: Optional[SecurityGroups]
296
- AssignPublicIp: Optional[AssignPublicIp]
295
+ SecurityGroups: SecurityGroups | None
296
+ AssignPublicIp: AssignPublicIp | None
297
297
 
298
298
 
299
299
  class BatchArrayProperties(TypedDict, total=False):
300
- Size: Optional[BatchArraySize]
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 = List[BatchResourceRequirement]
308
+ BatchResourceRequirementsList = list[BatchResourceRequirement]
309
309
 
310
310
 
311
311
  class BatchEnvironmentVariable(TypedDict, total=False):
312
- Name: Optional[String]
313
- Value: Optional[String]
312
+ Name: String | None
313
+ Value: String | None
314
314
 
315
315
 
316
- BatchEnvironmentVariableList = List[BatchEnvironmentVariable]
317
- StringList = List[String]
316
+ BatchEnvironmentVariableList = list[BatchEnvironmentVariable]
317
+ StringList = list[String]
318
318
 
319
319
 
320
320
  class BatchContainerOverrides(TypedDict, total=False):
321
- Command: Optional[StringList]
322
- Environment: Optional[BatchEnvironmentVariableList]
323
- InstanceType: Optional[String]
324
- ResourceRequirements: Optional[BatchResourceRequirementsList]
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: Optional[String]
329
- Type: Optional[BatchJobDependencyType]
328
+ JobId: String | None
329
+ Type: BatchJobDependencyType | None
330
330
 
331
331
 
332
- BatchDependsOn = List[BatchJobDependency]
333
- BatchParametersMap = Dict[String, String]
332
+ BatchDependsOn = list[BatchJobDependency]
333
+ BatchParametersMap = dict[String, String]
334
334
 
335
335
 
336
336
  class BatchRetryStrategy(TypedDict, total=False):
337
- Attempts: Optional[BatchRetryAttempts]
337
+ Attempts: BatchRetryAttempts | None
338
338
 
339
339
 
340
340
  class CapacityProviderStrategyItem(TypedDict, total=False):
341
341
  capacityProvider: CapacityProvider
342
- weight: Optional[CapacityProviderStrategyItemWeight]
343
- base: Optional[CapacityProviderStrategyItemBase]
342
+ weight: CapacityProviderStrategyItemWeight | None
343
+ base: CapacityProviderStrategyItemBase | None
344
344
 
345
345
 
346
- CapacityProviderStrategy = List[CapacityProviderStrategyItem]
346
+ CapacityProviderStrategy = list[CapacityProviderStrategyItem]
347
347
 
348
348
 
349
349
  class CloudwatchLogsLogDestination(TypedDict, total=False):
350
- LogGroupArn: Optional[CloudwatchLogGroupArn]
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 = List[IncludeExecutionDataOption]
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: Optional[S3OutputFormat]
368
- Prefix: Optional[S3LogDestinationParametersPrefixString]
367
+ OutputFormat: S3OutputFormat | None
368
+ Prefix: S3LogDestinationParametersPrefixString | None
369
369
 
370
370
 
371
371
  class PipeLogConfigurationParameters(TypedDict, total=False):
372
- S3LogDestination: Optional[S3LogDestinationParameters]
373
- FirehoseLogDestination: Optional[FirehoseLogDestinationParameters]
374
- CloudwatchLogsLogDestination: Optional[CloudwatchLogsLogDestinationParameters]
372
+ S3LogDestination: S3LogDestinationParameters | None
373
+ FirehoseLogDestination: FirehoseLogDestinationParameters | None
374
+ CloudwatchLogsLogDestination: CloudwatchLogsLogDestinationParameters | None
375
375
  Level: LogLevel
376
- IncludeExecutionData: Optional[IncludeExecutionData]
376
+ IncludeExecutionData: IncludeExecutionData | None
377
377
 
378
378
 
379
- TagMap = Dict[TagKey, TagValue]
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 = List[MultiMeasureAttributeMapping]
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 = List[MultiMeasureMapping]
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 = List[SingleMeasureMapping]
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 = List[DimensionMapping]
414
+ DimensionMappings = list[DimensionMapping]
415
415
 
416
416
 
417
417
  class PipeTargetTimestreamParameters(TypedDict, total=False):
418
418
  TimeValue: TimeValue
419
- EpochTimeUnit: Optional[EpochTimeUnit]
420
- TimeFieldType: Optional[TimeFieldType]
421
- TimestampFormat: Optional[TimestampFormat]
419
+ EpochTimeUnit: EpochTimeUnit | None
420
+ TimeFieldType: TimeFieldType | None
421
+ TimestampFormat: TimestampFormat | None
422
422
  VersionValue: VersionValue
423
423
  DimensionMappings: DimensionMappings
424
- SingleMeasureMappings: Optional[SingleMeasureMappings]
425
- MultiMeasureMappings: Optional[MultiMeasureMappings]
424
+ SingleMeasureMappings: SingleMeasureMappings | None
425
+ MultiMeasureMappings: MultiMeasureMappings | None
426
426
 
427
427
 
428
428
  class PipeTargetCloudWatchLogsParameters(TypedDict, total=False):
429
- LogStreamName: Optional[LogStreamName]
430
- Timestamp: Optional[JsonPath]
429
+ LogStreamName: LogStreamName | None
430
+ Timestamp: JsonPath | None
431
431
 
432
432
 
433
- EventBridgeEventResourceList = List[ArnOrJsonPath]
433
+ EventBridgeEventResourceList = list[ArnOrJsonPath]
434
434
 
435
435
 
436
436
  class PipeTargetEventBridgeEventBusParameters(TypedDict, total=False):
437
- EndpointId: Optional[EventBridgeEndpointId]
438
- DetailType: Optional[EventBridgeDetailType]
439
- Source: Optional[EventBridgeEventSource]
440
- Resources: Optional[EventBridgeEventResourceList]
441
- Time: Optional[JsonPath]
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 = List[SageMakerPipelineParameter]
449
+ SageMakerPipelineParameterList = list[SageMakerPipelineParameter]
450
450
 
451
451
 
452
452
  class PipeTargetSageMakerPipelineParameters(TypedDict, total=False):
453
- PipelineParameterList: Optional[SageMakerPipelineParameterList]
453
+ PipelineParameterList: SageMakerPipelineParameterList | None
454
454
 
455
455
 
456
- Sqls = List[Sql]
456
+ Sqls = list[Sql]
457
457
 
458
458
 
459
459
  class PipeTargetRedshiftDataParameters(TypedDict, total=False):
460
- SecretManagerArn: Optional[SecretManagerArnOrJsonPath]
460
+ SecretManagerArn: SecretManagerArnOrJsonPath | None
461
461
  Database: Database
462
- DbUser: Optional[DbUser]
463
- StatementName: Optional[StatementName]
464
- WithEvent: Optional[Boolean]
462
+ DbUser: DbUser | None
463
+ StatementName: StatementName | None
464
+ WithEvent: Boolean | None
465
465
  Sqls: Sqls
466
466
 
467
467
 
468
- QueryStringParametersMap = Dict[QueryStringKey, QueryStringValue]
469
- HeaderParametersMap = Dict[HeaderKey, HeaderValue]
470
- PathParameterList = List[PathParameter]
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: Optional[PathParameterList]
475
- HeaderParameters: Optional[HeaderParametersMap]
476
- QueryStringParameters: Optional[QueryStringParametersMap]
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: Optional[MessageGroupId]
481
- MessageDeduplicationId: Optional[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: Optional[BatchArrayProperties]
488
- RetryStrategy: Optional[BatchRetryStrategy]
489
- ContainerOverrides: Optional[BatchContainerOverrides]
490
- DependsOn: Optional[BatchDependsOn]
491
- Parameters: Optional[BatchParametersMap]
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 = List[Tag]
499
+ TagList = list[Tag]
500
500
 
501
501
 
502
502
  class EcsInferenceAcceleratorOverride(TypedDict, total=False):
503
- deviceName: Optional[String]
504
- deviceType: Optional[String]
503
+ deviceName: String | None
504
+ deviceType: String | None
505
505
 
506
506
 
507
- EcsInferenceAcceleratorOverrideList = List[EcsInferenceAcceleratorOverride]
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 = List[EcsResourceRequirement]
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 = List[EcsEnvironmentFile]
527
+ EcsEnvironmentFileList = list[EcsEnvironmentFile]
528
528
 
529
529
 
530
530
  class EcsEnvironmentVariable(TypedDict, total=False):
531
- name: Optional[String]
532
- value: Optional[String]
531
+ name: String | None
532
+ value: String | None
533
533
 
534
534
 
535
- EcsEnvironmentVariableList = List[EcsEnvironmentVariable]
535
+ EcsEnvironmentVariableList = list[EcsEnvironmentVariable]
536
536
 
537
537
 
538
538
  class EcsContainerOverride(TypedDict, total=False):
539
- Command: Optional[StringList]
540
- Cpu: Optional[Integer]
541
- Environment: Optional[EcsEnvironmentVariableList]
542
- EnvironmentFiles: Optional[EcsEnvironmentFileList]
543
- Memory: Optional[Integer]
544
- MemoryReservation: Optional[Integer]
545
- Name: Optional[String]
546
- ResourceRequirements: Optional[EcsResourceRequirementsList]
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 = List[EcsContainerOverride]
549
+ EcsContainerOverrideList = list[EcsContainerOverride]
550
550
 
551
551
 
552
552
  class EcsTaskOverride(TypedDict, total=False):
553
- ContainerOverrides: Optional[EcsContainerOverrideList]
554
- Cpu: Optional[String]
555
- EphemeralStorage: Optional[EcsEphemeralStorage]
556
- ExecutionRoleArn: Optional[ArnOrJsonPath]
557
- InferenceAcceleratorOverrides: Optional[EcsInferenceAcceleratorOverrideList]
558
- Memory: Optional[String]
559
- TaskRoleArn: Optional[ArnOrJsonPath]
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: Optional[PlacementStrategyType]
564
- field: Optional[PlacementStrategyField]
563
+ type: PlacementStrategyType | None
564
+ field: PlacementStrategyField | None
565
565
 
566
566
 
567
- PlacementStrategies = List[PlacementStrategy]
567
+ PlacementStrategies = list[PlacementStrategy]
568
568
 
569
569
 
570
570
  class PlacementConstraint(TypedDict, total=False):
571
- type: Optional[PlacementConstraintType]
572
- expression: Optional[PlacementConstraintExpression]
571
+ type: PlacementConstraintType | None
572
+ expression: PlacementConstraintExpression | None
573
573
 
574
574
 
575
- PlacementConstraints = List[PlacementConstraint]
575
+ PlacementConstraints = list[PlacementConstraint]
576
576
 
577
577
 
578
578
  class NetworkConfiguration(TypedDict, total=False):
579
- awsvpcConfiguration: Optional[AwsVpcConfiguration]
579
+ awsvpcConfiguration: AwsVpcConfiguration | None
580
580
 
581
581
 
582
582
  class PipeTargetEcsTaskParameters(TypedDict, total=False):
583
583
  TaskDefinitionArn: ArnOrJsonPath
584
- TaskCount: Optional[LimitMin1]
585
- LaunchType: Optional[LaunchType]
586
- NetworkConfiguration: Optional[NetworkConfiguration]
587
- PlatformVersion: Optional[String]
588
- Group: Optional[String]
589
- CapacityProviderStrategy: Optional[CapacityProviderStrategy]
590
- EnableECSManagedTags: Optional[Boolean]
591
- EnableExecuteCommand: Optional[Boolean]
592
- PlacementConstraints: Optional[PlacementConstraints]
593
- PlacementStrategy: Optional[PlacementStrategies]
594
- PropagateTags: Optional[PropagateTags]
595
- ReferenceId: Optional[ReferenceId]
596
- Overrides: Optional[EcsTaskOverride]
597
- Tags: Optional[TagList]
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: Optional[PipeTargetInvocationType]
605
+ InvocationType: PipeTargetInvocationType | None
606
606
 
607
607
 
608
608
  class PipeTargetLambdaFunctionParameters(TypedDict, total=False):
609
- InvocationType: Optional[PipeTargetInvocationType]
609
+ InvocationType: PipeTargetInvocationType | None
610
610
 
611
611
 
612
612
  class PipeTargetParameters(TypedDict, total=False):
613
- InputTemplate: Optional[InputTemplate]
614
- LambdaFunctionParameters: Optional[PipeTargetLambdaFunctionParameters]
615
- StepFunctionStateMachineParameters: Optional[PipeTargetStateMachineParameters]
616
- KinesisStreamParameters: Optional[PipeTargetKinesisStreamParameters]
617
- EcsTaskParameters: Optional[PipeTargetEcsTaskParameters]
618
- BatchJobParameters: Optional[PipeTargetBatchJobParameters]
619
- SqsQueueParameters: Optional[PipeTargetSqsQueueParameters]
620
- HttpParameters: Optional[PipeTargetHttpParameters]
621
- RedshiftDataParameters: Optional[PipeTargetRedshiftDataParameters]
622
- SageMakerPipelineParameters: Optional[PipeTargetSageMakerPipelineParameters]
623
- EventBridgeEventBusParameters: Optional[PipeTargetEventBridgeEventBusParameters]
624
- CloudWatchLogsParameters: Optional[PipeTargetCloudWatchLogsParameters]
625
- TimestreamParameters: Optional[PipeTargetTimestreamParameters]
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: Optional[PathParameterList]
630
- HeaderParameters: Optional[HeaderParametersMap]
631
- QueryStringParameters: Optional[QueryStringParametersMap]
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: Optional[InputTemplate]
636
- HttpParameters: Optional[PipeEnrichmentHttpParameters]
635
+ InputTemplate: InputTemplate | None
636
+ HttpParameters: PipeEnrichmentHttpParameters | None
637
637
 
638
638
 
639
- SecurityGroupIds = List[SecurityGroupId]
640
- SubnetIds = List[SubnetId]
639
+ SecurityGroupIds = list[SecurityGroupId]
640
+ SubnetIds = list[SubnetId]
641
641
 
642
642
 
643
643
  class SelfManagedKafkaAccessConfigurationVpc(TypedDict, total=False):
644
- Subnets: Optional[SubnetIds]
645
- SecurityGroup: Optional[SecurityGroupIds]
644
+ Subnets: SubnetIds | None
645
+ SecurityGroup: SecurityGroupIds | None
646
646
 
647
647
 
648
648
  class SelfManagedKafkaAccessConfigurationCredentials(TypedDict, total=False):
649
- BasicAuth: Optional[SecretManagerArn]
650
- SaslScram512Auth: Optional[SecretManagerArn]
651
- SaslScram256Auth: Optional[SecretManagerArn]
652
- ClientCertificateTlsAuth: Optional[SecretManagerArn]
649
+ BasicAuth: SecretManagerArn | None
650
+ SaslScram512Auth: SecretManagerArn | None
651
+ SaslScram256Auth: SecretManagerArn | None
652
+ ClientCertificateTlsAuth: SecretManagerArn | None
653
653
 
654
654
 
655
- KafkaBootstrapServers = List[EndpointString]
655
+ KafkaBootstrapServers = list[EndpointString]
656
656
 
657
657
 
658
658
  class PipeSourceSelfManagedKafkaParameters(TypedDict, total=False):
659
659
  TopicName: KafkaTopicName
660
- StartingPosition: Optional[SelfManagedKafkaStartPosition]
661
- AdditionalBootstrapServers: Optional[KafkaBootstrapServers]
662
- BatchSize: Optional[LimitMax10000]
663
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
664
- ConsumerGroupID: Optional[URI]
665
- Credentials: Optional[SelfManagedKafkaAccessConfigurationCredentials]
666
- ServerRootCaCertificate: Optional[SecretManagerArn]
667
- Vpc: Optional[SelfManagedKafkaAccessConfigurationVpc]
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: Optional[SecretManagerArn]
672
- ClientCertificateTlsAuth: Optional[SecretManagerArn]
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: Optional[MSKStartPosition]
678
- BatchSize: Optional[LimitMax10000]
679
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
680
- ConsumerGroupID: Optional[URI]
681
- Credentials: Optional[MSKAccessCredentials]
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: Optional[SecretManagerArn]
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: Optional[URI]
692
- BatchSize: Optional[LimitMax10000]
693
- MaximumBatchingWindowInSeconds: Optional[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: Optional[LimitMax10000]
700
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
699
+ BatchSize: LimitMax10000 | None
700
+ MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
701
701
 
702
702
 
703
703
  class PipeSourceSqsQueueParameters(TypedDict, total=False):
704
- BatchSize: Optional[LimitMax10000]
705
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
704
+ BatchSize: LimitMax10000 | None
705
+ MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
706
706
 
707
707
 
708
708
  class DeadLetterConfig(TypedDict, total=False):
709
- Arn: Optional[Arn]
709
+ Arn: Arn | None
710
710
 
711
711
 
712
712
  class PipeSourceDynamoDBStreamParameters(TypedDict, total=False):
713
- BatchSize: Optional[LimitMax10000]
714
- DeadLetterConfig: Optional[DeadLetterConfig]
715
- OnPartialBatchItemFailure: Optional[OnPartialBatchItemFailureStreams]
716
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
717
- MaximumRecordAgeInSeconds: Optional[MaximumRecordAgeInSeconds]
718
- MaximumRetryAttempts: Optional[MaximumRetryAttemptsESM]
719
- ParallelizationFactor: Optional[LimitMax10]
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: Optional[LimitMax10000]
728
- DeadLetterConfig: Optional[DeadLetterConfig]
729
- OnPartialBatchItemFailure: Optional[OnPartialBatchItemFailureStreams]
730
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
731
- MaximumRecordAgeInSeconds: Optional[MaximumRecordAgeInSeconds]
732
- MaximumRetryAttempts: Optional[MaximumRetryAttemptsESM]
733
- ParallelizationFactor: Optional[LimitMax10]
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: Optional[Timestamp]
735
+ StartingPositionTimestamp: Timestamp | None
736
736
 
737
737
 
738
738
  class Filter(TypedDict, total=False):
739
- Pattern: Optional[EventPattern]
739
+ Pattern: EventPattern | None
740
740
 
741
741
 
742
- FilterList = List[Filter]
742
+ FilterList = list[Filter]
743
743
 
744
744
 
745
745
  class FilterCriteria(TypedDict, total=False):
746
- Filters: Optional[FilterList]
746
+ Filters: FilterList | None
747
747
 
748
748
 
749
749
  class PipeSourceParameters(TypedDict, total=False):
750
- FilterCriteria: Optional[FilterCriteria]
751
- KinesisStreamParameters: Optional[PipeSourceKinesisStreamParameters]
752
- DynamoDBStreamParameters: Optional[PipeSourceDynamoDBStreamParameters]
753
- SqsQueueParameters: Optional[PipeSourceSqsQueueParameters]
754
- ActiveMQBrokerParameters: Optional[PipeSourceActiveMQBrokerParameters]
755
- RabbitMQBrokerParameters: Optional[PipeSourceRabbitMQBrokerParameters]
756
- ManagedStreamingKafkaParameters: Optional[PipeSourceManagedStreamingKafkaParameters]
757
- SelfManagedKafkaParameters: Optional[PipeSourceSelfManagedKafkaParameters]
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: Optional[PipeDescription]
763
- DesiredState: Optional[RequestedPipeState]
762
+ Description: PipeDescription | None
763
+ DesiredState: RequestedPipeState | None
764
764
  Source: ArnOrUrl
765
- SourceParameters: Optional[PipeSourceParameters]
766
- Enrichment: Optional[OptionalArn]
767
- EnrichmentParameters: Optional[PipeEnrichmentParameters]
765
+ SourceParameters: PipeSourceParameters | None
766
+ Enrichment: OptionalArn | None
767
+ EnrichmentParameters: PipeEnrichmentParameters | None
768
768
  Target: Arn
769
- TargetParameters: Optional[PipeTargetParameters]
769
+ TargetParameters: PipeTargetParameters | None
770
770
  RoleArn: RoleArn
771
- Tags: Optional[TagMap]
772
- LogConfiguration: Optional[PipeLogConfigurationParameters]
773
- KmsKeyIdentifier: Optional[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: Optional[PipeArn]
778
- Name: Optional[PipeName]
779
- DesiredState: Optional[RequestedPipeState]
780
- CurrentState: Optional[PipeState]
781
- CreationTime: Optional[Timestamp]
782
- LastModifiedTime: Optional[Timestamp]
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: Optional[PipeArn]
791
- Name: Optional[PipeName]
792
- DesiredState: Optional[RequestedPipeStateDescribeResponse]
793
- CurrentState: Optional[PipeState]
794
- CreationTime: Optional[Timestamp]
795
- LastModifiedTime: Optional[Timestamp]
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: Optional[FirehoseArn]
803
+ DeliveryStreamArn: FirehoseArn | None
804
804
 
805
805
 
806
806
  class S3LogDestination(TypedDict, total=False):
807
- BucketName: Optional[String]
808
- Prefix: Optional[String]
809
- BucketOwner: Optional[String]
810
- OutputFormat: Optional[S3OutputFormat]
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: Optional[S3LogDestination]
815
- FirehoseLogDestination: Optional[FirehoseLogDestination]
816
- CloudwatchLogsLogDestination: Optional[CloudwatchLogsLogDestination]
817
- Level: Optional[LogLevel]
818
- IncludeExecutionData: Optional[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: Optional[PipeArn]
823
- Name: Optional[PipeName]
824
- Description: Optional[PipeDescription]
825
- DesiredState: Optional[RequestedPipeStateDescribeResponse]
826
- CurrentState: Optional[PipeState]
827
- StateReason: Optional[PipeStateReason]
828
- Source: Optional[ArnOrUrl]
829
- SourceParameters: Optional[PipeSourceParameters]
830
- Enrichment: Optional[OptionalArn]
831
- EnrichmentParameters: Optional[PipeEnrichmentParameters]
832
- Target: Optional[Arn]
833
- TargetParameters: Optional[PipeTargetParameters]
834
- RoleArn: Optional[RoleArn]
835
- Tags: Optional[TagMap]
836
- CreationTime: Optional[Timestamp]
837
- LastModifiedTime: Optional[Timestamp]
838
- LogConfiguration: Optional[PipeLogConfiguration]
839
- KmsKeyIdentifier: Optional[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: Optional[PipeName]
844
- DesiredState: Optional[RequestedPipeState]
845
- CurrentState: Optional[PipeState]
846
- SourcePrefix: Optional[ResourceArn]
847
- TargetPrefix: Optional[ResourceArn]
848
- NextToken: Optional[NextToken]
849
- Limit: Optional[LimitMax100]
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: Optional[PipeName]
854
- Arn: Optional[PipeArn]
855
- DesiredState: Optional[RequestedPipeState]
856
- CurrentState: Optional[PipeState]
857
- StateReason: Optional[PipeStateReason]
858
- CreationTime: Optional[Timestamp]
859
- LastModifiedTime: Optional[Timestamp]
860
- Source: Optional[ArnOrUrl]
861
- Target: Optional[Arn]
862
- Enrichment: Optional[OptionalArn]
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 = List[Pipe]
865
+ PipeList = list[Pipe]
866
866
 
867
867
 
868
868
  class ListPipesResponse(TypedDict, total=False):
869
- Pipes: Optional[PipeList]
870
- NextToken: Optional[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: Optional[TagMap]
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: Optional[PipeArn]
887
- Name: Optional[PipeName]
888
- DesiredState: Optional[RequestedPipeState]
889
- CurrentState: Optional[PipeState]
890
- CreationTime: Optional[Timestamp]
891
- LastModifiedTime: Optional[Timestamp]
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: Optional[PipeArn]
900
- Name: Optional[PipeName]
901
- DesiredState: Optional[RequestedPipeState]
902
- CurrentState: Optional[PipeState]
903
- CreationTime: Optional[Timestamp]
904
- LastModifiedTime: Optional[Timestamp]
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 = List[TagKey]
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: Optional[LimitMax10000]
930
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
931
- Credentials: Optional[SelfManagedKafkaAccessConfigurationCredentials]
932
- ServerRootCaCertificate: Optional[SecretManagerArn]
933
- Vpc: Optional[SelfManagedKafkaAccessConfigurationVpc]
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: Optional[LimitMax10000]
938
- Credentials: Optional[MSKAccessCredentials]
939
- MaximumBatchingWindowInSeconds: Optional[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: Optional[LimitMax10000]
945
- MaximumBatchingWindowInSeconds: Optional[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: Optional[LimitMax10000]
951
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
950
+ BatchSize: LimitMax10000 | None
951
+ MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
952
952
 
953
953
 
954
954
  class UpdatePipeSourceSqsQueueParameters(TypedDict, total=False):
955
- BatchSize: Optional[LimitMax10000]
956
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
955
+ BatchSize: LimitMax10000 | None
956
+ MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
957
957
 
958
958
 
959
959
  class UpdatePipeSourceDynamoDBStreamParameters(TypedDict, total=False):
960
- BatchSize: Optional[LimitMax10000]
961
- DeadLetterConfig: Optional[DeadLetterConfig]
962
- OnPartialBatchItemFailure: Optional[OnPartialBatchItemFailureStreams]
963
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
964
- MaximumRecordAgeInSeconds: Optional[MaximumRecordAgeInSeconds]
965
- MaximumRetryAttempts: Optional[MaximumRetryAttemptsESM]
966
- ParallelizationFactor: Optional[LimitMax10]
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: Optional[LimitMax10000]
971
- DeadLetterConfig: Optional[DeadLetterConfig]
972
- OnPartialBatchItemFailure: Optional[OnPartialBatchItemFailureStreams]
973
- MaximumBatchingWindowInSeconds: Optional[MaximumBatchingWindowInSeconds]
974
- MaximumRecordAgeInSeconds: Optional[MaximumRecordAgeInSeconds]
975
- MaximumRetryAttempts: Optional[MaximumRetryAttemptsESM]
976
- ParallelizationFactor: Optional[LimitMax10]
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: Optional[FilterCriteria]
981
- KinesisStreamParameters: Optional[UpdatePipeSourceKinesisStreamParameters]
982
- DynamoDBStreamParameters: Optional[UpdatePipeSourceDynamoDBStreamParameters]
983
- SqsQueueParameters: Optional[UpdatePipeSourceSqsQueueParameters]
984
- ActiveMQBrokerParameters: Optional[UpdatePipeSourceActiveMQBrokerParameters]
985
- RabbitMQBrokerParameters: Optional[UpdatePipeSourceRabbitMQBrokerParameters]
986
- ManagedStreamingKafkaParameters: Optional[UpdatePipeSourceManagedStreamingKafkaParameters]
987
- SelfManagedKafkaParameters: Optional[UpdatePipeSourceSelfManagedKafkaParameters]
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: Optional[PipeDescription]
993
- DesiredState: Optional[RequestedPipeState]
994
- SourceParameters: Optional[UpdatePipeSourceParameters]
995
- Enrichment: Optional[OptionalArn]
996
- EnrichmentParameters: Optional[PipeEnrichmentParameters]
997
- Target: Optional[Arn]
998
- TargetParameters: Optional[PipeTargetParameters]
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: Optional[PipeLogConfigurationParameters]
1001
- KmsKeyIdentifier: Optional[KmsKeyIdentifier]
1000
+ LogConfiguration: PipeLogConfigurationParameters | None
1001
+ KmsKeyIdentifier: KmsKeyIdentifier | None
1002
1002
 
1003
1003
 
1004
1004
  class UpdatePipeResponse(TypedDict, total=False):
1005
- Arn: Optional[PipeArn]
1006
- Name: Optional[PipeName]
1007
- DesiredState: Optional[RequestedPipeState]
1008
- CurrentState: Optional[PipeState]
1009
- CreationTime: Optional[Timestamp]
1010
- LastModifiedTime: Optional[Timestamp]
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(