aws-cdk-lib 2.175.1__py3-none-any.whl → 2.177.0__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 aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +26 -7
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.175.1.jsii.tgz → aws-cdk-lib@2.177.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +161 -9
- aws_cdk/aws_appconfig/__init__.py +106 -24
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_backup/__init__.py +18 -84
- aws_cdk/aws_batch/__init__.py +4 -2
- aws_cdk/aws_bedrock/__init__.py +5395 -2508
- aws_cdk/aws_cleanrooms/__init__.py +77 -34
- aws_cdk/aws_cloudformation/__init__.py +4 -2
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_cloudfront/experimental/__init__.py +1 -1
- aws_cdk/aws_cloudfront_origins/__init__.py +33 -2
- aws_cdk/aws_cloudwatch/__init__.py +53 -49
- aws_cdk/aws_codebuild/__init__.py +36 -0
- aws_cdk/aws_codepipeline/__init__.py +35 -0
- aws_cdk/aws_cognito/__init__.py +285 -253
- aws_cdk/aws_customerprofiles/__init__.py +1060 -0
- aws_cdk/aws_datazone/__init__.py +195 -125
- aws_cdk/aws_docdb/__init__.py +29 -9
- aws_cdk/aws_dynamodb/__init__.py +77 -58
- aws_cdk/aws_ec2/__init__.py +16 -11
- aws_cdk/aws_ecs/__init__.py +127 -43
- aws_cdk/aws_efs/__init__.py +5 -5
- aws_cdk/aws_eks/__init__.py +24 -3
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +41 -5
- aws_cdk/aws_emrserverless/__init__.py +86 -0
- aws_cdk/aws_fms/__init__.py +42 -0
- aws_cdk/aws_gamelift/__init__.py +8 -10
- aws_cdk/aws_healthlake/__init__.py +36 -40
- aws_cdk/aws_iam/__init__.py +8 -0
- aws_cdk/aws_imagebuilder/__init__.py +62 -48
- aws_cdk/aws_lambda/__init__.py +21 -8
- aws_cdk/aws_lambda_event_sources/__init__.py +9 -9
- aws_cdk/aws_lex/__init__.py +105 -0
- aws_cdk/aws_logs/__init__.py +59 -59
- aws_cdk/aws_mediaconvert/__init__.py +7 -3
- aws_cdk/aws_notifications/__init__.py +1390 -0
- aws_cdk/aws_notificationscontacts/__init__.py +593 -0
- aws_cdk/aws_organizations/__init__.py +5 -9
- aws_cdk/aws_rds/__init__.py +99 -30
- aws_cdk/aws_redshift/__init__.py +9 -5
- aws_cdk/aws_resiliencehub/__init__.py +41 -0
- aws_cdk/aws_route53/__init__.py +4 -4
- aws_cdk/aws_route53_targets/__init__.py +15 -15
- aws_cdk/aws_s3/__init__.py +794 -5
- aws_cdk/aws_s3_notifications/__init__.py +5 -5
- aws_cdk/aws_s3tables/__init__.py +2 -2
- aws_cdk/aws_ses/__init__.py +25 -4
- aws_cdk/aws_sns/__init__.py +39 -0
- aws_cdk/aws_ssm/__init__.py +14 -7
- aws_cdk/aws_ssmquicksetup/__init__.py +84 -84
- aws_cdk/aws_sso/__init__.py +9 -5
- aws_cdk/aws_synthetics/__init__.py +105 -32
- aws_cdk/cloud_assembly_schema/__init__.py +63 -4
- aws_cdk/cx_api/__init__.py +69 -8
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/RECORD +63 -62
- aws_cdk/aws_iot1click/__init__.py +0 -1193
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -11,6 +11,19 @@ fn = lambda_.Function(self, "MyFunction",
|
|
|
11
11
|
)
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
When deployed, this construct creates or updates an existing
|
|
15
|
+
`AWS::Lambda::Function` resource. When updating, AWS CloudFormation calls the
|
|
16
|
+
[UpdateFunctionConfiguration](https://docs.aws.amazon.com/lambda/latest/api/API_UpdateFunctionConfiguration.html)
|
|
17
|
+
and [UpdateFunctionCode](https://docs.aws.amazon.com/lambda/latest/api/API_UpdateFunctionCode.html)
|
|
18
|
+
Lambda APIs under the hood. Because these calls happen sequentially, and
|
|
19
|
+
invocations can happen between these calls, your function may encounter errors
|
|
20
|
+
in the time between the calls. For example, if you update an existing Lambda
|
|
21
|
+
function by removing an environment variable and the code that references that
|
|
22
|
+
environment variable in the same CDK deployment, you may see invocation errors
|
|
23
|
+
related to a missing environment variable. To work around this, you can invoke
|
|
24
|
+
your function against a version or alias by default, rather than the `$LATEST`
|
|
25
|
+
version.
|
|
26
|
+
|
|
14
27
|
## Handler Code
|
|
15
28
|
|
|
16
29
|
The `lambda.Code` class includes static convenience methods for various types of
|
|
@@ -13413,7 +13426,7 @@ class EventSourceMappingOptions:
|
|
|
13413
13426
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
13414
13427
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
13415
13428
|
:param kafka_bootstrap_servers: A list of host and port pairs that are the addresses of the Kafka brokers in a self managed "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. They are in the format ``abc.example.com:9096``. Default: - none
|
|
13416
|
-
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
13429
|
+
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_. Default: - none
|
|
13417
13430
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
13418
13431
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5) Default: Duration.seconds(0)
|
|
13419
13432
|
:param max_concurrency: The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke. Default: - No specific limit.
|
|
@@ -13644,7 +13657,7 @@ class EventSourceMappingOptions:
|
|
|
13644
13657
|
def kafka_consumer_group_id(self) -> typing.Optional[builtins.str]:
|
|
13645
13658
|
'''The identifier for the Kafka consumer group to join.
|
|
13646
13659
|
|
|
13647
|
-
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
13660
|
+
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_.
|
|
13648
13661
|
|
|
13649
13662
|
:default: - none
|
|
13650
13663
|
|
|
@@ -13913,7 +13926,7 @@ class EventSourceMappingProps(EventSourceMappingOptions):
|
|
|
13913
13926
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
13914
13927
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
13915
13928
|
:param kafka_bootstrap_servers: A list of host and port pairs that are the addresses of the Kafka brokers in a self managed "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. They are in the format ``abc.example.com:9096``. Default: - none
|
|
13916
|
-
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
13929
|
+
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_. Default: - none
|
|
13917
13930
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
13918
13931
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5) Default: Duration.seconds(0)
|
|
13919
13932
|
:param max_concurrency: The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke. Default: - No specific limit.
|
|
@@ -14152,7 +14165,7 @@ class EventSourceMappingProps(EventSourceMappingOptions):
|
|
|
14152
14165
|
def kafka_consumer_group_id(self) -> typing.Optional[builtins.str]:
|
|
14153
14166
|
'''The identifier for the Kafka consumer group to join.
|
|
14154
14167
|
|
|
14155
|
-
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
14168
|
+
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_.
|
|
14156
14169
|
|
|
14157
14170
|
:default: - none
|
|
14158
14171
|
|
|
@@ -17787,7 +17800,7 @@ class IFunction(
|
|
|
17787
17800
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
17788
17801
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
17789
17802
|
:param kafka_bootstrap_servers: A list of host and port pairs that are the addresses of the Kafka brokers in a self managed "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. They are in the format ``abc.example.com:9096``. Default: - none
|
|
17790
|
-
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
17803
|
+
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_. Default: - none
|
|
17791
17804
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
17792
17805
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5) Default: Duration.seconds(0)
|
|
17793
17806
|
:param max_concurrency: The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke. Default: - No specific limit.
|
|
@@ -18229,7 +18242,7 @@ class _IFunctionProxy(
|
|
|
18229
18242
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
18230
18243
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
18231
18244
|
:param kafka_bootstrap_servers: A list of host and port pairs that are the addresses of the Kafka brokers in a self managed "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. They are in the format ``abc.example.com:9096``. Default: - none
|
|
18232
|
-
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
18245
|
+
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_. Default: - none
|
|
18233
18246
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
18234
18247
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5) Default: Duration.seconds(0)
|
|
18235
18248
|
:param max_concurrency: The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke. Default: - No specific limit.
|
|
@@ -25806,7 +25819,7 @@ class EventSourceMapping(
|
|
|
25806
25819
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
25807
25820
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
25808
25821
|
:param kafka_bootstrap_servers: A list of host and port pairs that are the addresses of the Kafka brokers in a self managed "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. They are in the format ``abc.example.com:9096``. Default: - none
|
|
25809
|
-
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
25822
|
+
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_. Default: - none
|
|
25810
25823
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
25811
25824
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5) Default: Duration.seconds(0)
|
|
25812
25825
|
:param max_concurrency: The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke. Default: - No specific limit.
|
|
@@ -25984,7 +25997,7 @@ class FunctionBase(
|
|
|
25984
25997
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
25985
25998
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
25986
25999
|
:param kafka_bootstrap_servers: A list of host and port pairs that are the addresses of the Kafka brokers in a self managed "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. They are in the format ``abc.example.com:9096``. Default: - none
|
|
25987
|
-
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
26000
|
+
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_. Default: - none
|
|
25988
26001
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
25989
26002
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5) Default: Duration.seconds(0)
|
|
25990
26003
|
:param max_concurrency: The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke. Default: - No specific limit.
|
|
@@ -831,7 +831,7 @@ class KafkaEventSourceProps(BaseStreamEventSourceProps):
|
|
|
831
831
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5). Default: - Duration.seconds(0) for Kinesis, DynamoDB, and SQS event sources, Duration.millis(500) for MSK, self-managed Kafka, and Amazon MQ.
|
|
832
832
|
:param provisioned_poller_config: Configuration for provisioned pollers that read from the event source. When specified, allows control over the minimum and maximum number of pollers that can be provisioned to process events from the source. Default: - no provisioned pollers
|
|
833
833
|
:param topic: The Kafka topic to subscribe to.
|
|
834
|
-
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
834
|
+
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. Default: - none
|
|
835
835
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
836
836
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
837
837
|
:param on_failure: Add an on Failure Destination for this Kafka event. SNS/SQS/S3 are supported Default: - discarded records are ignored
|
|
@@ -985,7 +985,7 @@ class KafkaEventSourceProps(BaseStreamEventSourceProps):
|
|
|
985
985
|
def consumer_group_id(self) -> typing.Optional[builtins.str]:
|
|
986
986
|
'''The identifier for the Kafka consumer group to join.
|
|
987
987
|
|
|
988
|
-
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
988
|
+
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'.
|
|
989
989
|
|
|
990
990
|
:default: - none
|
|
991
991
|
|
|
@@ -1093,7 +1093,7 @@ class ManagedKafkaEventSourceProps(KafkaEventSourceProps):
|
|
|
1093
1093
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5). Default: - Duration.seconds(0) for Kinesis, DynamoDB, and SQS event sources, Duration.millis(500) for MSK, self-managed Kafka, and Amazon MQ.
|
|
1094
1094
|
:param provisioned_poller_config: Configuration for provisioned pollers that read from the event source. When specified, allows control over the minimum and maximum number of pollers that can be provisioned to process events from the source. Default: - no provisioned pollers
|
|
1095
1095
|
:param topic: The Kafka topic to subscribe to.
|
|
1096
|
-
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
1096
|
+
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. Default: - none
|
|
1097
1097
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
1098
1098
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
1099
1099
|
:param on_failure: Add an on Failure Destination for this Kafka event. SNS/SQS/S3 are supported Default: - discarded records are ignored
|
|
@@ -1239,7 +1239,7 @@ class ManagedKafkaEventSourceProps(KafkaEventSourceProps):
|
|
|
1239
1239
|
def consumer_group_id(self) -> typing.Optional[builtins.str]:
|
|
1240
1240
|
'''The identifier for the Kafka consumer group to join.
|
|
1241
1241
|
|
|
1242
|
-
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
1242
|
+
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'.
|
|
1243
1243
|
|
|
1244
1244
|
:default: - none
|
|
1245
1245
|
|
|
@@ -1698,7 +1698,7 @@ class SelfManagedKafkaEventSourceProps(KafkaEventSourceProps):
|
|
|
1698
1698
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5). Default: - Duration.seconds(0) for Kinesis, DynamoDB, and SQS event sources, Duration.millis(500) for MSK, self-managed Kafka, and Amazon MQ.
|
|
1699
1699
|
:param provisioned_poller_config: Configuration for provisioned pollers that read from the event source. When specified, allows control over the minimum and maximum number of pollers that can be provisioned to process events from the source. Default: - no provisioned pollers
|
|
1700
1700
|
:param topic: The Kafka topic to subscribe to.
|
|
1701
|
-
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
1701
|
+
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. Default: - none
|
|
1702
1702
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
1703
1703
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
1704
1704
|
:param on_failure: Add an on Failure Destination for this Kafka event. SNS/SQS/S3 are supported Default: - discarded records are ignored
|
|
@@ -1869,7 +1869,7 @@ class SelfManagedKafkaEventSourceProps(KafkaEventSourceProps):
|
|
|
1869
1869
|
def consumer_group_id(self) -> typing.Optional[builtins.str]:
|
|
1870
1870
|
'''The identifier for the Kafka consumer group to join.
|
|
1871
1871
|
|
|
1872
|
-
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
1872
|
+
The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'.
|
|
1873
1873
|
|
|
1874
1874
|
:default: - none
|
|
1875
1875
|
|
|
@@ -2646,7 +2646,7 @@ class StreamEventSource(
|
|
|
2646
2646
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
2647
2647
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
2648
2648
|
:param kafka_bootstrap_servers: A list of host and port pairs that are the addresses of the Kafka brokers in a self managed "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. They are in the format ``abc.example.com:9096``. Default: - none
|
|
2649
|
-
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
2649
|
+
:param kafka_consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. For more information, see `Customizable consumer group ID <https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id>`_. Default: - none
|
|
2650
2650
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
2651
2651
|
:param max_batching_window: The maximum amount of time to gather records before invoking the function. Maximum of Duration.minutes(5) Default: Duration.seconds(0)
|
|
2652
2652
|
:param max_concurrency: The maximum concurrency setting limits the number of concurrent instances of the function that an Amazon SQS event source can invoke. Default: - No specific limit.
|
|
@@ -3993,7 +3993,7 @@ class ManagedKafkaEventSource(
|
|
|
3993
3993
|
'''
|
|
3994
3994
|
:param cluster_arn: An MSK cluster construct.
|
|
3995
3995
|
:param topic: The Kafka topic to subscribe to.
|
|
3996
|
-
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
3996
|
+
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. Default: - none
|
|
3997
3997
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
3998
3998
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
3999
3999
|
:param on_failure: Add an on Failure Destination for this Kafka event. SNS/SQS/S3 are supported Default: - discarded records are ignored
|
|
@@ -4112,7 +4112,7 @@ class SelfManagedKafkaEventSource(
|
|
|
4112
4112
|
:param vpc: If your Kafka brokers are only reachable via VPC provide the VPC here. Default: none
|
|
4113
4113
|
:param vpc_subnets: If your Kafka brokers are only reachable via VPC, provide the subnets selection here. Default: - none, required if setting vpc
|
|
4114
4114
|
:param topic: The Kafka topic to subscribe to.
|
|
4115
|
-
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a
|
|
4115
|
+
:param consumer_group_id: The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. The value must have a length between 1 and 200 and full the pattern '[a-zA-Z0-9-/*:_+=.@-]*'. Default: - none
|
|
4116
4116
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
4117
4117
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
4118
4118
|
:param on_failure: Add an on Failure Destination for this Kafka event. SNS/SQS/S3 are supported Default: - discarded records are ignored
|
aws_cdk/aws_lex/__init__.py
CHANGED
|
@@ -104,6 +104,7 @@ class CfnBot(
|
|
|
104
104
|
bot_locales: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnBot.BotLocaleProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
105
105
|
bot_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
106
106
|
description: typing.Optional[builtins.str] = None,
|
|
107
|
+
replication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnBot.ReplicationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
107
108
|
test_bot_alias_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnBot.TestBotAliasSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
108
109
|
test_bot_alias_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
109
110
|
) -> None:
|
|
@@ -119,6 +120,7 @@ class CfnBot(
|
|
|
119
120
|
:param bot_locales: A list of locales for the bot.
|
|
120
121
|
:param bot_tags: A list of tags to add to the bot. You can only add tags when you import a bot. You can't use the ``UpdateBot`` operation to update tags. To update tags, use the ``TagResource`` operation.
|
|
121
122
|
:param description: The description of the version.
|
|
123
|
+
:param replication: Parameter used to create a replication of the source bot in the secondary region.
|
|
122
124
|
:param test_bot_alias_settings: Specifies configuration settings for the alias used to test the bot. If the ``TestBotAliasSettings`` property is not specified, the settings are configured with default values.
|
|
123
125
|
:param test_bot_alias_tags: A list of tags to add to the test alias for a bot. You can only add tags when you import a bot. You can't use the ``UpdateAlias`` operation to update tags. To update tags on the test alias, use the ``TagResource`` operation.
|
|
124
126
|
'''
|
|
@@ -136,6 +138,7 @@ class CfnBot(
|
|
|
136
138
|
bot_locales=bot_locales,
|
|
137
139
|
bot_tags=bot_tags,
|
|
138
140
|
description=description,
|
|
141
|
+
replication=replication,
|
|
139
142
|
test_bot_alias_settings=test_bot_alias_settings,
|
|
140
143
|
test_bot_alias_tags=test_bot_alias_tags,
|
|
141
144
|
)
|
|
@@ -332,6 +335,24 @@ class CfnBot(
|
|
|
332
335
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
333
336
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
334
337
|
|
|
338
|
+
@builtins.property
|
|
339
|
+
@jsii.member(jsii_name="replication")
|
|
340
|
+
def replication(
|
|
341
|
+
self,
|
|
342
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnBot.ReplicationProperty"]]:
|
|
343
|
+
'''Parameter used to create a replication of the source bot in the secondary region.'''
|
|
344
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnBot.ReplicationProperty"]], jsii.get(self, "replication"))
|
|
345
|
+
|
|
346
|
+
@replication.setter
|
|
347
|
+
def replication(
|
|
348
|
+
self,
|
|
349
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnBot.ReplicationProperty"]],
|
|
350
|
+
) -> None:
|
|
351
|
+
if __debug__:
|
|
352
|
+
type_hints = typing.get_type_hints(_typecheckingstub__216cef1fd41900705f9b354338869c1eb4c662dac7d796bbff78b6110634e068)
|
|
353
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
354
|
+
jsii.set(self, "replication", value) # pyright: ignore[reportArgumentType]
|
|
355
|
+
|
|
335
356
|
@builtins.property
|
|
336
357
|
@jsii.member(jsii_name="testBotAliasSettings")
|
|
337
358
|
def test_bot_alias_settings(
|
|
@@ -6515,6 +6536,58 @@ class CfnBot(
|
|
|
6515
6536
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
6516
6537
|
)
|
|
6517
6538
|
|
|
6539
|
+
@jsii.data_type(
|
|
6540
|
+
jsii_type="aws-cdk-lib.aws_lex.CfnBot.ReplicationProperty",
|
|
6541
|
+
jsii_struct_bases=[],
|
|
6542
|
+
name_mapping={"replica_regions": "replicaRegions"},
|
|
6543
|
+
)
|
|
6544
|
+
class ReplicationProperty:
|
|
6545
|
+
def __init__(self, *, replica_regions: typing.Sequence[builtins.str]) -> None:
|
|
6546
|
+
'''Parameter used to create a replication of the source bot in the secondary region.
|
|
6547
|
+
|
|
6548
|
+
:param replica_regions: List of secondary regions for bot replication.
|
|
6549
|
+
|
|
6550
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-replication.html
|
|
6551
|
+
:exampleMetadata: fixture=_generated
|
|
6552
|
+
|
|
6553
|
+
Example::
|
|
6554
|
+
|
|
6555
|
+
# The code below shows an example of how to instantiate this type.
|
|
6556
|
+
# The values are placeholders you should change.
|
|
6557
|
+
from aws_cdk import aws_lex as lex
|
|
6558
|
+
|
|
6559
|
+
replication_property = lex.CfnBot.ReplicationProperty(
|
|
6560
|
+
replica_regions=["replicaRegions"]
|
|
6561
|
+
)
|
|
6562
|
+
'''
|
|
6563
|
+
if __debug__:
|
|
6564
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7d77a453a1c9a0bcd03b5f52ef3ee4f9d80b3c79a6f18fa61d4b870e462ea121)
|
|
6565
|
+
check_type(argname="argument replica_regions", value=replica_regions, expected_type=type_hints["replica_regions"])
|
|
6566
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
6567
|
+
"replica_regions": replica_regions,
|
|
6568
|
+
}
|
|
6569
|
+
|
|
6570
|
+
@builtins.property
|
|
6571
|
+
def replica_regions(self) -> typing.List[builtins.str]:
|
|
6572
|
+
'''List of secondary regions for bot replication.
|
|
6573
|
+
|
|
6574
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-replication.html#cfn-lex-bot-replication-replicaregions
|
|
6575
|
+
'''
|
|
6576
|
+
result = self._values.get("replica_regions")
|
|
6577
|
+
assert result is not None, "Required property 'replica_regions' is missing"
|
|
6578
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
6579
|
+
|
|
6580
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6581
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
6582
|
+
|
|
6583
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
6584
|
+
return not (rhs == self)
|
|
6585
|
+
|
|
6586
|
+
def __repr__(self) -> str:
|
|
6587
|
+
return "ReplicationProperty(%s)" % ", ".join(
|
|
6588
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
6589
|
+
)
|
|
6590
|
+
|
|
6518
6591
|
@jsii.data_type(
|
|
6519
6592
|
jsii_type="aws-cdk-lib.aws_lex.CfnBot.ResponseSpecificationProperty",
|
|
6520
6593
|
jsii_struct_bases=[],
|
|
@@ -10768,6 +10841,7 @@ class CfnBotAliasProps:
|
|
|
10768
10841
|
"bot_locales": "botLocales",
|
|
10769
10842
|
"bot_tags": "botTags",
|
|
10770
10843
|
"description": "description",
|
|
10844
|
+
"replication": "replication",
|
|
10771
10845
|
"test_bot_alias_settings": "testBotAliasSettings",
|
|
10772
10846
|
"test_bot_alias_tags": "testBotAliasTags",
|
|
10773
10847
|
},
|
|
@@ -10785,6 +10859,7 @@ class CfnBotProps:
|
|
|
10785
10859
|
bot_locales: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.BotLocaleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10786
10860
|
bot_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10787
10861
|
description: typing.Optional[builtins.str] = None,
|
|
10862
|
+
replication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.ReplicationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10788
10863
|
test_bot_alias_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.TestBotAliasSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10789
10864
|
test_bot_alias_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10790
10865
|
) -> None:
|
|
@@ -10799,6 +10874,7 @@ class CfnBotProps:
|
|
|
10799
10874
|
:param bot_locales: A list of locales for the bot.
|
|
10800
10875
|
:param bot_tags: A list of tags to add to the bot. You can only add tags when you import a bot. You can't use the ``UpdateBot`` operation to update tags. To update tags, use the ``TagResource`` operation.
|
|
10801
10876
|
:param description: The description of the version.
|
|
10877
|
+
:param replication: Parameter used to create a replication of the source bot in the secondary region.
|
|
10802
10878
|
:param test_bot_alias_settings: Specifies configuration settings for the alias used to test the bot. If the ``TestBotAliasSettings`` property is not specified, the settings are configured with default values.
|
|
10803
10879
|
:param test_bot_alias_tags: A list of tags to add to the test alias for a bot. You can only add tags when you import a bot. You can't use the ``UpdateAlias`` operation to update tags. To update tags on the test alias, use the ``TagResource`` operation.
|
|
10804
10880
|
|
|
@@ -10820,6 +10896,7 @@ class CfnBotProps:
|
|
|
10820
10896
|
check_type(argname="argument bot_locales", value=bot_locales, expected_type=type_hints["bot_locales"])
|
|
10821
10897
|
check_type(argname="argument bot_tags", value=bot_tags, expected_type=type_hints["bot_tags"])
|
|
10822
10898
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
10899
|
+
check_type(argname="argument replication", value=replication, expected_type=type_hints["replication"])
|
|
10823
10900
|
check_type(argname="argument test_bot_alias_settings", value=test_bot_alias_settings, expected_type=type_hints["test_bot_alias_settings"])
|
|
10824
10901
|
check_type(argname="argument test_bot_alias_tags", value=test_bot_alias_tags, expected_type=type_hints["test_bot_alias_tags"])
|
|
10825
10902
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -10838,6 +10915,8 @@ class CfnBotProps:
|
|
|
10838
10915
|
self._values["bot_tags"] = bot_tags
|
|
10839
10916
|
if description is not None:
|
|
10840
10917
|
self._values["description"] = description
|
|
10918
|
+
if replication is not None:
|
|
10919
|
+
self._values["replication"] = replication
|
|
10841
10920
|
if test_bot_alias_settings is not None:
|
|
10842
10921
|
self._values["test_bot_alias_settings"] = test_bot_alias_settings
|
|
10843
10922
|
if test_bot_alias_tags is not None:
|
|
@@ -10946,6 +11025,17 @@ class CfnBotProps:
|
|
|
10946
11025
|
result = self._values.get("description")
|
|
10947
11026
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
10948
11027
|
|
|
11028
|
+
@builtins.property
|
|
11029
|
+
def replication(
|
|
11030
|
+
self,
|
|
11031
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnBot.ReplicationProperty]]:
|
|
11032
|
+
'''Parameter used to create a replication of the source bot in the secondary region.
|
|
11033
|
+
|
|
11034
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html#cfn-lex-bot-replication
|
|
11035
|
+
'''
|
|
11036
|
+
result = self._values.get("replication")
|
|
11037
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnBot.ReplicationProperty]], result)
|
|
11038
|
+
|
|
10949
11039
|
@builtins.property
|
|
10950
11040
|
def test_bot_alias_settings(
|
|
10951
11041
|
self,
|
|
@@ -11602,6 +11692,7 @@ def _typecheckingstub__5c185fb71324df3b939f1cbff6a813b57733510cba6989dac147b9a3a
|
|
|
11602
11692
|
bot_locales: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.BotLocaleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11603
11693
|
bot_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11604
11694
|
description: typing.Optional[builtins.str] = None,
|
|
11695
|
+
replication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.ReplicationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11605
11696
|
test_bot_alias_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.TestBotAliasSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11606
11697
|
test_bot_alias_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11607
11698
|
) -> None:
|
|
@@ -11674,6 +11765,12 @@ def _typecheckingstub__72103623fa216232524c89f3e94b6a4e2056c1e8ad43603db83275506
|
|
|
11674
11765
|
"""Type checking stubs"""
|
|
11675
11766
|
pass
|
|
11676
11767
|
|
|
11768
|
+
def _typecheckingstub__216cef1fd41900705f9b354338869c1eb4c662dac7d796bbff78b6110634e068(
|
|
11769
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnBot.ReplicationProperty]],
|
|
11770
|
+
) -> None:
|
|
11771
|
+
"""Type checking stubs"""
|
|
11772
|
+
pass
|
|
11773
|
+
|
|
11677
11774
|
def _typecheckingstub__8af2b15d1ec9a6dfbd927bbbf7b4b9c006697a2b575338beae8d16e49680244f(
|
|
11678
11775
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnBot.TestBotAliasSettingsProperty]],
|
|
11679
11776
|
) -> None:
|
|
@@ -12171,6 +12268,13 @@ def _typecheckingstub__dfee20d6cdf119a2c07cbe82b4eed1c4619bb7cefa041af9edd532750
|
|
|
12171
12268
|
"""Type checking stubs"""
|
|
12172
12269
|
pass
|
|
12173
12270
|
|
|
12271
|
+
def _typecheckingstub__7d77a453a1c9a0bcd03b5f52ef3ee4f9d80b3c79a6f18fa61d4b870e462ea121(
|
|
12272
|
+
*,
|
|
12273
|
+
replica_regions: typing.Sequence[builtins.str],
|
|
12274
|
+
) -> None:
|
|
12275
|
+
"""Type checking stubs"""
|
|
12276
|
+
pass
|
|
12277
|
+
|
|
12174
12278
|
def _typecheckingstub__41b902a3461c6b590e44c1b70d9b5197da38bf30395535518dbeee15b931cb17(
|
|
12175
12279
|
*,
|
|
12176
12280
|
message_groups_list: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.MessageGroupProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
@@ -12607,6 +12711,7 @@ def _typecheckingstub__5bd27c18d3e2a58ae9aef768e05a25ed92243f8298c9575d9ff15c1d7
|
|
|
12607
12711
|
bot_locales: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.BotLocaleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
12608
12712
|
bot_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
12609
12713
|
description: typing.Optional[builtins.str] = None,
|
|
12714
|
+
replication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.ReplicationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12610
12715
|
test_bot_alias_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBot.TestBotAliasSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12611
12716
|
test_bot_alias_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
12612
12717
|
) -> None:
|