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.
- 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 +1041 -969
- localstack/aws/api/cloudwatch/__init__.py +408 -368
- localstack/aws/api/config/__init__.py +788 -786
- localstack/aws/api/core.py +4 -0
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +9713 -8573
- 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 +646 -572
- localstack/aws/api/kinesis/__init__.py +251 -144
- localstack/aws/api/kms/__init__.py +343 -333
- localstack/aws/api/lambda_/__init__.py +585 -571
- localstack/aws/api/logs/__init__.py +682 -666
- localstack/aws/api/opensearch/__init__.py +814 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1192 -1164
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +67 -67
- localstack/aws/api/route53/__init__.py +256 -254
- localstack/aws/api/route53resolver/__init__.py +396 -396
- localstack/aws/api/s3/__init__.py +1358 -1345
- localstack/aws/api/s3control/__init__.py +616 -584
- 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 +1978 -1970
- 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/client.py +7 -2
- localstack/aws/forwarder.py +52 -5
- localstack/aws/handlers/analytics.py +1 -1
- localstack/aws/handlers/logging.py +12 -2
- localstack/aws/handlers/metric_handler.py +41 -1
- localstack/aws/handlers/service.py +43 -10
- localstack/aws/protocol/parser.py +440 -21
- localstack/aws/protocol/serializer.py +684 -64
- localstack/aws/protocol/service_router.py +120 -20
- localstack/aws/scaffold.py +15 -17
- localstack/aws/skeleton.py +4 -2
- localstack/aws/spec-patches.json +58 -0
- localstack/aws/spec.py +33 -13
- localstack/cli/exceptions.py +1 -1
- localstack/cli/localstack.py +10 -5
- localstack/cli/lpm.py +3 -4
- localstack/cli/profiles.py +1 -2
- localstack/config.py +18 -12
- localstack/constants.py +4 -29
- localstack/dev/kubernetes/__main__.py +39 -4
- localstack/dev/run/paths.py +1 -1
- localstack/dns/plugins.py +5 -1
- localstack/dns/server.py +12 -3
- localstack/packages/api.py +9 -8
- localstack/packages/core.py +2 -2
- localstack/packages/plugins.py +0 -8
- localstack/runtime/init.py +1 -1
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +85 -12
- localstack/services/apigateway/next_gen/execute_api/integrations/aws.py +3 -0
- localstack/services/apigateway/next_gen/execute_api/integrations/http.py +3 -3
- localstack/services/apigateway/next_gen/execute_api/test_invoke.py +50 -6
- localstack/services/apigateway/next_gen/provider.py +5 -0
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/engine/entities.py +12 -1
- localstack/services/cloudformation/engine/v2/change_set_model.py +0 -3
- localstack/services/cloudformation/engine/v2/change_set_model_describer.py +14 -0
- localstack/services/cloudformation/engine/v2/change_set_model_executor.py +13 -15
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +118 -24
- localstack/services/cloudformation/engine/v2/change_set_model_transform.py +4 -1
- localstack/services/cloudformation/engine/v2/change_set_model_validator.py +5 -14
- localstack/services/cloudformation/engine/v2/change_set_model_visitor.py +1 -0
- localstack/services/cloudformation/engine/v2/resolving.py +6 -4
- localstack/services/cloudformation/engine/yaml_parser.py +9 -2
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/resource_provider.py +5 -1
- localstack/services/cloudformation/resources.py +24149 -0
- localstack/services/cloudformation/v2/entities.py +6 -3
- localstack/services/cloudformation/v2/provider.py +178 -33
- localstack/services/cloudformation/v2/types.py +8 -4
- localstack/services/cloudwatch/provider_v2.py +25 -28
- localstack/services/dynamodb/packages.py +2 -1
- localstack/services/dynamodb/provider.py +42 -0
- localstack/services/dynamodb/v2/provider.py +42 -0
- localstack/services/ecr/resource_providers/aws_ecr_repository.py +5 -2
- localstack/services/es/provider.py +2 -2
- localstack/services/events/event_rule_engine.py +31 -13
- localstack/services/events/models.py +4 -5
- localstack/services/events/target.py +17 -9
- localstack/services/iam/provider.py +11 -116
- localstack/services/iam/resources/policy_simulator.py +133 -0
- localstack/services/kinesis/models.py +15 -2
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kinesis/provider.py +77 -0
- localstack/services/kms/models.py +34 -4
- localstack/services/kms/provider.py +107 -21
- localstack/services/lambda_/api_utils.py +3 -1
- localstack/services/lambda_/invocation/internal_sqs_queue.py +5 -9
- 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/moto.py +2 -1
- localstack/services/opensearch/cluster.py +15 -7
- localstack/services/opensearch/packages.py +26 -7
- localstack/services/opensearch/provider.py +6 -1
- localstack/services/opensearch/versions.py +56 -7
- localstack/services/s3/constants.py +5 -2
- localstack/services/s3/cors.py +4 -4
- localstack/services/s3/notifications.py +1 -1
- localstack/services/s3/presigned_url.py +27 -43
- localstack/services/s3/provider.py +68 -12
- localstack/services/s3/utils.py +42 -11
- localstack/services/ses/provider.py +16 -7
- localstack/services/sns/constants.py +7 -1
- localstack/services/sns/v2/models.py +190 -0
- localstack/services/sns/v2/provider.py +992 -2
- localstack/services/sns/v2/utils.py +138 -0
- localstack/services/sqs/developer_api.py +205 -0
- localstack/services/sqs/models.py +79 -13
- localstack/services/sqs/provider.py +8 -309
- localstack/services/sqs/query_api.py +1 -1
- localstack/services/sqs/utils.py +121 -2
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +1 -1
- localstack/testing/aws/cloudformation_utils.py +1 -1
- localstack/testing/pytest/cloudformation/fixtures.py +3 -3
- localstack/testing/pytest/container.py +4 -5
- localstack/testing/pytest/fixtures.py +20 -19
- localstack/testing/pytest/in_memory_localstack.py +0 -4
- localstack/testing/pytest/marking.py +13 -4
- localstack/testing/pytest/stepfunctions/utils.py +4 -3
- localstack/testing/pytest/util.py +1 -1
- localstack/testing/pytest/validation_tracking.py +1 -2
- localstack/testing/snapshots/transformer_utility.py +7 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/analytics/events.py +2 -2
- localstack/utils/analytics/metadata.py +1 -2
- localstack/utils/analytics/metrics/counter.py +6 -8
- localstack/utils/analytics/publisher.py +1 -2
- localstack/utils/analytics/service_request_aggregator.py +2 -2
- localstack/utils/archives.py +11 -11
- localstack/utils/aws/arns.py +17 -9
- localstack/utils/aws/aws_responses.py +7 -7
- localstack/utils/aws/aws_stack.py +2 -3
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/aws/message_forwarding.py +1 -2
- localstack/utils/aws/request_context.py +4 -5
- localstack/utils/batch_policy.py +3 -3
- localstack/utils/bootstrap.py +7 -7
- localstack/utils/catalog/catalog.py +139 -0
- localstack/utils/catalog/catalog_loader.py +119 -0
- localstack/utils/catalog/common.py +58 -0
- localstack/utils/catalog/plugins.py +28 -0
- localstack/utils/cloudwatch/cloudwatch_util.py +5 -5
- localstack/utils/collections.py +7 -8
- localstack/utils/config_listener.py +1 -1
- localstack/utils/container_networking.py +2 -3
- localstack/utils/container_utils/container_client.py +115 -131
- localstack/utils/container_utils/docker_cmd_client.py +42 -42
- localstack/utils/container_utils/docker_sdk_client.py +63 -62
- localstack/utils/crypto.py +109 -0
- localstack/utils/diagnose.py +2 -3
- localstack/utils/docker_utils.py +3 -4
- localstack/utils/files.py +31 -7
- localstack/utils/functions.py +3 -2
- localstack/utils/http.py +4 -5
- localstack/utils/json.py +19 -5
- localstack/utils/kinesis/kinesis_connector.py +2 -1
- localstack/utils/net.py +6 -6
- localstack/utils/no_exit_argument_parser.py +2 -2
- localstack/utils/numbers.py +9 -2
- localstack/utils/objects.py +6 -5
- localstack/utils/patch.py +2 -1
- localstack/utils/run.py +10 -9
- localstack/utils/scheduler.py +11 -11
- localstack/utils/server/tcp_proxy.py +2 -2
- localstack/utils/serving.py +2 -3
- localstack/utils/strings.py +10 -11
- localstack/utils/sync.py +126 -1
- localstack/utils/tagging.py +1 -4
- localstack/utils/testutil.py +5 -4
- localstack/utils/threads.py +2 -2
- localstack/utils/time.py +11 -3
- localstack/utils/urls.py +1 -3
- localstack/version.py +2 -2
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/METADATA +19 -13
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/RECORD +203 -199
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/entry_points.txt +4 -2
- localstack_core-4.10.1.dev42.dist-info/plux.json +1 -0
- localstack/packages/terraform.py +0 -46
- localstack/services/cloudformation/deploy.html +0 -144
- localstack/services/cloudformation/deploy_ui.py +0 -47
- localstack/services/cloudformation/plugins.py +0 -12
- localstack_core-4.7.1.dev139.dist-info/plux.json +0 -1
- {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack +0 -0
- {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/WHEEL +0 -0
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/licenses/LICENSE.txt +0 -0
- {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
|
|
3
|
+
from typing import TypedDict
|
|
4
4
|
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
6
|
|
|
@@ -371,12 +371,12 @@ class ServiceUnavailableException(ServiceException):
|
|
|
371
371
|
|
|
372
372
|
|
|
373
373
|
class AmazonOpenSearchServerlessBufferingHints(TypedDict, total=False):
|
|
374
|
-
IntervalInSeconds:
|
|
375
|
-
SizeInMBs:
|
|
374
|
+
IntervalInSeconds: AmazonOpenSearchServerlessBufferingIntervalInSeconds | None
|
|
375
|
+
SizeInMBs: AmazonOpenSearchServerlessBufferingSizeInMBs | None
|
|
376
376
|
|
|
377
377
|
|
|
378
|
-
SecurityGroupIdList =
|
|
379
|
-
SubnetIdList =
|
|
378
|
+
SecurityGroupIdList = list[NonEmptyStringWithoutWhitespace]
|
|
379
|
+
SubnetIdList = list[NonEmptyStringWithoutWhitespace]
|
|
380
380
|
|
|
381
381
|
|
|
382
382
|
class VpcConfiguration(TypedDict, total=False):
|
|
@@ -386,9 +386,9 @@ class VpcConfiguration(TypedDict, total=False):
|
|
|
386
386
|
|
|
387
387
|
|
|
388
388
|
class CloudWatchLoggingOptions(TypedDict, total=False):
|
|
389
|
-
Enabled:
|
|
390
|
-
LogGroupName:
|
|
391
|
-
LogStreamName:
|
|
389
|
+
Enabled: BooleanObject | None
|
|
390
|
+
LogGroupName: LogGroupName | None
|
|
391
|
+
LogStreamName: LogStreamName | None
|
|
392
392
|
|
|
393
393
|
|
|
394
394
|
class ProcessorParameter(TypedDict, total=False):
|
|
@@ -396,20 +396,20 @@ class ProcessorParameter(TypedDict, total=False):
|
|
|
396
396
|
ParameterValue: ProcessorParameterValue
|
|
397
397
|
|
|
398
398
|
|
|
399
|
-
ProcessorParameterList =
|
|
399
|
+
ProcessorParameterList = list[ProcessorParameter]
|
|
400
400
|
|
|
401
401
|
|
|
402
402
|
class Processor(TypedDict, total=False):
|
|
403
403
|
Type: ProcessorType
|
|
404
|
-
Parameters:
|
|
404
|
+
Parameters: ProcessorParameterList | None
|
|
405
405
|
|
|
406
406
|
|
|
407
|
-
ProcessorList =
|
|
407
|
+
ProcessorList = list[Processor]
|
|
408
408
|
|
|
409
409
|
|
|
410
410
|
class ProcessingConfiguration(TypedDict, total=False):
|
|
411
|
-
Enabled:
|
|
412
|
-
Processors:
|
|
411
|
+
Enabled: BooleanObject | None
|
|
412
|
+
Processors: ProcessorList | None
|
|
413
413
|
|
|
414
414
|
|
|
415
415
|
class KMSEncryptionConfig(TypedDict, total=False):
|
|
@@ -417,41 +417,41 @@ class KMSEncryptionConfig(TypedDict, total=False):
|
|
|
417
417
|
|
|
418
418
|
|
|
419
419
|
class EncryptionConfiguration(TypedDict, total=False):
|
|
420
|
-
NoEncryptionConfig:
|
|
421
|
-
KMSEncryptionConfig:
|
|
420
|
+
NoEncryptionConfig: NoEncryptionConfig | None
|
|
421
|
+
KMSEncryptionConfig: KMSEncryptionConfig | None
|
|
422
422
|
|
|
423
423
|
|
|
424
424
|
class BufferingHints(TypedDict, total=False):
|
|
425
|
-
SizeInMBs:
|
|
426
|
-
IntervalInSeconds:
|
|
425
|
+
SizeInMBs: SizeInMBs | None
|
|
426
|
+
IntervalInSeconds: IntervalInSeconds | None
|
|
427
427
|
|
|
428
428
|
|
|
429
429
|
class S3DestinationConfiguration(TypedDict, total=False):
|
|
430
430
|
RoleARN: RoleARN
|
|
431
431
|
BucketARN: BucketARN
|
|
432
|
-
Prefix:
|
|
433
|
-
ErrorOutputPrefix:
|
|
434
|
-
BufferingHints:
|
|
435
|
-
CompressionFormat:
|
|
436
|
-
EncryptionConfiguration:
|
|
437
|
-
CloudWatchLoggingOptions:
|
|
432
|
+
Prefix: Prefix | None
|
|
433
|
+
ErrorOutputPrefix: ErrorOutputPrefix | None
|
|
434
|
+
BufferingHints: BufferingHints | None
|
|
435
|
+
CompressionFormat: CompressionFormat | None
|
|
436
|
+
EncryptionConfiguration: EncryptionConfiguration | None
|
|
437
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
438
438
|
|
|
439
439
|
|
|
440
440
|
class AmazonOpenSearchServerlessRetryOptions(TypedDict, total=False):
|
|
441
|
-
DurationInSeconds:
|
|
441
|
+
DurationInSeconds: AmazonOpenSearchServerlessRetryDurationInSeconds | None
|
|
442
442
|
|
|
443
443
|
|
|
444
444
|
class AmazonOpenSearchServerlessDestinationConfiguration(TypedDict, total=False):
|
|
445
445
|
RoleARN: RoleARN
|
|
446
|
-
CollectionEndpoint:
|
|
446
|
+
CollectionEndpoint: AmazonOpenSearchServerlessCollectionEndpoint | None
|
|
447
447
|
IndexName: AmazonOpenSearchServerlessIndexName
|
|
448
|
-
BufferingHints:
|
|
449
|
-
RetryOptions:
|
|
450
|
-
S3BackupMode:
|
|
448
|
+
BufferingHints: AmazonOpenSearchServerlessBufferingHints | None
|
|
449
|
+
RetryOptions: AmazonOpenSearchServerlessRetryOptions | None
|
|
450
|
+
S3BackupMode: AmazonOpenSearchServerlessS3BackupMode | None
|
|
451
451
|
S3Configuration: S3DestinationConfiguration
|
|
452
|
-
ProcessingConfiguration:
|
|
453
|
-
CloudWatchLoggingOptions:
|
|
454
|
-
VpcConfiguration:
|
|
452
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
453
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
454
|
+
VpcConfiguration: VpcConfiguration | None
|
|
455
455
|
|
|
456
456
|
|
|
457
457
|
class VpcConfigurationDescription(TypedDict, total=False):
|
|
@@ -464,52 +464,52 @@ class VpcConfigurationDescription(TypedDict, total=False):
|
|
|
464
464
|
class S3DestinationDescription(TypedDict, total=False):
|
|
465
465
|
RoleARN: RoleARN
|
|
466
466
|
BucketARN: BucketARN
|
|
467
|
-
Prefix:
|
|
468
|
-
ErrorOutputPrefix:
|
|
467
|
+
Prefix: Prefix | None
|
|
468
|
+
ErrorOutputPrefix: ErrorOutputPrefix | None
|
|
469
469
|
BufferingHints: BufferingHints
|
|
470
470
|
CompressionFormat: CompressionFormat
|
|
471
471
|
EncryptionConfiguration: EncryptionConfiguration
|
|
472
|
-
CloudWatchLoggingOptions:
|
|
472
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
473
473
|
|
|
474
474
|
|
|
475
475
|
class AmazonOpenSearchServerlessDestinationDescription(TypedDict, total=False):
|
|
476
|
-
RoleARN:
|
|
477
|
-
CollectionEndpoint:
|
|
478
|
-
IndexName:
|
|
479
|
-
BufferingHints:
|
|
480
|
-
RetryOptions:
|
|
481
|
-
S3BackupMode:
|
|
482
|
-
S3DestinationDescription:
|
|
483
|
-
ProcessingConfiguration:
|
|
484
|
-
CloudWatchLoggingOptions:
|
|
485
|
-
VpcConfigurationDescription:
|
|
476
|
+
RoleARN: RoleARN | None
|
|
477
|
+
CollectionEndpoint: AmazonOpenSearchServerlessCollectionEndpoint | None
|
|
478
|
+
IndexName: AmazonOpenSearchServerlessIndexName | None
|
|
479
|
+
BufferingHints: AmazonOpenSearchServerlessBufferingHints | None
|
|
480
|
+
RetryOptions: AmazonOpenSearchServerlessRetryOptions | None
|
|
481
|
+
S3BackupMode: AmazonOpenSearchServerlessS3BackupMode | None
|
|
482
|
+
S3DestinationDescription: S3DestinationDescription | None
|
|
483
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
484
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
485
|
+
VpcConfigurationDescription: VpcConfigurationDescription | None
|
|
486
486
|
|
|
487
487
|
|
|
488
488
|
class S3DestinationUpdate(TypedDict, total=False):
|
|
489
|
-
RoleARN:
|
|
490
|
-
BucketARN:
|
|
491
|
-
Prefix:
|
|
492
|
-
ErrorOutputPrefix:
|
|
493
|
-
BufferingHints:
|
|
494
|
-
CompressionFormat:
|
|
495
|
-
EncryptionConfiguration:
|
|
496
|
-
CloudWatchLoggingOptions:
|
|
489
|
+
RoleARN: RoleARN | None
|
|
490
|
+
BucketARN: BucketARN | None
|
|
491
|
+
Prefix: Prefix | None
|
|
492
|
+
ErrorOutputPrefix: ErrorOutputPrefix | None
|
|
493
|
+
BufferingHints: BufferingHints | None
|
|
494
|
+
CompressionFormat: CompressionFormat | None
|
|
495
|
+
EncryptionConfiguration: EncryptionConfiguration | None
|
|
496
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
497
497
|
|
|
498
498
|
|
|
499
499
|
class AmazonOpenSearchServerlessDestinationUpdate(TypedDict, total=False):
|
|
500
|
-
RoleARN:
|
|
501
|
-
CollectionEndpoint:
|
|
502
|
-
IndexName:
|
|
503
|
-
BufferingHints:
|
|
504
|
-
RetryOptions:
|
|
505
|
-
S3Update:
|
|
506
|
-
ProcessingConfiguration:
|
|
507
|
-
CloudWatchLoggingOptions:
|
|
500
|
+
RoleARN: RoleARN | None
|
|
501
|
+
CollectionEndpoint: AmazonOpenSearchServerlessCollectionEndpoint | None
|
|
502
|
+
IndexName: AmazonOpenSearchServerlessIndexName | None
|
|
503
|
+
BufferingHints: AmazonOpenSearchServerlessBufferingHints | None
|
|
504
|
+
RetryOptions: AmazonOpenSearchServerlessRetryOptions | None
|
|
505
|
+
S3Update: S3DestinationUpdate | None
|
|
506
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
507
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
508
508
|
|
|
509
509
|
|
|
510
510
|
class AmazonopensearchserviceBufferingHints(TypedDict, total=False):
|
|
511
|
-
IntervalInSeconds:
|
|
512
|
-
SizeInMBs:
|
|
511
|
+
IntervalInSeconds: AmazonopensearchserviceBufferingIntervalInSeconds | None
|
|
512
|
+
SizeInMBs: AmazonopensearchserviceBufferingSizeInMBs | None
|
|
513
513
|
|
|
514
514
|
|
|
515
515
|
class DocumentIdOptions(TypedDict, total=False):
|
|
@@ -517,56 +517,56 @@ class DocumentIdOptions(TypedDict, total=False):
|
|
|
517
517
|
|
|
518
518
|
|
|
519
519
|
class AmazonopensearchserviceRetryOptions(TypedDict, total=False):
|
|
520
|
-
DurationInSeconds:
|
|
520
|
+
DurationInSeconds: AmazonopensearchserviceRetryDurationInSeconds | None
|
|
521
521
|
|
|
522
522
|
|
|
523
523
|
class AmazonopensearchserviceDestinationConfiguration(TypedDict, total=False):
|
|
524
524
|
RoleARN: RoleARN
|
|
525
|
-
DomainARN:
|
|
526
|
-
ClusterEndpoint:
|
|
525
|
+
DomainARN: AmazonopensearchserviceDomainARN | None
|
|
526
|
+
ClusterEndpoint: AmazonopensearchserviceClusterEndpoint | None
|
|
527
527
|
IndexName: AmazonopensearchserviceIndexName
|
|
528
|
-
TypeName:
|
|
529
|
-
IndexRotationPeriod:
|
|
530
|
-
BufferingHints:
|
|
531
|
-
RetryOptions:
|
|
532
|
-
S3BackupMode:
|
|
528
|
+
TypeName: AmazonopensearchserviceTypeName | None
|
|
529
|
+
IndexRotationPeriod: AmazonopensearchserviceIndexRotationPeriod | None
|
|
530
|
+
BufferingHints: AmazonopensearchserviceBufferingHints | None
|
|
531
|
+
RetryOptions: AmazonopensearchserviceRetryOptions | None
|
|
532
|
+
S3BackupMode: AmazonopensearchserviceS3BackupMode | None
|
|
533
533
|
S3Configuration: S3DestinationConfiguration
|
|
534
|
-
ProcessingConfiguration:
|
|
535
|
-
CloudWatchLoggingOptions:
|
|
536
|
-
VpcConfiguration:
|
|
537
|
-
DocumentIdOptions:
|
|
534
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
535
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
536
|
+
VpcConfiguration: VpcConfiguration | None
|
|
537
|
+
DocumentIdOptions: DocumentIdOptions | None
|
|
538
538
|
|
|
539
539
|
|
|
540
540
|
class AmazonopensearchserviceDestinationDescription(TypedDict, total=False):
|
|
541
|
-
RoleARN:
|
|
542
|
-
DomainARN:
|
|
543
|
-
ClusterEndpoint:
|
|
544
|
-
IndexName:
|
|
545
|
-
TypeName:
|
|
546
|
-
IndexRotationPeriod:
|
|
547
|
-
BufferingHints:
|
|
548
|
-
RetryOptions:
|
|
549
|
-
S3BackupMode:
|
|
550
|
-
S3DestinationDescription:
|
|
551
|
-
ProcessingConfiguration:
|
|
552
|
-
CloudWatchLoggingOptions:
|
|
553
|
-
VpcConfigurationDescription:
|
|
554
|
-
DocumentIdOptions:
|
|
541
|
+
RoleARN: RoleARN | None
|
|
542
|
+
DomainARN: AmazonopensearchserviceDomainARN | None
|
|
543
|
+
ClusterEndpoint: AmazonopensearchserviceClusterEndpoint | None
|
|
544
|
+
IndexName: AmazonopensearchserviceIndexName | None
|
|
545
|
+
TypeName: AmazonopensearchserviceTypeName | None
|
|
546
|
+
IndexRotationPeriod: AmazonopensearchserviceIndexRotationPeriod | None
|
|
547
|
+
BufferingHints: AmazonopensearchserviceBufferingHints | None
|
|
548
|
+
RetryOptions: AmazonopensearchserviceRetryOptions | None
|
|
549
|
+
S3BackupMode: AmazonopensearchserviceS3BackupMode | None
|
|
550
|
+
S3DestinationDescription: S3DestinationDescription | None
|
|
551
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
552
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
553
|
+
VpcConfigurationDescription: VpcConfigurationDescription | None
|
|
554
|
+
DocumentIdOptions: DocumentIdOptions | None
|
|
555
555
|
|
|
556
556
|
|
|
557
557
|
class AmazonopensearchserviceDestinationUpdate(TypedDict, total=False):
|
|
558
|
-
RoleARN:
|
|
559
|
-
DomainARN:
|
|
560
|
-
ClusterEndpoint:
|
|
561
|
-
IndexName:
|
|
562
|
-
TypeName:
|
|
563
|
-
IndexRotationPeriod:
|
|
564
|
-
BufferingHints:
|
|
565
|
-
RetryOptions:
|
|
566
|
-
S3Update:
|
|
567
|
-
ProcessingConfiguration:
|
|
568
|
-
CloudWatchLoggingOptions:
|
|
569
|
-
DocumentIdOptions:
|
|
558
|
+
RoleARN: RoleARN | None
|
|
559
|
+
DomainARN: AmazonopensearchserviceDomainARN | None
|
|
560
|
+
ClusterEndpoint: AmazonopensearchserviceClusterEndpoint | None
|
|
561
|
+
IndexName: AmazonopensearchserviceIndexName | None
|
|
562
|
+
TypeName: AmazonopensearchserviceTypeName | None
|
|
563
|
+
IndexRotationPeriod: AmazonopensearchserviceIndexRotationPeriod | None
|
|
564
|
+
BufferingHints: AmazonopensearchserviceBufferingHints | None
|
|
565
|
+
RetryOptions: AmazonopensearchserviceRetryOptions | None
|
|
566
|
+
S3Update: S3DestinationUpdate | None
|
|
567
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
568
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
569
|
+
DocumentIdOptions: DocumentIdOptions | None
|
|
570
570
|
|
|
571
571
|
|
|
572
572
|
class AuthenticationConfiguration(TypedDict, total=False):
|
|
@@ -575,17 +575,17 @@ class AuthenticationConfiguration(TypedDict, total=False):
|
|
|
575
575
|
|
|
576
576
|
|
|
577
577
|
class CatalogConfiguration(TypedDict, total=False):
|
|
578
|
-
CatalogARN:
|
|
579
|
-
WarehouseLocation:
|
|
578
|
+
CatalogARN: GlueDataCatalogARN | None
|
|
579
|
+
WarehouseLocation: WarehouseLocation | None
|
|
580
580
|
|
|
581
581
|
|
|
582
|
-
ColumnToJsonKeyMappings =
|
|
582
|
+
ColumnToJsonKeyMappings = dict[NonEmptyStringWithoutWhitespace, NonEmptyString]
|
|
583
583
|
|
|
584
584
|
|
|
585
585
|
class CopyCommand(TypedDict, total=False):
|
|
586
586
|
DataTableName: DataTableName
|
|
587
|
-
DataTableColumns:
|
|
588
|
-
CopyOptions:
|
|
587
|
+
DataTableColumns: DataTableColumns | None
|
|
588
|
+
CopyOptions: CopyOptions | None
|
|
589
589
|
|
|
590
590
|
|
|
591
591
|
class DatabaseSourceVPCConfiguration(TypedDict, total=False):
|
|
@@ -593,8 +593,8 @@ class DatabaseSourceVPCConfiguration(TypedDict, total=False):
|
|
|
593
593
|
|
|
594
594
|
|
|
595
595
|
class SecretsManagerConfiguration(TypedDict, total=False):
|
|
596
|
-
SecretARN:
|
|
597
|
-
RoleARN:
|
|
596
|
+
SecretARN: SecretARN | None
|
|
597
|
+
RoleARN: RoleARN | None
|
|
598
598
|
Enabled: BooleanObject
|
|
599
599
|
|
|
600
600
|
|
|
@@ -602,47 +602,47 @@ class DatabaseSourceAuthenticationConfiguration(TypedDict, total=False):
|
|
|
602
602
|
SecretsManagerConfiguration: SecretsManagerConfiguration
|
|
603
603
|
|
|
604
604
|
|
|
605
|
-
DatabaseSurrogateKeyList =
|
|
606
|
-
DatabaseColumnIncludeOrExcludeList =
|
|
605
|
+
DatabaseSurrogateKeyList = list[NonEmptyStringWithoutWhitespace]
|
|
606
|
+
DatabaseColumnIncludeOrExcludeList = list[DatabaseColumnName]
|
|
607
607
|
|
|
608
608
|
|
|
609
609
|
class DatabaseColumnList(TypedDict, total=False):
|
|
610
|
-
Include:
|
|
611
|
-
Exclude:
|
|
610
|
+
Include: DatabaseColumnIncludeOrExcludeList | None
|
|
611
|
+
Exclude: DatabaseColumnIncludeOrExcludeList | None
|
|
612
612
|
|
|
613
613
|
|
|
614
|
-
DatabaseTableIncludeOrExcludeList =
|
|
614
|
+
DatabaseTableIncludeOrExcludeList = list[DatabaseTableName]
|
|
615
615
|
|
|
616
616
|
|
|
617
617
|
class DatabaseTableList(TypedDict, total=False):
|
|
618
|
-
Include:
|
|
619
|
-
Exclude:
|
|
618
|
+
Include: DatabaseTableIncludeOrExcludeList | None
|
|
619
|
+
Exclude: DatabaseTableIncludeOrExcludeList | None
|
|
620
620
|
|
|
621
621
|
|
|
622
|
-
DatabaseIncludeOrExcludeList =
|
|
622
|
+
DatabaseIncludeOrExcludeList = list[DatabaseName]
|
|
623
623
|
|
|
624
624
|
|
|
625
625
|
class DatabaseList(TypedDict, total=False):
|
|
626
|
-
Include:
|
|
627
|
-
Exclude:
|
|
626
|
+
Include: DatabaseIncludeOrExcludeList | None
|
|
627
|
+
Exclude: DatabaseIncludeOrExcludeList | None
|
|
628
628
|
|
|
629
629
|
|
|
630
630
|
class DatabaseSourceConfiguration(TypedDict, total=False):
|
|
631
631
|
Type: DatabaseType
|
|
632
632
|
Endpoint: DatabaseEndpoint
|
|
633
633
|
Port: DatabasePort
|
|
634
|
-
SSLMode:
|
|
634
|
+
SSLMode: SSLMode | None
|
|
635
635
|
Databases: DatabaseList
|
|
636
636
|
Tables: DatabaseTableList
|
|
637
|
-
Columns:
|
|
638
|
-
SurrogateKeys:
|
|
637
|
+
Columns: DatabaseColumnList | None
|
|
638
|
+
SurrogateKeys: DatabaseSurrogateKeyList | None
|
|
639
639
|
SnapshotWatermarkTable: DatabaseTableName
|
|
640
640
|
DatabaseSourceAuthenticationConfiguration: DatabaseSourceAuthenticationConfiguration
|
|
641
641
|
DatabaseSourceVPCConfiguration: DatabaseSourceVPCConfiguration
|
|
642
642
|
|
|
643
643
|
|
|
644
644
|
class RetryOptions(TypedDict, total=False):
|
|
645
|
-
DurationInSeconds:
|
|
645
|
+
DurationInSeconds: RetryDurationInSeconds | None
|
|
646
646
|
|
|
647
647
|
|
|
648
648
|
class TableCreationConfiguration(TypedDict, total=False):
|
|
@@ -657,49 +657,49 @@ class PartitionField(TypedDict, total=False):
|
|
|
657
657
|
SourceName: NonEmptyStringWithoutWhitespace
|
|
658
658
|
|
|
659
659
|
|
|
660
|
-
PartitionFields =
|
|
660
|
+
PartitionFields = list[PartitionField]
|
|
661
661
|
|
|
662
662
|
|
|
663
663
|
class PartitionSpec(TypedDict, total=False):
|
|
664
|
-
Identity:
|
|
664
|
+
Identity: PartitionFields | None
|
|
665
665
|
|
|
666
666
|
|
|
667
|
-
ListOfNonEmptyStringsWithoutWhitespace =
|
|
667
|
+
ListOfNonEmptyStringsWithoutWhitespace = list[NonEmptyStringWithoutWhitespace]
|
|
668
668
|
|
|
669
669
|
|
|
670
670
|
class DestinationTableConfiguration(TypedDict, total=False):
|
|
671
671
|
DestinationTableName: StringWithLettersDigitsUnderscoresDots
|
|
672
672
|
DestinationDatabaseName: StringWithLettersDigitsUnderscoresDots
|
|
673
|
-
UniqueKeys:
|
|
674
|
-
PartitionSpec:
|
|
675
|
-
S3ErrorOutputPrefix:
|
|
673
|
+
UniqueKeys: ListOfNonEmptyStringsWithoutWhitespace | None
|
|
674
|
+
PartitionSpec: PartitionSpec | None
|
|
675
|
+
S3ErrorOutputPrefix: ErrorOutputPrefix | None
|
|
676
676
|
|
|
677
677
|
|
|
678
|
-
DestinationTableConfigurationList =
|
|
678
|
+
DestinationTableConfigurationList = list[DestinationTableConfiguration]
|
|
679
679
|
|
|
680
680
|
|
|
681
681
|
class IcebergDestinationConfiguration(TypedDict, total=False):
|
|
682
|
-
DestinationTableConfigurationList:
|
|
683
|
-
SchemaEvolutionConfiguration:
|
|
684
|
-
TableCreationConfiguration:
|
|
685
|
-
BufferingHints:
|
|
686
|
-
CloudWatchLoggingOptions:
|
|
687
|
-
ProcessingConfiguration:
|
|
688
|
-
S3BackupMode:
|
|
689
|
-
RetryOptions:
|
|
682
|
+
DestinationTableConfigurationList: DestinationTableConfigurationList | None
|
|
683
|
+
SchemaEvolutionConfiguration: SchemaEvolutionConfiguration | None
|
|
684
|
+
TableCreationConfiguration: TableCreationConfiguration | None
|
|
685
|
+
BufferingHints: BufferingHints | None
|
|
686
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
687
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
688
|
+
S3BackupMode: IcebergS3BackupMode | None
|
|
689
|
+
RetryOptions: RetryOptions | None
|
|
690
690
|
RoleARN: RoleARN
|
|
691
|
-
AppendOnly:
|
|
691
|
+
AppendOnly: BooleanObject | None
|
|
692
692
|
CatalogConfiguration: CatalogConfiguration
|
|
693
693
|
S3Configuration: S3DestinationConfiguration
|
|
694
694
|
|
|
695
695
|
|
|
696
696
|
class SnowflakeBufferingHints(TypedDict, total=False):
|
|
697
|
-
SizeInMBs:
|
|
698
|
-
IntervalInSeconds:
|
|
697
|
+
SizeInMBs: SnowflakeBufferingSizeInMBs | None
|
|
698
|
+
IntervalInSeconds: SnowflakeBufferingIntervalInSeconds | None
|
|
699
699
|
|
|
700
700
|
|
|
701
701
|
class SnowflakeRetryOptions(TypedDict, total=False):
|
|
702
|
-
DurationInSeconds:
|
|
702
|
+
DurationInSeconds: SnowflakeRetryDurationInSeconds | None
|
|
703
703
|
|
|
704
704
|
|
|
705
705
|
class SnowflakeVpcConfiguration(TypedDict, total=False):
|
|
@@ -707,31 +707,31 @@ class SnowflakeVpcConfiguration(TypedDict, total=False):
|
|
|
707
707
|
|
|
708
708
|
|
|
709
709
|
class SnowflakeRoleConfiguration(TypedDict, total=False):
|
|
710
|
-
Enabled:
|
|
711
|
-
SnowflakeRole:
|
|
710
|
+
Enabled: BooleanObject | None
|
|
711
|
+
SnowflakeRole: SnowflakeRole | None
|
|
712
712
|
|
|
713
713
|
|
|
714
714
|
class SnowflakeDestinationConfiguration(TypedDict, total=False):
|
|
715
715
|
AccountUrl: SnowflakeAccountUrl
|
|
716
|
-
PrivateKey:
|
|
717
|
-
KeyPassphrase:
|
|
718
|
-
User:
|
|
716
|
+
PrivateKey: SnowflakePrivateKey | None
|
|
717
|
+
KeyPassphrase: SnowflakeKeyPassphrase | None
|
|
718
|
+
User: SnowflakeUser | None
|
|
719
719
|
Database: SnowflakeDatabase
|
|
720
720
|
Schema: SnowflakeSchema
|
|
721
721
|
Table: SnowflakeTable
|
|
722
|
-
SnowflakeRoleConfiguration:
|
|
723
|
-
DataLoadingOption:
|
|
724
|
-
MetaDataColumnName:
|
|
725
|
-
ContentColumnName:
|
|
726
|
-
SnowflakeVpcConfiguration:
|
|
727
|
-
CloudWatchLoggingOptions:
|
|
728
|
-
ProcessingConfiguration:
|
|
722
|
+
SnowflakeRoleConfiguration: SnowflakeRoleConfiguration | None
|
|
723
|
+
DataLoadingOption: SnowflakeDataLoadingOption | None
|
|
724
|
+
MetaDataColumnName: SnowflakeMetaDataColumnName | None
|
|
725
|
+
ContentColumnName: SnowflakeContentColumnName | None
|
|
726
|
+
SnowflakeVpcConfiguration: SnowflakeVpcConfiguration | None
|
|
727
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
728
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
729
729
|
RoleARN: RoleARN
|
|
730
|
-
RetryOptions:
|
|
731
|
-
S3BackupMode:
|
|
730
|
+
RetryOptions: SnowflakeRetryOptions | None
|
|
731
|
+
S3BackupMode: SnowflakeS3BackupMode | None
|
|
732
732
|
S3Configuration: S3DestinationConfiguration
|
|
733
|
-
SecretsManagerConfiguration:
|
|
734
|
-
BufferingHints:
|
|
733
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
734
|
+
BufferingHints: SnowflakeBufferingHints | None
|
|
735
735
|
|
|
736
736
|
|
|
737
737
|
ReadFromTimestamp = datetime
|
|
@@ -741,19 +741,19 @@ class MSKSourceConfiguration(TypedDict, total=False):
|
|
|
741
741
|
MSKClusterARN: MSKClusterARN
|
|
742
742
|
TopicName: TopicName
|
|
743
743
|
AuthenticationConfiguration: AuthenticationConfiguration
|
|
744
|
-
ReadFromTimestamp:
|
|
744
|
+
ReadFromTimestamp: ReadFromTimestamp | None
|
|
745
745
|
|
|
746
746
|
|
|
747
747
|
class Tag(TypedDict, total=False):
|
|
748
748
|
Key: TagKey
|
|
749
|
-
Value:
|
|
749
|
+
Value: TagValue | None
|
|
750
750
|
|
|
751
751
|
|
|
752
|
-
TagDeliveryStreamInputTagList =
|
|
752
|
+
TagDeliveryStreamInputTagList = list[Tag]
|
|
753
753
|
|
|
754
754
|
|
|
755
755
|
class HttpEndpointRetryOptions(TypedDict, total=False):
|
|
756
|
-
DurationInSeconds:
|
|
756
|
+
DurationInSeconds: HttpEndpointRetryDurationInSeconds | None
|
|
757
757
|
|
|
758
758
|
|
|
759
759
|
class HttpEndpointCommonAttribute(TypedDict, total=False):
|
|
@@ -761,200 +761,200 @@ class HttpEndpointCommonAttribute(TypedDict, total=False):
|
|
|
761
761
|
AttributeValue: HttpEndpointAttributeValue
|
|
762
762
|
|
|
763
763
|
|
|
764
|
-
HttpEndpointCommonAttributesList =
|
|
764
|
+
HttpEndpointCommonAttributesList = list[HttpEndpointCommonAttribute]
|
|
765
765
|
|
|
766
766
|
|
|
767
767
|
class HttpEndpointRequestConfiguration(TypedDict, total=False):
|
|
768
|
-
ContentEncoding:
|
|
769
|
-
CommonAttributes:
|
|
768
|
+
ContentEncoding: ContentEncoding | None
|
|
769
|
+
CommonAttributes: HttpEndpointCommonAttributesList | None
|
|
770
770
|
|
|
771
771
|
|
|
772
772
|
class HttpEndpointBufferingHints(TypedDict, total=False):
|
|
773
|
-
SizeInMBs:
|
|
774
|
-
IntervalInSeconds:
|
|
773
|
+
SizeInMBs: HttpEndpointBufferingSizeInMBs | None
|
|
774
|
+
IntervalInSeconds: HttpEndpointBufferingIntervalInSeconds | None
|
|
775
775
|
|
|
776
776
|
|
|
777
777
|
class HttpEndpointConfiguration(TypedDict, total=False):
|
|
778
778
|
Url: HttpEndpointUrl
|
|
779
|
-
Name:
|
|
780
|
-
AccessKey:
|
|
779
|
+
Name: HttpEndpointName | None
|
|
780
|
+
AccessKey: HttpEndpointAccessKey | None
|
|
781
781
|
|
|
782
782
|
|
|
783
783
|
class HttpEndpointDestinationConfiguration(TypedDict, total=False):
|
|
784
784
|
EndpointConfiguration: HttpEndpointConfiguration
|
|
785
|
-
BufferingHints:
|
|
786
|
-
CloudWatchLoggingOptions:
|
|
787
|
-
RequestConfiguration:
|
|
788
|
-
ProcessingConfiguration:
|
|
789
|
-
RoleARN:
|
|
790
|
-
RetryOptions:
|
|
791
|
-
S3BackupMode:
|
|
785
|
+
BufferingHints: HttpEndpointBufferingHints | None
|
|
786
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
787
|
+
RequestConfiguration: HttpEndpointRequestConfiguration | None
|
|
788
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
789
|
+
RoleARN: RoleARN | None
|
|
790
|
+
RetryOptions: HttpEndpointRetryOptions | None
|
|
791
|
+
S3BackupMode: HttpEndpointS3BackupMode | None
|
|
792
792
|
S3Configuration: S3DestinationConfiguration
|
|
793
|
-
SecretsManagerConfiguration:
|
|
793
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
794
794
|
|
|
795
795
|
|
|
796
796
|
class SplunkBufferingHints(TypedDict, total=False):
|
|
797
|
-
IntervalInSeconds:
|
|
798
|
-
SizeInMBs:
|
|
797
|
+
IntervalInSeconds: SplunkBufferingIntervalInSeconds | None
|
|
798
|
+
SizeInMBs: SplunkBufferingSizeInMBs | None
|
|
799
799
|
|
|
800
800
|
|
|
801
801
|
class SplunkRetryOptions(TypedDict, total=False):
|
|
802
|
-
DurationInSeconds:
|
|
802
|
+
DurationInSeconds: SplunkRetryDurationInSeconds | None
|
|
803
803
|
|
|
804
804
|
|
|
805
805
|
class SplunkDestinationConfiguration(TypedDict, total=False):
|
|
806
806
|
HECEndpoint: HECEndpoint
|
|
807
807
|
HECEndpointType: HECEndpointType
|
|
808
|
-
HECToken:
|
|
809
|
-
HECAcknowledgmentTimeoutInSeconds:
|
|
810
|
-
RetryOptions:
|
|
811
|
-
S3BackupMode:
|
|
808
|
+
HECToken: HECToken | None
|
|
809
|
+
HECAcknowledgmentTimeoutInSeconds: HECAcknowledgmentTimeoutInSeconds | None
|
|
810
|
+
RetryOptions: SplunkRetryOptions | None
|
|
811
|
+
S3BackupMode: SplunkS3BackupMode | None
|
|
812
812
|
S3Configuration: S3DestinationConfiguration
|
|
813
|
-
ProcessingConfiguration:
|
|
814
|
-
CloudWatchLoggingOptions:
|
|
815
|
-
BufferingHints:
|
|
816
|
-
SecretsManagerConfiguration:
|
|
813
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
814
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
815
|
+
BufferingHints: SplunkBufferingHints | None
|
|
816
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
817
817
|
|
|
818
818
|
|
|
819
819
|
class ElasticsearchRetryOptions(TypedDict, total=False):
|
|
820
|
-
DurationInSeconds:
|
|
820
|
+
DurationInSeconds: ElasticsearchRetryDurationInSeconds | None
|
|
821
821
|
|
|
822
822
|
|
|
823
823
|
class ElasticsearchBufferingHints(TypedDict, total=False):
|
|
824
|
-
IntervalInSeconds:
|
|
825
|
-
SizeInMBs:
|
|
824
|
+
IntervalInSeconds: ElasticsearchBufferingIntervalInSeconds | None
|
|
825
|
+
SizeInMBs: ElasticsearchBufferingSizeInMBs | None
|
|
826
826
|
|
|
827
827
|
|
|
828
828
|
class ElasticsearchDestinationConfiguration(TypedDict, total=False):
|
|
829
829
|
RoleARN: RoleARN
|
|
830
|
-
DomainARN:
|
|
831
|
-
ClusterEndpoint:
|
|
830
|
+
DomainARN: ElasticsearchDomainARN | None
|
|
831
|
+
ClusterEndpoint: ElasticsearchClusterEndpoint | None
|
|
832
832
|
IndexName: ElasticsearchIndexName
|
|
833
|
-
TypeName:
|
|
834
|
-
IndexRotationPeriod:
|
|
835
|
-
BufferingHints:
|
|
836
|
-
RetryOptions:
|
|
837
|
-
S3BackupMode:
|
|
833
|
+
TypeName: ElasticsearchTypeName | None
|
|
834
|
+
IndexRotationPeriod: ElasticsearchIndexRotationPeriod | None
|
|
835
|
+
BufferingHints: ElasticsearchBufferingHints | None
|
|
836
|
+
RetryOptions: ElasticsearchRetryOptions | None
|
|
837
|
+
S3BackupMode: ElasticsearchS3BackupMode | None
|
|
838
838
|
S3Configuration: S3DestinationConfiguration
|
|
839
|
-
ProcessingConfiguration:
|
|
840
|
-
CloudWatchLoggingOptions:
|
|
841
|
-
VpcConfiguration:
|
|
842
|
-
DocumentIdOptions:
|
|
839
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
840
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
841
|
+
VpcConfiguration: VpcConfiguration | None
|
|
842
|
+
DocumentIdOptions: DocumentIdOptions | None
|
|
843
843
|
|
|
844
844
|
|
|
845
845
|
class RedshiftRetryOptions(TypedDict, total=False):
|
|
846
|
-
DurationInSeconds:
|
|
846
|
+
DurationInSeconds: RedshiftRetryDurationInSeconds | None
|
|
847
847
|
|
|
848
848
|
|
|
849
849
|
class RedshiftDestinationConfiguration(TypedDict, total=False):
|
|
850
850
|
RoleARN: RoleARN
|
|
851
851
|
ClusterJDBCURL: ClusterJDBCURL
|
|
852
852
|
CopyCommand: CopyCommand
|
|
853
|
-
Username:
|
|
854
|
-
Password:
|
|
855
|
-
RetryOptions:
|
|
853
|
+
Username: Username | None
|
|
854
|
+
Password: Password | None
|
|
855
|
+
RetryOptions: RedshiftRetryOptions | None
|
|
856
856
|
S3Configuration: S3DestinationConfiguration
|
|
857
|
-
ProcessingConfiguration:
|
|
858
|
-
S3BackupMode:
|
|
859
|
-
S3BackupConfiguration:
|
|
860
|
-
CloudWatchLoggingOptions:
|
|
861
|
-
SecretsManagerConfiguration:
|
|
857
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
858
|
+
S3BackupMode: RedshiftS3BackupMode | None
|
|
859
|
+
S3BackupConfiguration: S3DestinationConfiguration | None
|
|
860
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
861
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
862
862
|
|
|
863
863
|
|
|
864
864
|
class DynamicPartitioningConfiguration(TypedDict, total=False):
|
|
865
|
-
RetryOptions:
|
|
866
|
-
Enabled:
|
|
865
|
+
RetryOptions: RetryOptions | None
|
|
866
|
+
Enabled: BooleanObject | None
|
|
867
867
|
|
|
868
868
|
|
|
869
869
|
class OrcSerDe(TypedDict, total=False):
|
|
870
|
-
StripeSizeBytes:
|
|
871
|
-
BlockSizeBytes:
|
|
872
|
-
RowIndexStride:
|
|
873
|
-
EnablePadding:
|
|
874
|
-
PaddingTolerance:
|
|
875
|
-
Compression:
|
|
876
|
-
BloomFilterColumns:
|
|
877
|
-
BloomFilterFalsePositiveProbability:
|
|
878
|
-
DictionaryKeyThreshold:
|
|
879
|
-
FormatVersion:
|
|
870
|
+
StripeSizeBytes: OrcStripeSizeBytes | None
|
|
871
|
+
BlockSizeBytes: BlockSizeBytes | None
|
|
872
|
+
RowIndexStride: OrcRowIndexStride | None
|
|
873
|
+
EnablePadding: BooleanObject | None
|
|
874
|
+
PaddingTolerance: Proportion | None
|
|
875
|
+
Compression: OrcCompression | None
|
|
876
|
+
BloomFilterColumns: ListOfNonEmptyStringsWithoutWhitespace | None
|
|
877
|
+
BloomFilterFalsePositiveProbability: Proportion | None
|
|
878
|
+
DictionaryKeyThreshold: Proportion | None
|
|
879
|
+
FormatVersion: OrcFormatVersion | None
|
|
880
880
|
|
|
881
881
|
|
|
882
882
|
class ParquetSerDe(TypedDict, total=False):
|
|
883
|
-
BlockSizeBytes:
|
|
884
|
-
PageSizeBytes:
|
|
885
|
-
Compression:
|
|
886
|
-
EnableDictionaryCompression:
|
|
887
|
-
MaxPaddingBytes:
|
|
888
|
-
WriterVersion:
|
|
883
|
+
BlockSizeBytes: BlockSizeBytes | None
|
|
884
|
+
PageSizeBytes: ParquetPageSizeBytes | None
|
|
885
|
+
Compression: ParquetCompression | None
|
|
886
|
+
EnableDictionaryCompression: BooleanObject | None
|
|
887
|
+
MaxPaddingBytes: NonNegativeIntegerObject | None
|
|
888
|
+
WriterVersion: ParquetWriterVersion | None
|
|
889
889
|
|
|
890
890
|
|
|
891
891
|
class Serializer(TypedDict, total=False):
|
|
892
|
-
ParquetSerDe:
|
|
893
|
-
OrcSerDe:
|
|
892
|
+
ParquetSerDe: ParquetSerDe | None
|
|
893
|
+
OrcSerDe: OrcSerDe | None
|
|
894
894
|
|
|
895
895
|
|
|
896
896
|
class OutputFormatConfiguration(TypedDict, total=False):
|
|
897
|
-
Serializer:
|
|
897
|
+
Serializer: Serializer | None
|
|
898
898
|
|
|
899
899
|
|
|
900
|
-
ListOfNonEmptyStrings =
|
|
900
|
+
ListOfNonEmptyStrings = list[NonEmptyString]
|
|
901
901
|
|
|
902
902
|
|
|
903
903
|
class HiveJsonSerDe(TypedDict, total=False):
|
|
904
|
-
TimestampFormats:
|
|
904
|
+
TimestampFormats: ListOfNonEmptyStrings | None
|
|
905
905
|
|
|
906
906
|
|
|
907
907
|
class OpenXJsonSerDe(TypedDict, total=False):
|
|
908
|
-
ConvertDotsInJsonKeysToUnderscores:
|
|
909
|
-
CaseInsensitive:
|
|
910
|
-
ColumnToJsonKeyMappings:
|
|
908
|
+
ConvertDotsInJsonKeysToUnderscores: BooleanObject | None
|
|
909
|
+
CaseInsensitive: BooleanObject | None
|
|
910
|
+
ColumnToJsonKeyMappings: ColumnToJsonKeyMappings | None
|
|
911
911
|
|
|
912
912
|
|
|
913
913
|
class Deserializer(TypedDict, total=False):
|
|
914
|
-
OpenXJsonSerDe:
|
|
915
|
-
HiveJsonSerDe:
|
|
914
|
+
OpenXJsonSerDe: OpenXJsonSerDe | None
|
|
915
|
+
HiveJsonSerDe: HiveJsonSerDe | None
|
|
916
916
|
|
|
917
917
|
|
|
918
918
|
class InputFormatConfiguration(TypedDict, total=False):
|
|
919
|
-
Deserializer:
|
|
919
|
+
Deserializer: Deserializer | None
|
|
920
920
|
|
|
921
921
|
|
|
922
922
|
class SchemaConfiguration(TypedDict, total=False):
|
|
923
|
-
RoleARN:
|
|
924
|
-
CatalogId:
|
|
925
|
-
DatabaseName:
|
|
926
|
-
TableName:
|
|
927
|
-
Region:
|
|
928
|
-
VersionId:
|
|
923
|
+
RoleARN: NonEmptyStringWithoutWhitespace | None
|
|
924
|
+
CatalogId: NonEmptyStringWithoutWhitespace | None
|
|
925
|
+
DatabaseName: NonEmptyStringWithoutWhitespace | None
|
|
926
|
+
TableName: NonEmptyStringWithoutWhitespace | None
|
|
927
|
+
Region: NonEmptyStringWithoutWhitespace | None
|
|
928
|
+
VersionId: NonEmptyStringWithoutWhitespace | None
|
|
929
929
|
|
|
930
930
|
|
|
931
931
|
class DataFormatConversionConfiguration(TypedDict, total=False):
|
|
932
|
-
SchemaConfiguration:
|
|
933
|
-
InputFormatConfiguration:
|
|
934
|
-
OutputFormatConfiguration:
|
|
935
|
-
Enabled:
|
|
932
|
+
SchemaConfiguration: SchemaConfiguration | None
|
|
933
|
+
InputFormatConfiguration: InputFormatConfiguration | None
|
|
934
|
+
OutputFormatConfiguration: OutputFormatConfiguration | None
|
|
935
|
+
Enabled: BooleanObject | None
|
|
936
936
|
|
|
937
937
|
|
|
938
938
|
class ExtendedS3DestinationConfiguration(TypedDict, total=False):
|
|
939
939
|
RoleARN: RoleARN
|
|
940
940
|
BucketARN: BucketARN
|
|
941
|
-
Prefix:
|
|
942
|
-
ErrorOutputPrefix:
|
|
943
|
-
BufferingHints:
|
|
944
|
-
CompressionFormat:
|
|
945
|
-
EncryptionConfiguration:
|
|
946
|
-
CloudWatchLoggingOptions:
|
|
947
|
-
ProcessingConfiguration:
|
|
948
|
-
S3BackupMode:
|
|
949
|
-
S3BackupConfiguration:
|
|
950
|
-
DataFormatConversionConfiguration:
|
|
951
|
-
DynamicPartitioningConfiguration:
|
|
952
|
-
FileExtension:
|
|
953
|
-
CustomTimeZone:
|
|
941
|
+
Prefix: Prefix | None
|
|
942
|
+
ErrorOutputPrefix: ErrorOutputPrefix | None
|
|
943
|
+
BufferingHints: BufferingHints | None
|
|
944
|
+
CompressionFormat: CompressionFormat | None
|
|
945
|
+
EncryptionConfiguration: EncryptionConfiguration | None
|
|
946
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
947
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
948
|
+
S3BackupMode: S3BackupMode | None
|
|
949
|
+
S3BackupConfiguration: S3DestinationConfiguration | None
|
|
950
|
+
DataFormatConversionConfiguration: DataFormatConversionConfiguration | None
|
|
951
|
+
DynamicPartitioningConfiguration: DynamicPartitioningConfiguration | None
|
|
952
|
+
FileExtension: FileExtension | None
|
|
953
|
+
CustomTimeZone: CustomTimeZone | None
|
|
954
954
|
|
|
955
955
|
|
|
956
956
|
class DeliveryStreamEncryptionConfigurationInput(TypedDict, total=False):
|
|
957
|
-
KeyARN:
|
|
957
|
+
KeyARN: AWSKMSKeyARN | None
|
|
958
958
|
KeyType: KeyType
|
|
959
959
|
|
|
960
960
|
|
|
@@ -969,31 +969,31 @@ class DirectPutSourceConfiguration(TypedDict, total=False):
|
|
|
969
969
|
|
|
970
970
|
class CreateDeliveryStreamInput(ServiceRequest):
|
|
971
971
|
DeliveryStreamName: DeliveryStreamName
|
|
972
|
-
DeliveryStreamType:
|
|
973
|
-
DirectPutSourceConfiguration:
|
|
974
|
-
KinesisStreamSourceConfiguration:
|
|
975
|
-
DeliveryStreamEncryptionConfigurationInput:
|
|
976
|
-
S3DestinationConfiguration:
|
|
977
|
-
ExtendedS3DestinationConfiguration:
|
|
978
|
-
RedshiftDestinationConfiguration:
|
|
979
|
-
ElasticsearchDestinationConfiguration:
|
|
980
|
-
AmazonopensearchserviceDestinationConfiguration:
|
|
981
|
-
AmazonopensearchserviceDestinationConfiguration
|
|
982
|
-
|
|
983
|
-
SplunkDestinationConfiguration:
|
|
984
|
-
HttpEndpointDestinationConfiguration:
|
|
985
|
-
Tags:
|
|
986
|
-
AmazonOpenSearchServerlessDestinationConfiguration:
|
|
987
|
-
AmazonOpenSearchServerlessDestinationConfiguration
|
|
988
|
-
|
|
989
|
-
MSKSourceConfiguration:
|
|
990
|
-
SnowflakeDestinationConfiguration:
|
|
991
|
-
IcebergDestinationConfiguration:
|
|
992
|
-
DatabaseSourceConfiguration:
|
|
972
|
+
DeliveryStreamType: DeliveryStreamType | None
|
|
973
|
+
DirectPutSourceConfiguration: DirectPutSourceConfiguration | None
|
|
974
|
+
KinesisStreamSourceConfiguration: KinesisStreamSourceConfiguration | None
|
|
975
|
+
DeliveryStreamEncryptionConfigurationInput: DeliveryStreamEncryptionConfigurationInput | None
|
|
976
|
+
S3DestinationConfiguration: S3DestinationConfiguration | None
|
|
977
|
+
ExtendedS3DestinationConfiguration: ExtendedS3DestinationConfiguration | None
|
|
978
|
+
RedshiftDestinationConfiguration: RedshiftDestinationConfiguration | None
|
|
979
|
+
ElasticsearchDestinationConfiguration: ElasticsearchDestinationConfiguration | None
|
|
980
|
+
AmazonopensearchserviceDestinationConfiguration: (
|
|
981
|
+
AmazonopensearchserviceDestinationConfiguration | None
|
|
982
|
+
)
|
|
983
|
+
SplunkDestinationConfiguration: SplunkDestinationConfiguration | None
|
|
984
|
+
HttpEndpointDestinationConfiguration: HttpEndpointDestinationConfiguration | None
|
|
985
|
+
Tags: TagDeliveryStreamInputTagList | None
|
|
986
|
+
AmazonOpenSearchServerlessDestinationConfiguration: (
|
|
987
|
+
AmazonOpenSearchServerlessDestinationConfiguration | None
|
|
988
|
+
)
|
|
989
|
+
MSKSourceConfiguration: MSKSourceConfiguration | None
|
|
990
|
+
SnowflakeDestinationConfiguration: SnowflakeDestinationConfiguration | None
|
|
991
|
+
IcebergDestinationConfiguration: IcebergDestinationConfiguration | None
|
|
992
|
+
DatabaseSourceConfiguration: DatabaseSourceConfiguration | None
|
|
993
993
|
|
|
994
994
|
|
|
995
995
|
class CreateDeliveryStreamOutput(TypedDict, total=False):
|
|
996
|
-
DeliveryStreamARN:
|
|
996
|
+
DeliveryStreamARN: DeliveryStreamARN | None
|
|
997
997
|
|
|
998
998
|
|
|
999
999
|
Data = bytes
|
|
@@ -1013,30 +1013,30 @@ class DatabaseSnapshotInfo(TypedDict, total=False):
|
|
|
1013
1013
|
RequestTimestamp: Timestamp
|
|
1014
1014
|
RequestedBy: SnapshotRequestedBy
|
|
1015
1015
|
Status: SnapshotStatus
|
|
1016
|
-
FailureDescription:
|
|
1016
|
+
FailureDescription: FailureDescription | None
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
|
-
DatabaseSnapshotInfoList =
|
|
1019
|
+
DatabaseSnapshotInfoList = list[DatabaseSnapshotInfo]
|
|
1020
1020
|
|
|
1021
1021
|
|
|
1022
1022
|
class DatabaseSourceDescription(TypedDict, total=False):
|
|
1023
|
-
Type:
|
|
1024
|
-
Endpoint:
|
|
1025
|
-
Port:
|
|
1026
|
-
SSLMode:
|
|
1027
|
-
Databases:
|
|
1028
|
-
Tables:
|
|
1029
|
-
Columns:
|
|
1030
|
-
SurrogateKeys:
|
|
1031
|
-
SnapshotWatermarkTable:
|
|
1032
|
-
SnapshotInfo:
|
|
1033
|
-
DatabaseSourceAuthenticationConfiguration:
|
|
1034
|
-
DatabaseSourceVPCConfiguration:
|
|
1023
|
+
Type: DatabaseType | None
|
|
1024
|
+
Endpoint: DatabaseEndpoint | None
|
|
1025
|
+
Port: DatabasePort | None
|
|
1026
|
+
SSLMode: SSLMode | None
|
|
1027
|
+
Databases: DatabaseList | None
|
|
1028
|
+
Tables: DatabaseTableList | None
|
|
1029
|
+
Columns: DatabaseColumnList | None
|
|
1030
|
+
SurrogateKeys: DatabaseColumnIncludeOrExcludeList | None
|
|
1031
|
+
SnapshotWatermarkTable: DatabaseTableName | None
|
|
1032
|
+
SnapshotInfo: DatabaseSnapshotInfoList | None
|
|
1033
|
+
DatabaseSourceAuthenticationConfiguration: DatabaseSourceAuthenticationConfiguration | None
|
|
1034
|
+
DatabaseSourceVPCConfiguration: DatabaseSourceVPCConfiguration | None
|
|
1035
1035
|
|
|
1036
1036
|
|
|
1037
1037
|
class DeleteDeliveryStreamInput(ServiceRequest):
|
|
1038
1038
|
DeliveryStreamName: DeliveryStreamName
|
|
1039
|
-
AllowForceDelete:
|
|
1039
|
+
AllowForceDelete: BooleanObject | None
|
|
1040
1040
|
|
|
1041
1041
|
|
|
1042
1042
|
class DeleteDeliveryStreamOutput(TypedDict, total=False):
|
|
@@ -1047,197 +1047,197 @@ DeliveryStartTimestamp = datetime
|
|
|
1047
1047
|
|
|
1048
1048
|
|
|
1049
1049
|
class IcebergDestinationDescription(TypedDict, total=False):
|
|
1050
|
-
DestinationTableConfigurationList:
|
|
1051
|
-
SchemaEvolutionConfiguration:
|
|
1052
|
-
TableCreationConfiguration:
|
|
1053
|
-
BufferingHints:
|
|
1054
|
-
CloudWatchLoggingOptions:
|
|
1055
|
-
ProcessingConfiguration:
|
|
1056
|
-
S3BackupMode:
|
|
1057
|
-
RetryOptions:
|
|
1058
|
-
RoleARN:
|
|
1059
|
-
AppendOnly:
|
|
1060
|
-
CatalogConfiguration:
|
|
1061
|
-
S3DestinationDescription:
|
|
1050
|
+
DestinationTableConfigurationList: DestinationTableConfigurationList | None
|
|
1051
|
+
SchemaEvolutionConfiguration: SchemaEvolutionConfiguration | None
|
|
1052
|
+
TableCreationConfiguration: TableCreationConfiguration | None
|
|
1053
|
+
BufferingHints: BufferingHints | None
|
|
1054
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1055
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1056
|
+
S3BackupMode: IcebergS3BackupMode | None
|
|
1057
|
+
RetryOptions: RetryOptions | None
|
|
1058
|
+
RoleARN: RoleARN | None
|
|
1059
|
+
AppendOnly: BooleanObject | None
|
|
1060
|
+
CatalogConfiguration: CatalogConfiguration | None
|
|
1061
|
+
S3DestinationDescription: S3DestinationDescription | None
|
|
1062
1062
|
|
|
1063
1063
|
|
|
1064
1064
|
class SnowflakeDestinationDescription(TypedDict, total=False):
|
|
1065
|
-
AccountUrl:
|
|
1066
|
-
User:
|
|
1067
|
-
Database:
|
|
1068
|
-
Schema:
|
|
1069
|
-
Table:
|
|
1070
|
-
SnowflakeRoleConfiguration:
|
|
1071
|
-
DataLoadingOption:
|
|
1072
|
-
MetaDataColumnName:
|
|
1073
|
-
ContentColumnName:
|
|
1074
|
-
SnowflakeVpcConfiguration:
|
|
1075
|
-
CloudWatchLoggingOptions:
|
|
1076
|
-
ProcessingConfiguration:
|
|
1077
|
-
RoleARN:
|
|
1078
|
-
RetryOptions:
|
|
1079
|
-
S3BackupMode:
|
|
1080
|
-
S3DestinationDescription:
|
|
1081
|
-
SecretsManagerConfiguration:
|
|
1082
|
-
BufferingHints:
|
|
1065
|
+
AccountUrl: SnowflakeAccountUrl | None
|
|
1066
|
+
User: SnowflakeUser | None
|
|
1067
|
+
Database: SnowflakeDatabase | None
|
|
1068
|
+
Schema: SnowflakeSchema | None
|
|
1069
|
+
Table: SnowflakeTable | None
|
|
1070
|
+
SnowflakeRoleConfiguration: SnowflakeRoleConfiguration | None
|
|
1071
|
+
DataLoadingOption: SnowflakeDataLoadingOption | None
|
|
1072
|
+
MetaDataColumnName: SnowflakeMetaDataColumnName | None
|
|
1073
|
+
ContentColumnName: SnowflakeContentColumnName | None
|
|
1074
|
+
SnowflakeVpcConfiguration: SnowflakeVpcConfiguration | None
|
|
1075
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1076
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1077
|
+
RoleARN: RoleARN | None
|
|
1078
|
+
RetryOptions: SnowflakeRetryOptions | None
|
|
1079
|
+
S3BackupMode: SnowflakeS3BackupMode | None
|
|
1080
|
+
S3DestinationDescription: S3DestinationDescription | None
|
|
1081
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
1082
|
+
BufferingHints: SnowflakeBufferingHints | None
|
|
1083
1083
|
|
|
1084
1084
|
|
|
1085
1085
|
class HttpEndpointDescription(TypedDict, total=False):
|
|
1086
|
-
Url:
|
|
1087
|
-
Name:
|
|
1086
|
+
Url: HttpEndpointUrl | None
|
|
1087
|
+
Name: HttpEndpointName | None
|
|
1088
1088
|
|
|
1089
1089
|
|
|
1090
1090
|
class HttpEndpointDestinationDescription(TypedDict, total=False):
|
|
1091
|
-
EndpointConfiguration:
|
|
1092
|
-
BufferingHints:
|
|
1093
|
-
CloudWatchLoggingOptions:
|
|
1094
|
-
RequestConfiguration:
|
|
1095
|
-
ProcessingConfiguration:
|
|
1096
|
-
RoleARN:
|
|
1097
|
-
RetryOptions:
|
|
1098
|
-
S3BackupMode:
|
|
1099
|
-
S3DestinationDescription:
|
|
1100
|
-
SecretsManagerConfiguration:
|
|
1091
|
+
EndpointConfiguration: HttpEndpointDescription | None
|
|
1092
|
+
BufferingHints: HttpEndpointBufferingHints | None
|
|
1093
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1094
|
+
RequestConfiguration: HttpEndpointRequestConfiguration | None
|
|
1095
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1096
|
+
RoleARN: RoleARN | None
|
|
1097
|
+
RetryOptions: HttpEndpointRetryOptions | None
|
|
1098
|
+
S3BackupMode: HttpEndpointS3BackupMode | None
|
|
1099
|
+
S3DestinationDescription: S3DestinationDescription | None
|
|
1100
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
1101
1101
|
|
|
1102
1102
|
|
|
1103
1103
|
class SplunkDestinationDescription(TypedDict, total=False):
|
|
1104
|
-
HECEndpoint:
|
|
1105
|
-
HECEndpointType:
|
|
1106
|
-
HECToken:
|
|
1107
|
-
HECAcknowledgmentTimeoutInSeconds:
|
|
1108
|
-
RetryOptions:
|
|
1109
|
-
S3BackupMode:
|
|
1110
|
-
S3DestinationDescription:
|
|
1111
|
-
ProcessingConfiguration:
|
|
1112
|
-
CloudWatchLoggingOptions:
|
|
1113
|
-
BufferingHints:
|
|
1114
|
-
SecretsManagerConfiguration:
|
|
1104
|
+
HECEndpoint: HECEndpoint | None
|
|
1105
|
+
HECEndpointType: HECEndpointType | None
|
|
1106
|
+
HECToken: HECToken | None
|
|
1107
|
+
HECAcknowledgmentTimeoutInSeconds: HECAcknowledgmentTimeoutInSeconds | None
|
|
1108
|
+
RetryOptions: SplunkRetryOptions | None
|
|
1109
|
+
S3BackupMode: SplunkS3BackupMode | None
|
|
1110
|
+
S3DestinationDescription: S3DestinationDescription | None
|
|
1111
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1112
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1113
|
+
BufferingHints: SplunkBufferingHints | None
|
|
1114
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
1115
1115
|
|
|
1116
1116
|
|
|
1117
1117
|
class ElasticsearchDestinationDescription(TypedDict, total=False):
|
|
1118
|
-
RoleARN:
|
|
1119
|
-
DomainARN:
|
|
1120
|
-
ClusterEndpoint:
|
|
1121
|
-
IndexName:
|
|
1122
|
-
TypeName:
|
|
1123
|
-
IndexRotationPeriod:
|
|
1124
|
-
BufferingHints:
|
|
1125
|
-
RetryOptions:
|
|
1126
|
-
S3BackupMode:
|
|
1127
|
-
S3DestinationDescription:
|
|
1128
|
-
ProcessingConfiguration:
|
|
1129
|
-
CloudWatchLoggingOptions:
|
|
1130
|
-
VpcConfigurationDescription:
|
|
1131
|
-
DocumentIdOptions:
|
|
1118
|
+
RoleARN: RoleARN | None
|
|
1119
|
+
DomainARN: ElasticsearchDomainARN | None
|
|
1120
|
+
ClusterEndpoint: ElasticsearchClusterEndpoint | None
|
|
1121
|
+
IndexName: ElasticsearchIndexName | None
|
|
1122
|
+
TypeName: ElasticsearchTypeName | None
|
|
1123
|
+
IndexRotationPeriod: ElasticsearchIndexRotationPeriod | None
|
|
1124
|
+
BufferingHints: ElasticsearchBufferingHints | None
|
|
1125
|
+
RetryOptions: ElasticsearchRetryOptions | None
|
|
1126
|
+
S3BackupMode: ElasticsearchS3BackupMode | None
|
|
1127
|
+
S3DestinationDescription: S3DestinationDescription | None
|
|
1128
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1129
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1130
|
+
VpcConfigurationDescription: VpcConfigurationDescription | None
|
|
1131
|
+
DocumentIdOptions: DocumentIdOptions | None
|
|
1132
1132
|
|
|
1133
1133
|
|
|
1134
1134
|
class RedshiftDestinationDescription(TypedDict, total=False):
|
|
1135
1135
|
RoleARN: RoleARN
|
|
1136
1136
|
ClusterJDBCURL: ClusterJDBCURL
|
|
1137
1137
|
CopyCommand: CopyCommand
|
|
1138
|
-
Username:
|
|
1139
|
-
RetryOptions:
|
|
1138
|
+
Username: Username | None
|
|
1139
|
+
RetryOptions: RedshiftRetryOptions | None
|
|
1140
1140
|
S3DestinationDescription: S3DestinationDescription
|
|
1141
|
-
ProcessingConfiguration:
|
|
1142
|
-
S3BackupMode:
|
|
1143
|
-
S3BackupDescription:
|
|
1144
|
-
CloudWatchLoggingOptions:
|
|
1145
|
-
SecretsManagerConfiguration:
|
|
1141
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1142
|
+
S3BackupMode: RedshiftS3BackupMode | None
|
|
1143
|
+
S3BackupDescription: S3DestinationDescription | None
|
|
1144
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1145
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
1146
1146
|
|
|
1147
1147
|
|
|
1148
1148
|
class ExtendedS3DestinationDescription(TypedDict, total=False):
|
|
1149
1149
|
RoleARN: RoleARN
|
|
1150
1150
|
BucketARN: BucketARN
|
|
1151
|
-
Prefix:
|
|
1152
|
-
ErrorOutputPrefix:
|
|
1151
|
+
Prefix: Prefix | None
|
|
1152
|
+
ErrorOutputPrefix: ErrorOutputPrefix | None
|
|
1153
1153
|
BufferingHints: BufferingHints
|
|
1154
1154
|
CompressionFormat: CompressionFormat
|
|
1155
1155
|
EncryptionConfiguration: EncryptionConfiguration
|
|
1156
|
-
CloudWatchLoggingOptions:
|
|
1157
|
-
ProcessingConfiguration:
|
|
1158
|
-
S3BackupMode:
|
|
1159
|
-
S3BackupDescription:
|
|
1160
|
-
DataFormatConversionConfiguration:
|
|
1161
|
-
DynamicPartitioningConfiguration:
|
|
1162
|
-
FileExtension:
|
|
1163
|
-
CustomTimeZone:
|
|
1156
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1157
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1158
|
+
S3BackupMode: S3BackupMode | None
|
|
1159
|
+
S3BackupDescription: S3DestinationDescription | None
|
|
1160
|
+
DataFormatConversionConfiguration: DataFormatConversionConfiguration | None
|
|
1161
|
+
DynamicPartitioningConfiguration: DynamicPartitioningConfiguration | None
|
|
1162
|
+
FileExtension: FileExtension | None
|
|
1163
|
+
CustomTimeZone: CustomTimeZone | None
|
|
1164
1164
|
|
|
1165
1165
|
|
|
1166
1166
|
class DestinationDescription(TypedDict, total=False):
|
|
1167
1167
|
DestinationId: DestinationId
|
|
1168
|
-
S3DestinationDescription:
|
|
1169
|
-
ExtendedS3DestinationDescription:
|
|
1170
|
-
RedshiftDestinationDescription:
|
|
1171
|
-
ElasticsearchDestinationDescription:
|
|
1172
|
-
AmazonopensearchserviceDestinationDescription:
|
|
1173
|
-
AmazonopensearchserviceDestinationDescription
|
|
1174
|
-
|
|
1175
|
-
SplunkDestinationDescription:
|
|
1176
|
-
HttpEndpointDestinationDescription:
|
|
1177
|
-
SnowflakeDestinationDescription:
|
|
1178
|
-
AmazonOpenSearchServerlessDestinationDescription:
|
|
1179
|
-
AmazonOpenSearchServerlessDestinationDescription
|
|
1180
|
-
|
|
1181
|
-
IcebergDestinationDescription:
|
|
1168
|
+
S3DestinationDescription: S3DestinationDescription | None
|
|
1169
|
+
ExtendedS3DestinationDescription: ExtendedS3DestinationDescription | None
|
|
1170
|
+
RedshiftDestinationDescription: RedshiftDestinationDescription | None
|
|
1171
|
+
ElasticsearchDestinationDescription: ElasticsearchDestinationDescription | None
|
|
1172
|
+
AmazonopensearchserviceDestinationDescription: (
|
|
1173
|
+
AmazonopensearchserviceDestinationDescription | None
|
|
1174
|
+
)
|
|
1175
|
+
SplunkDestinationDescription: SplunkDestinationDescription | None
|
|
1176
|
+
HttpEndpointDestinationDescription: HttpEndpointDestinationDescription | None
|
|
1177
|
+
SnowflakeDestinationDescription: SnowflakeDestinationDescription | None
|
|
1178
|
+
AmazonOpenSearchServerlessDestinationDescription: (
|
|
1179
|
+
AmazonOpenSearchServerlessDestinationDescription | None
|
|
1180
|
+
)
|
|
1181
|
+
IcebergDestinationDescription: IcebergDestinationDescription | None
|
|
1182
1182
|
|
|
1183
1183
|
|
|
1184
|
-
DestinationDescriptionList =
|
|
1184
|
+
DestinationDescriptionList = list[DestinationDescription]
|
|
1185
1185
|
|
|
1186
1186
|
|
|
1187
1187
|
class MSKSourceDescription(TypedDict, total=False):
|
|
1188
|
-
MSKClusterARN:
|
|
1189
|
-
TopicName:
|
|
1190
|
-
AuthenticationConfiguration:
|
|
1191
|
-
DeliveryStartTimestamp:
|
|
1192
|
-
ReadFromTimestamp:
|
|
1188
|
+
MSKClusterARN: MSKClusterARN | None
|
|
1189
|
+
TopicName: TopicName | None
|
|
1190
|
+
AuthenticationConfiguration: AuthenticationConfiguration | None
|
|
1191
|
+
DeliveryStartTimestamp: DeliveryStartTimestamp | None
|
|
1192
|
+
ReadFromTimestamp: ReadFromTimestamp | None
|
|
1193
1193
|
|
|
1194
1194
|
|
|
1195
1195
|
class KinesisStreamSourceDescription(TypedDict, total=False):
|
|
1196
|
-
KinesisStreamARN:
|
|
1197
|
-
RoleARN:
|
|
1198
|
-
DeliveryStartTimestamp:
|
|
1196
|
+
KinesisStreamARN: KinesisStreamARN | None
|
|
1197
|
+
RoleARN: RoleARN | None
|
|
1198
|
+
DeliveryStartTimestamp: DeliveryStartTimestamp | None
|
|
1199
1199
|
|
|
1200
1200
|
|
|
1201
1201
|
class DirectPutSourceDescription(TypedDict, total=False):
|
|
1202
|
-
ThroughputHintInMBs:
|
|
1202
|
+
ThroughputHintInMBs: ThroughputHintInMBs | None
|
|
1203
1203
|
|
|
1204
1204
|
|
|
1205
1205
|
class SourceDescription(TypedDict, total=False):
|
|
1206
|
-
DirectPutSourceDescription:
|
|
1207
|
-
KinesisStreamSourceDescription:
|
|
1208
|
-
MSKSourceDescription:
|
|
1209
|
-
DatabaseSourceDescription:
|
|
1206
|
+
DirectPutSourceDescription: DirectPutSourceDescription | None
|
|
1207
|
+
KinesisStreamSourceDescription: KinesisStreamSourceDescription | None
|
|
1208
|
+
MSKSourceDescription: MSKSourceDescription | None
|
|
1209
|
+
DatabaseSourceDescription: DatabaseSourceDescription | None
|
|
1210
1210
|
|
|
1211
1211
|
|
|
1212
1212
|
class DeliveryStreamEncryptionConfiguration(TypedDict, total=False):
|
|
1213
|
-
KeyARN:
|
|
1214
|
-
KeyType:
|
|
1215
|
-
Status:
|
|
1216
|
-
FailureDescription:
|
|
1213
|
+
KeyARN: AWSKMSKeyARN | None
|
|
1214
|
+
KeyType: KeyType | None
|
|
1215
|
+
Status: DeliveryStreamEncryptionStatus | None
|
|
1216
|
+
FailureDescription: FailureDescription | None
|
|
1217
1217
|
|
|
1218
1218
|
|
|
1219
1219
|
class DeliveryStreamDescription(TypedDict, total=False):
|
|
1220
1220
|
DeliveryStreamName: DeliveryStreamName
|
|
1221
1221
|
DeliveryStreamARN: DeliveryStreamARN
|
|
1222
1222
|
DeliveryStreamStatus: DeliveryStreamStatus
|
|
1223
|
-
FailureDescription:
|
|
1224
|
-
DeliveryStreamEncryptionConfiguration:
|
|
1223
|
+
FailureDescription: FailureDescription | None
|
|
1224
|
+
DeliveryStreamEncryptionConfiguration: DeliveryStreamEncryptionConfiguration | None
|
|
1225
1225
|
DeliveryStreamType: DeliveryStreamType
|
|
1226
1226
|
VersionId: DeliveryStreamVersionId
|
|
1227
|
-
CreateTimestamp:
|
|
1228
|
-
LastUpdateTimestamp:
|
|
1229
|
-
Source:
|
|
1227
|
+
CreateTimestamp: Timestamp | None
|
|
1228
|
+
LastUpdateTimestamp: Timestamp | None
|
|
1229
|
+
Source: SourceDescription | None
|
|
1230
1230
|
Destinations: DestinationDescriptionList
|
|
1231
1231
|
HasMoreDestinations: BooleanObject
|
|
1232
1232
|
|
|
1233
1233
|
|
|
1234
|
-
DeliveryStreamNameList =
|
|
1234
|
+
DeliveryStreamNameList = list[DeliveryStreamName]
|
|
1235
1235
|
|
|
1236
1236
|
|
|
1237
1237
|
class DescribeDeliveryStreamInput(ServiceRequest):
|
|
1238
1238
|
DeliveryStreamName: DeliveryStreamName
|
|
1239
|
-
Limit:
|
|
1240
|
-
ExclusiveStartDestinationId:
|
|
1239
|
+
Limit: DescribeDeliveryStreamInputLimit | None
|
|
1240
|
+
ExclusiveStartDestinationId: DestinationId | None
|
|
1241
1241
|
|
|
1242
1242
|
|
|
1243
1243
|
class DescribeDeliveryStreamOutput(TypedDict, total=False):
|
|
@@ -1245,70 +1245,70 @@ class DescribeDeliveryStreamOutput(TypedDict, total=False):
|
|
|
1245
1245
|
|
|
1246
1246
|
|
|
1247
1247
|
class ElasticsearchDestinationUpdate(TypedDict, total=False):
|
|
1248
|
-
RoleARN:
|
|
1249
|
-
DomainARN:
|
|
1250
|
-
ClusterEndpoint:
|
|
1251
|
-
IndexName:
|
|
1252
|
-
TypeName:
|
|
1253
|
-
IndexRotationPeriod:
|
|
1254
|
-
BufferingHints:
|
|
1255
|
-
RetryOptions:
|
|
1256
|
-
S3Update:
|
|
1257
|
-
ProcessingConfiguration:
|
|
1258
|
-
CloudWatchLoggingOptions:
|
|
1259
|
-
DocumentIdOptions:
|
|
1248
|
+
RoleARN: RoleARN | None
|
|
1249
|
+
DomainARN: ElasticsearchDomainARN | None
|
|
1250
|
+
ClusterEndpoint: ElasticsearchClusterEndpoint | None
|
|
1251
|
+
IndexName: ElasticsearchIndexName | None
|
|
1252
|
+
TypeName: ElasticsearchTypeName | None
|
|
1253
|
+
IndexRotationPeriod: ElasticsearchIndexRotationPeriod | None
|
|
1254
|
+
BufferingHints: ElasticsearchBufferingHints | None
|
|
1255
|
+
RetryOptions: ElasticsearchRetryOptions | None
|
|
1256
|
+
S3Update: S3DestinationUpdate | None
|
|
1257
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1258
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1259
|
+
DocumentIdOptions: DocumentIdOptions | None
|
|
1260
1260
|
|
|
1261
1261
|
|
|
1262
1262
|
class ExtendedS3DestinationUpdate(TypedDict, total=False):
|
|
1263
|
-
RoleARN:
|
|
1264
|
-
BucketARN:
|
|
1265
|
-
Prefix:
|
|
1266
|
-
ErrorOutputPrefix:
|
|
1267
|
-
BufferingHints:
|
|
1268
|
-
CompressionFormat:
|
|
1269
|
-
EncryptionConfiguration:
|
|
1270
|
-
CloudWatchLoggingOptions:
|
|
1271
|
-
ProcessingConfiguration:
|
|
1272
|
-
S3BackupMode:
|
|
1273
|
-
S3BackupUpdate:
|
|
1274
|
-
DataFormatConversionConfiguration:
|
|
1275
|
-
DynamicPartitioningConfiguration:
|
|
1276
|
-
FileExtension:
|
|
1277
|
-
CustomTimeZone:
|
|
1263
|
+
RoleARN: RoleARN | None
|
|
1264
|
+
BucketARN: BucketARN | None
|
|
1265
|
+
Prefix: Prefix | None
|
|
1266
|
+
ErrorOutputPrefix: ErrorOutputPrefix | None
|
|
1267
|
+
BufferingHints: BufferingHints | None
|
|
1268
|
+
CompressionFormat: CompressionFormat | None
|
|
1269
|
+
EncryptionConfiguration: EncryptionConfiguration | None
|
|
1270
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1271
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1272
|
+
S3BackupMode: S3BackupMode | None
|
|
1273
|
+
S3BackupUpdate: S3DestinationUpdate | None
|
|
1274
|
+
DataFormatConversionConfiguration: DataFormatConversionConfiguration | None
|
|
1275
|
+
DynamicPartitioningConfiguration: DynamicPartitioningConfiguration | None
|
|
1276
|
+
FileExtension: FileExtension | None
|
|
1277
|
+
CustomTimeZone: CustomTimeZone | None
|
|
1278
1278
|
|
|
1279
1279
|
|
|
1280
1280
|
class HttpEndpointDestinationUpdate(TypedDict, total=False):
|
|
1281
|
-
EndpointConfiguration:
|
|
1282
|
-
BufferingHints:
|
|
1283
|
-
CloudWatchLoggingOptions:
|
|
1284
|
-
RequestConfiguration:
|
|
1285
|
-
ProcessingConfiguration:
|
|
1286
|
-
RoleARN:
|
|
1287
|
-
RetryOptions:
|
|
1288
|
-
S3BackupMode:
|
|
1289
|
-
S3Update:
|
|
1290
|
-
SecretsManagerConfiguration:
|
|
1281
|
+
EndpointConfiguration: HttpEndpointConfiguration | None
|
|
1282
|
+
BufferingHints: HttpEndpointBufferingHints | None
|
|
1283
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1284
|
+
RequestConfiguration: HttpEndpointRequestConfiguration | None
|
|
1285
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1286
|
+
RoleARN: RoleARN | None
|
|
1287
|
+
RetryOptions: HttpEndpointRetryOptions | None
|
|
1288
|
+
S3BackupMode: HttpEndpointS3BackupMode | None
|
|
1289
|
+
S3Update: S3DestinationUpdate | None
|
|
1290
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
1291
1291
|
|
|
1292
1292
|
|
|
1293
1293
|
class IcebergDestinationUpdate(TypedDict, total=False):
|
|
1294
|
-
DestinationTableConfigurationList:
|
|
1295
|
-
SchemaEvolutionConfiguration:
|
|
1296
|
-
TableCreationConfiguration:
|
|
1297
|
-
BufferingHints:
|
|
1298
|
-
CloudWatchLoggingOptions:
|
|
1299
|
-
ProcessingConfiguration:
|
|
1300
|
-
S3BackupMode:
|
|
1301
|
-
RetryOptions:
|
|
1302
|
-
RoleARN:
|
|
1303
|
-
AppendOnly:
|
|
1304
|
-
CatalogConfiguration:
|
|
1305
|
-
S3Configuration:
|
|
1294
|
+
DestinationTableConfigurationList: DestinationTableConfigurationList | None
|
|
1295
|
+
SchemaEvolutionConfiguration: SchemaEvolutionConfiguration | None
|
|
1296
|
+
TableCreationConfiguration: TableCreationConfiguration | None
|
|
1297
|
+
BufferingHints: BufferingHints | None
|
|
1298
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1299
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1300
|
+
S3BackupMode: IcebergS3BackupMode | None
|
|
1301
|
+
RetryOptions: RetryOptions | None
|
|
1302
|
+
RoleARN: RoleARN | None
|
|
1303
|
+
AppendOnly: BooleanObject | None
|
|
1304
|
+
CatalogConfiguration: CatalogConfiguration | None
|
|
1305
|
+
S3Configuration: S3DestinationConfiguration | None
|
|
1306
1306
|
|
|
1307
1307
|
|
|
1308
1308
|
class ListDeliveryStreamsInput(ServiceRequest):
|
|
1309
|
-
Limit:
|
|
1310
|
-
DeliveryStreamType:
|
|
1311
|
-
ExclusiveStartDeliveryStreamName:
|
|
1309
|
+
Limit: ListDeliveryStreamsInputLimit | None
|
|
1310
|
+
DeliveryStreamType: DeliveryStreamType | None
|
|
1311
|
+
ExclusiveStartDeliveryStreamName: DeliveryStreamName | None
|
|
1312
1312
|
|
|
1313
1313
|
|
|
1314
1314
|
class ListDeliveryStreamsOutput(TypedDict, total=False):
|
|
@@ -1318,11 +1318,11 @@ class ListDeliveryStreamsOutput(TypedDict, total=False):
|
|
|
1318
1318
|
|
|
1319
1319
|
class ListTagsForDeliveryStreamInput(ServiceRequest):
|
|
1320
1320
|
DeliveryStreamName: DeliveryStreamName
|
|
1321
|
-
ExclusiveStartTagKey:
|
|
1322
|
-
Limit:
|
|
1321
|
+
ExclusiveStartTagKey: TagKey | None
|
|
1322
|
+
Limit: ListTagsForDeliveryStreamInputLimit | None
|
|
1323
1323
|
|
|
1324
1324
|
|
|
1325
|
-
ListTagsForDeliveryStreamOutputTagList =
|
|
1325
|
+
ListTagsForDeliveryStreamOutputTagList = list[Tag]
|
|
1326
1326
|
|
|
1327
1327
|
|
|
1328
1328
|
class ListTagsForDeliveryStreamOutput(TypedDict, total=False):
|
|
@@ -1334,7 +1334,7 @@ class Record(TypedDict, total=False):
|
|
|
1334
1334
|
Data: Data
|
|
1335
1335
|
|
|
1336
1336
|
|
|
1337
|
-
PutRecordBatchRequestEntryList =
|
|
1337
|
+
PutRecordBatchRequestEntryList = list[Record]
|
|
1338
1338
|
|
|
1339
1339
|
|
|
1340
1340
|
class PutRecordBatchInput(ServiceRequest):
|
|
@@ -1343,17 +1343,17 @@ class PutRecordBatchInput(ServiceRequest):
|
|
|
1343
1343
|
|
|
1344
1344
|
|
|
1345
1345
|
class PutRecordBatchResponseEntry(TypedDict, total=False):
|
|
1346
|
-
RecordId:
|
|
1347
|
-
ErrorCode:
|
|
1348
|
-
ErrorMessage:
|
|
1346
|
+
RecordId: PutResponseRecordId | None
|
|
1347
|
+
ErrorCode: ErrorCode | None
|
|
1348
|
+
ErrorMessage: ErrorMessage | None
|
|
1349
1349
|
|
|
1350
1350
|
|
|
1351
|
-
PutRecordBatchResponseEntryList =
|
|
1351
|
+
PutRecordBatchResponseEntryList = list[PutRecordBatchResponseEntry]
|
|
1352
1352
|
|
|
1353
1353
|
|
|
1354
1354
|
class PutRecordBatchOutput(TypedDict, total=False):
|
|
1355
1355
|
FailedPutCount: NonNegativeIntegerObject
|
|
1356
|
-
Encrypted:
|
|
1356
|
+
Encrypted: BooleanObject | None
|
|
1357
1357
|
RequestResponses: PutRecordBatchResponseEntryList
|
|
1358
1358
|
|
|
1359
1359
|
|
|
@@ -1364,63 +1364,63 @@ class PutRecordInput(ServiceRequest):
|
|
|
1364
1364
|
|
|
1365
1365
|
class PutRecordOutput(TypedDict, total=False):
|
|
1366
1366
|
RecordId: PutResponseRecordId
|
|
1367
|
-
Encrypted:
|
|
1367
|
+
Encrypted: BooleanObject | None
|
|
1368
1368
|
|
|
1369
1369
|
|
|
1370
1370
|
class RedshiftDestinationUpdate(TypedDict, total=False):
|
|
1371
|
-
RoleARN:
|
|
1372
|
-
ClusterJDBCURL:
|
|
1373
|
-
CopyCommand:
|
|
1374
|
-
Username:
|
|
1375
|
-
Password:
|
|
1376
|
-
RetryOptions:
|
|
1377
|
-
S3Update:
|
|
1378
|
-
ProcessingConfiguration:
|
|
1379
|
-
S3BackupMode:
|
|
1380
|
-
S3BackupUpdate:
|
|
1381
|
-
CloudWatchLoggingOptions:
|
|
1382
|
-
SecretsManagerConfiguration:
|
|
1371
|
+
RoleARN: RoleARN | None
|
|
1372
|
+
ClusterJDBCURL: ClusterJDBCURL | None
|
|
1373
|
+
CopyCommand: CopyCommand | None
|
|
1374
|
+
Username: Username | None
|
|
1375
|
+
Password: Password | None
|
|
1376
|
+
RetryOptions: RedshiftRetryOptions | None
|
|
1377
|
+
S3Update: S3DestinationUpdate | None
|
|
1378
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1379
|
+
S3BackupMode: RedshiftS3BackupMode | None
|
|
1380
|
+
S3BackupUpdate: S3DestinationUpdate | None
|
|
1381
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1382
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
1383
1383
|
|
|
1384
1384
|
|
|
1385
1385
|
class SnowflakeDestinationUpdate(TypedDict, total=False):
|
|
1386
|
-
AccountUrl:
|
|
1387
|
-
PrivateKey:
|
|
1388
|
-
KeyPassphrase:
|
|
1389
|
-
User:
|
|
1390
|
-
Database:
|
|
1391
|
-
Schema:
|
|
1392
|
-
Table:
|
|
1393
|
-
SnowflakeRoleConfiguration:
|
|
1394
|
-
DataLoadingOption:
|
|
1395
|
-
MetaDataColumnName:
|
|
1396
|
-
ContentColumnName:
|
|
1397
|
-
CloudWatchLoggingOptions:
|
|
1398
|
-
ProcessingConfiguration:
|
|
1399
|
-
RoleARN:
|
|
1400
|
-
RetryOptions:
|
|
1401
|
-
S3BackupMode:
|
|
1402
|
-
S3Update:
|
|
1403
|
-
SecretsManagerConfiguration:
|
|
1404
|
-
BufferingHints:
|
|
1386
|
+
AccountUrl: SnowflakeAccountUrl | None
|
|
1387
|
+
PrivateKey: SnowflakePrivateKey | None
|
|
1388
|
+
KeyPassphrase: SnowflakeKeyPassphrase | None
|
|
1389
|
+
User: SnowflakeUser | None
|
|
1390
|
+
Database: SnowflakeDatabase | None
|
|
1391
|
+
Schema: SnowflakeSchema | None
|
|
1392
|
+
Table: SnowflakeTable | None
|
|
1393
|
+
SnowflakeRoleConfiguration: SnowflakeRoleConfiguration | None
|
|
1394
|
+
DataLoadingOption: SnowflakeDataLoadingOption | None
|
|
1395
|
+
MetaDataColumnName: SnowflakeMetaDataColumnName | None
|
|
1396
|
+
ContentColumnName: SnowflakeContentColumnName | None
|
|
1397
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1398
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1399
|
+
RoleARN: RoleARN | None
|
|
1400
|
+
RetryOptions: SnowflakeRetryOptions | None
|
|
1401
|
+
S3BackupMode: SnowflakeS3BackupMode | None
|
|
1402
|
+
S3Update: S3DestinationUpdate | None
|
|
1403
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
1404
|
+
BufferingHints: SnowflakeBufferingHints | None
|
|
1405
1405
|
|
|
1406
1406
|
|
|
1407
1407
|
class SplunkDestinationUpdate(TypedDict, total=False):
|
|
1408
|
-
HECEndpoint:
|
|
1409
|
-
HECEndpointType:
|
|
1410
|
-
HECToken:
|
|
1411
|
-
HECAcknowledgmentTimeoutInSeconds:
|
|
1412
|
-
RetryOptions:
|
|
1413
|
-
S3BackupMode:
|
|
1414
|
-
S3Update:
|
|
1415
|
-
ProcessingConfiguration:
|
|
1416
|
-
CloudWatchLoggingOptions:
|
|
1417
|
-
BufferingHints:
|
|
1418
|
-
SecretsManagerConfiguration:
|
|
1408
|
+
HECEndpoint: HECEndpoint | None
|
|
1409
|
+
HECEndpointType: HECEndpointType | None
|
|
1410
|
+
HECToken: HECToken | None
|
|
1411
|
+
HECAcknowledgmentTimeoutInSeconds: HECAcknowledgmentTimeoutInSeconds | None
|
|
1412
|
+
RetryOptions: SplunkRetryOptions | None
|
|
1413
|
+
S3BackupMode: SplunkS3BackupMode | None
|
|
1414
|
+
S3Update: S3DestinationUpdate | None
|
|
1415
|
+
ProcessingConfiguration: ProcessingConfiguration | None
|
|
1416
|
+
CloudWatchLoggingOptions: CloudWatchLoggingOptions | None
|
|
1417
|
+
BufferingHints: SplunkBufferingHints | None
|
|
1418
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | None
|
|
1419
1419
|
|
|
1420
1420
|
|
|
1421
1421
|
class StartDeliveryStreamEncryptionInput(ServiceRequest):
|
|
1422
1422
|
DeliveryStreamName: DeliveryStreamName
|
|
1423
|
-
DeliveryStreamEncryptionConfigurationInput:
|
|
1423
|
+
DeliveryStreamEncryptionConfigurationInput: DeliveryStreamEncryptionConfigurationInput | None
|
|
1424
1424
|
|
|
1425
1425
|
|
|
1426
1426
|
class StartDeliveryStreamEncryptionOutput(TypedDict, total=False):
|
|
@@ -1444,7 +1444,7 @@ class TagDeliveryStreamOutput(TypedDict, total=False):
|
|
|
1444
1444
|
pass
|
|
1445
1445
|
|
|
1446
1446
|
|
|
1447
|
-
TagKeyList =
|
|
1447
|
+
TagKeyList = list[TagKey]
|
|
1448
1448
|
|
|
1449
1449
|
|
|
1450
1450
|
class UntagDeliveryStreamInput(ServiceRequest):
|
|
@@ -1460,18 +1460,16 @@ class UpdateDestinationInput(ServiceRequest):
|
|
|
1460
1460
|
DeliveryStreamName: DeliveryStreamName
|
|
1461
1461
|
CurrentDeliveryStreamVersionId: DeliveryStreamVersionId
|
|
1462
1462
|
DestinationId: DestinationId
|
|
1463
|
-
S3DestinationUpdate:
|
|
1464
|
-
ExtendedS3DestinationUpdate:
|
|
1465
|
-
RedshiftDestinationUpdate:
|
|
1466
|
-
ElasticsearchDestinationUpdate:
|
|
1467
|
-
AmazonopensearchserviceDestinationUpdate:
|
|
1468
|
-
SplunkDestinationUpdate:
|
|
1469
|
-
HttpEndpointDestinationUpdate:
|
|
1470
|
-
AmazonOpenSearchServerlessDestinationUpdate:
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
SnowflakeDestinationUpdate: Optional[SnowflakeDestinationUpdate]
|
|
1474
|
-
IcebergDestinationUpdate: Optional[IcebergDestinationUpdate]
|
|
1463
|
+
S3DestinationUpdate: S3DestinationUpdate | None
|
|
1464
|
+
ExtendedS3DestinationUpdate: ExtendedS3DestinationUpdate | None
|
|
1465
|
+
RedshiftDestinationUpdate: RedshiftDestinationUpdate | None
|
|
1466
|
+
ElasticsearchDestinationUpdate: ElasticsearchDestinationUpdate | None
|
|
1467
|
+
AmazonopensearchserviceDestinationUpdate: AmazonopensearchserviceDestinationUpdate | None
|
|
1468
|
+
SplunkDestinationUpdate: SplunkDestinationUpdate | None
|
|
1469
|
+
HttpEndpointDestinationUpdate: HttpEndpointDestinationUpdate | None
|
|
1470
|
+
AmazonOpenSearchServerlessDestinationUpdate: AmazonOpenSearchServerlessDestinationUpdate | None
|
|
1471
|
+
SnowflakeDestinationUpdate: SnowflakeDestinationUpdate | None
|
|
1472
|
+
IcebergDestinationUpdate: IcebergDestinationUpdate | None
|
|
1475
1473
|
|
|
1476
1474
|
|
|
1477
1475
|
class UpdateDestinationOutput(TypedDict, total=False):
|
|
@@ -1479,8 +1477,8 @@ class UpdateDestinationOutput(TypedDict, total=False):
|
|
|
1479
1477
|
|
|
1480
1478
|
|
|
1481
1479
|
class FirehoseApi:
|
|
1482
|
-
service = "firehose"
|
|
1483
|
-
version = "2015-08-04"
|
|
1480
|
+
service: str = "firehose"
|
|
1481
|
+
version: str = "2015-08-04"
|
|
1484
1482
|
|
|
1485
1483
|
@handler("CreateDeliveryStream")
|
|
1486
1484
|
def create_delivery_stream(
|