aws-cdk-lib 2.175.0__py3-none-any.whl → 2.176.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 +15 -6
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.175.0.jsii.tgz → aws-cdk-lib@2.176.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +159 -7
- aws_cdk/aws_appconfig/__init__.py +106 -24
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_backup/__init__.py +18 -84
- aws_cdk/aws_cleanrooms/__init__.py +77 -34
- aws_cdk/aws_cloudformation/__init__.py +4 -2
- aws_cdk/aws_cloudfront/experimental/__init__.py +1 -1
- aws_cdk/aws_cloudwatch/__init__.py +53 -49
- aws_cdk/aws_codebuild/__init__.py +36 -0
- aws_cdk/aws_cognito/__init__.py +228 -219
- aws_cdk/aws_customerprofiles/__init__.py +1060 -0
- aws_cdk/aws_docdb/__init__.py +29 -9
- aws_cdk/aws_dynamodb/__init__.py +77 -58
- aws_cdk/aws_ec2/__init__.py +11 -8
- aws_cdk/aws_ecs/__init__.py +100 -35
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +41 -5
- aws_cdk/aws_healthlake/__init__.py +36 -40
- aws_cdk/aws_lambda/__init__.py +8 -8
- aws_cdk/aws_lambda_event_sources/__init__.py +9 -9
- aws_cdk/aws_lex/__init__.py +105 -0
- aws_cdk/aws_mediaconvert/__init__.py +7 -3
- aws_cdk/aws_organizations/__init__.py +5 -9
- aws_cdk/aws_rds/__init__.py +83 -8
- aws_cdk/aws_resiliencehub/__init__.py +41 -0
- aws_cdk/aws_s3/__init__.py +5 -5
- aws_cdk/aws_ses/__init__.py +25 -4
- aws_cdk/aws_ssm/__init__.py +9 -2
- aws_cdk/aws_ssmquicksetup/__init__.py +84 -84
- aws_cdk/aws_sso/__init__.py +9 -5
- aws_cdk/cx_api/__init__.py +25 -4
- {aws_cdk_lib-2.175.0.dist-info → aws_cdk_lib-2.176.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.175.0.dist-info → aws_cdk_lib-2.176.0.dist-info}/RECORD +39 -40
- aws_cdk/aws_iot1click/__init__.py +0 -1193
- {aws_cdk_lib-2.175.0.dist-info → aws_cdk_lib-2.176.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.175.0.dist-info → aws_cdk_lib-2.176.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.175.0.dist-info → aws_cdk_lib-2.176.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.175.0.dist-info → aws_cdk_lib-2.176.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -13413,7 +13413,7 @@ class EventSourceMappingOptions:
|
|
|
13413
13413
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
13414
13414
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
13415
13415
|
: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
|
|
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 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
13417
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
13418
13418
|
: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
13419
|
: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 +13644,7 @@ class EventSourceMappingOptions:
|
|
|
13644
13644
|
def kafka_consumer_group_id(self) -> typing.Optional[builtins.str]:
|
|
13645
13645
|
'''The identifier for the Kafka consumer group to join.
|
|
13646
13646
|
|
|
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
|
|
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 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
13648
|
|
|
13649
13649
|
:default: - none
|
|
13650
13650
|
|
|
@@ -13913,7 +13913,7 @@ class EventSourceMappingProps(EventSourceMappingOptions):
|
|
|
13913
13913
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
13914
13914
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
13915
13915
|
: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
|
|
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 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
13917
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
13918
13918
|
: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
13919
|
: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 +14152,7 @@ class EventSourceMappingProps(EventSourceMappingOptions):
|
|
|
14152
14152
|
def kafka_consumer_group_id(self) -> typing.Optional[builtins.str]:
|
|
14153
14153
|
'''The identifier for the Kafka consumer group to join.
|
|
14154
14154
|
|
|
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
|
|
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 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
14156
|
|
|
14157
14157
|
:default: - none
|
|
14158
14158
|
|
|
@@ -17787,7 +17787,7 @@ class IFunction(
|
|
|
17787
17787
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
17788
17788
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
17789
17789
|
: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
|
|
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 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
17791
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
17792
17792
|
: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
17793
|
: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 +18229,7 @@ class _IFunctionProxy(
|
|
|
18229
18229
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
18230
18230
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
18231
18231
|
: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
|
|
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 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
18233
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
18234
18234
|
: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
18235
|
: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 +25806,7 @@ class EventSourceMapping(
|
|
|
25806
25806
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
25807
25807
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
25808
25808
|
: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
|
|
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 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
25810
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
25811
25811
|
: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
25812
|
: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 +25984,7 @@ class FunctionBase(
|
|
|
25984
25984
|
:param filter_encryption: Add Customer managed KMS key to encrypt Filter Criteria. Default: - none
|
|
25985
25985
|
:param filters: Add filter criteria to Event Source. Default: - none
|
|
25986
25986
|
: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
|
|
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 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
25988
|
:param kafka_topic: The name of the Kafka topic. Default: - no topic
|
|
25989
25989
|
: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
25990
|
: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:
|
|
@@ -1177,7 +1177,7 @@ class CfnQueue(
|
|
|
1177
1177
|
'''
|
|
1178
1178
|
:param scope: Scope in which this resource is defined.
|
|
1179
1179
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1180
|
-
:param concurrent_jobs:
|
|
1180
|
+
:param concurrent_jobs: Specify the maximum number of jobs your queue can process concurrently. For on-demand queues, the value you enter is constrained by your service quotas for Maximum concurrent jobs, per on-demand queue and Maximum concurrent jobs, per account. For reserved queues, specify the number of jobs you can process concurrently in your reservation plan instead.
|
|
1181
1181
|
:param description: Optional. A description of the queue that you are creating.
|
|
1182
1182
|
:param name: The name of the queue that you are creating.
|
|
1183
1183
|
:param pricing_plan: When you use AWS CloudFormation , you can create only on-demand queues. Therefore, always set ``PricingPlan`` to the value "ON_DEMAND" when declaring an AWS::MediaConvert::Queue in your AWS CloudFormation template. To create a reserved queue, use the AWS Elemental MediaConvert console at https://console.aws.amazon.com/mediaconvert to set up a contract. For more information, see `Working with AWS Elemental MediaConvert Queues <https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html>`_ in the ** .
|
|
@@ -1269,6 +1269,7 @@ class CfnQueue(
|
|
|
1269
1269
|
@builtins.property
|
|
1270
1270
|
@jsii.member(jsii_name="concurrentJobs")
|
|
1271
1271
|
def concurrent_jobs(self) -> typing.Optional[jsii.Number]:
|
|
1272
|
+
'''Specify the maximum number of jobs your queue can process concurrently.'''
|
|
1272
1273
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "concurrentJobs"))
|
|
1273
1274
|
|
|
1274
1275
|
@concurrent_jobs.setter
|
|
@@ -1369,7 +1370,7 @@ class CfnQueueProps:
|
|
|
1369
1370
|
) -> None:
|
|
1370
1371
|
'''Properties for defining a ``CfnQueue``.
|
|
1371
1372
|
|
|
1372
|
-
:param concurrent_jobs:
|
|
1373
|
+
:param concurrent_jobs: Specify the maximum number of jobs your queue can process concurrently. For on-demand queues, the value you enter is constrained by your service quotas for Maximum concurrent jobs, per on-demand queue and Maximum concurrent jobs, per account. For reserved queues, specify the number of jobs you can process concurrently in your reservation plan instead.
|
|
1373
1374
|
:param description: Optional. A description of the queue that you are creating.
|
|
1374
1375
|
:param name: The name of the queue that you are creating.
|
|
1375
1376
|
:param pricing_plan: When you use AWS CloudFormation , you can create only on-demand queues. Therefore, always set ``PricingPlan`` to the value "ON_DEMAND" when declaring an AWS::MediaConvert::Queue in your AWS CloudFormation template. To create a reserved queue, use the AWS Elemental MediaConvert console at https://console.aws.amazon.com/mediaconvert to set up a contract. For more information, see `Working with AWS Elemental MediaConvert Queues <https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html>`_ in the ** .
|
|
@@ -1420,7 +1421,10 @@ class CfnQueueProps:
|
|
|
1420
1421
|
|
|
1421
1422
|
@builtins.property
|
|
1422
1423
|
def concurrent_jobs(self) -> typing.Optional[jsii.Number]:
|
|
1423
|
-
'''
|
|
1424
|
+
'''Specify the maximum number of jobs your queue can process concurrently.
|
|
1425
|
+
|
|
1426
|
+
For on-demand queues, the value you enter is constrained by your service quotas for Maximum concurrent jobs, per on-demand queue and Maximum concurrent jobs, per account. For reserved queues, specify the number of jobs you can process concurrently in your reservation plan instead.
|
|
1427
|
+
|
|
1424
1428
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-concurrentjobs
|
|
1425
1429
|
'''
|
|
1426
1430
|
result = self._values.get("concurrent_jobs")
|
|
@@ -533,7 +533,7 @@ class CfnOrganization(
|
|
|
533
533
|
'''
|
|
534
534
|
:param scope: Scope in which this resource is defined.
|
|
535
535
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
536
|
-
:param feature_set: Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality. - ``ALL`` In addition to all the features supported by the consolidated billing feature set, the management account gains access to advanced features that give you more control over accounts in your organization.
|
|
536
|
+
:param feature_set: Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality. - ``ALL`` In addition to all the features supported by the consolidated billing feature set, the management account gains access to advanced features that give you more control over accounts in your organization. For more information, see `All features <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-all>`_ in the *AWS Organizations User Guide* . - ``CONSOLIDATED_BILLING`` All member accounts have their bills consolidated to and paid by the management account. For more information, see `Consolidated billing <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-cb-only>`_ in the *AWS Organizations User Guide* . .. epigraph:: The consolidated billing feature feature set isn't available for organizations in the AWS GovCloud (US) Region. If you don't specify this property, the default value is ``ALL`` . Default: - "ALL"
|
|
537
537
|
'''
|
|
538
538
|
if __debug__:
|
|
539
539
|
type_hints = typing.get_type_hints(_typecheckingstub__450a54c6b7334fcb8f406a9a29b8e1f90a618bcbd127f2d5a6a9fa43ff254400)
|
|
@@ -658,7 +658,7 @@ class CfnOrganizationProps:
|
|
|
658
658
|
def __init__(self, *, feature_set: typing.Optional[builtins.str] = None) -> None:
|
|
659
659
|
'''Properties for defining a ``CfnOrganization``.
|
|
660
660
|
|
|
661
|
-
:param feature_set: Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality. - ``ALL`` In addition to all the features supported by the consolidated billing feature set, the management account gains access to advanced features that give you more control over accounts in your organization.
|
|
661
|
+
:param feature_set: Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality. - ``ALL`` In addition to all the features supported by the consolidated billing feature set, the management account gains access to advanced features that give you more control over accounts in your organization. For more information, see `All features <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-all>`_ in the *AWS Organizations User Guide* . - ``CONSOLIDATED_BILLING`` All member accounts have their bills consolidated to and paid by the management account. For more information, see `Consolidated billing <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-cb-only>`_ in the *AWS Organizations User Guide* . .. epigraph:: The consolidated billing feature feature set isn't available for organizations in the AWS GovCloud (US) Region. If you don't specify this property, the default value is ``ALL`` . Default: - "ALL"
|
|
662
662
|
|
|
663
663
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-organizations-organization.html
|
|
664
664
|
:exampleMetadata: fixture=_generated
|
|
@@ -684,16 +684,12 @@ class CfnOrganizationProps:
|
|
|
684
684
|
def feature_set(self) -> typing.Optional[builtins.str]:
|
|
685
685
|
'''Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality.
|
|
686
686
|
|
|
687
|
-
- ``ALL`` In addition to all the features supported by the consolidated billing feature set, the management account gains access to advanced features that give you more control over accounts in your organization.
|
|
687
|
+
- ``ALL`` In addition to all the features supported by the consolidated billing feature set, the management account gains access to advanced features that give you more control over accounts in your organization. For more information, see `All features <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-all>`_ in the *AWS Organizations User Guide* .
|
|
688
688
|
- ``CONSOLIDATED_BILLING`` All member accounts have their bills consolidated to and paid by the management account. For more information, see `Consolidated billing <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-cb-only>`_ in the *AWS Organizations User Guide* .
|
|
689
689
|
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
Feature set ``ALL`` provides the following advanced features:
|
|
690
|
+
.. epigraph::
|
|
693
691
|
|
|
694
|
-
|
|
695
|
-
- Apply `service control policies (SCPs) <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scps.html>`_ to member accounts that restrict the services and actions that users (including the root user) and roles in an account can access. Using SCPs you can prevent member accounts from leaving the organization.
|
|
696
|
-
- Enable `integration with supported AWS services <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_integrate_services_list.html>`_ to let those services provide functionality across all of the accounts in your organization.
|
|
692
|
+
The consolidated billing feature feature set isn't available for organizations in the AWS GovCloud (US) Region.
|
|
697
693
|
|
|
698
694
|
If you don't specify this property, the default value is ``ALL`` .
|
|
699
695
|
|