aws-cdk-lib 2.165.0__py3-none-any.whl → 2.167.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 +1 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.165.0.jsii.tgz → aws-cdk-lib@2.167.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +9 -0
- aws_cdk/aws_appsync/__init__.py +2271 -359
- aws_cdk/aws_backup/__init__.py +57 -31
- aws_cdk/aws_bedrock/__init__.py +994 -197
- aws_cdk/aws_cleanrooms/__init__.py +66 -5
- aws_cdk/aws_cloudfront/__init__.py +21 -3
- aws_cdk/aws_cloudfront/experimental/__init__.py +3 -3
- aws_cdk/aws_codebuild/__init__.py +59 -29
- aws_cdk/aws_codepipeline/__init__.py +98 -5
- aws_cdk/aws_codestar/__init__.py +1 -1
- aws_cdk/aws_cognito/__init__.py +0 -8
- aws_cdk/aws_connect/__init__.py +1 -1
- aws_cdk/aws_datasync/__init__.py +60 -7
- aws_cdk/aws_devopsguru/__init__.py +2 -2
- aws_cdk/aws_dms/__init__.py +762 -0
- aws_cdk/aws_dynamodb/__init__.py +13 -8
- aws_cdk/aws_ec2/__init__.py +316 -11
- aws_cdk/aws_ecs/__init__.py +20 -7
- aws_cdk/aws_elasticache/__init__.py +16 -9
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +73 -46
- aws_cdk/aws_emrserverless/__init__.py +35 -33
- aws_cdk/aws_events/__init__.py +25 -30
- aws_cdk/aws_gamelift/__init__.py +52 -40
- aws_cdk/aws_inspectorv2/__init__.py +6 -12
- aws_cdk/aws_kinesis/__init__.py +297 -1
- aws_cdk/aws_kms/__init__.py +2 -0
- aws_cdk/aws_lambda/__init__.py +339 -22
- aws_cdk/aws_lambda_nodejs/__init__.py +3 -3
- aws_cdk/aws_logs/__init__.py +214 -0
- aws_cdk/aws_m2/__init__.py +58 -58
- aws_cdk/aws_mediapackagev2/__init__.py +191 -0
- aws_cdk/aws_networkfirewall/__init__.py +14 -5
- aws_cdk/aws_nimblestudio/__init__.py +6 -103
- aws_cdk/aws_opensearchservice/__init__.py +969 -0
- aws_cdk/aws_pipes/__init__.py +1 -1
- aws_cdk/aws_qbusiness/__init__.py +2 -0
- aws_cdk/aws_quicksight/__init__.py +481 -10
- aws_cdk/aws_rds/__init__.py +667 -16
- aws_cdk/aws_route53/__init__.py +38 -12
- aws_cdk/aws_s3_assets/__init__.py +37 -0
- aws_cdk/aws_s3_deployment/__init__.py +18 -7
- aws_cdk/aws_sagemaker/__init__.py +61 -25
- aws_cdk/aws_secretsmanager/__init__.py +2 -1
- aws_cdk/aws_servicecatalog/__init__.py +52 -4
- aws_cdk/aws_ses/__init__.py +22 -1
- aws_cdk/aws_sqs/__init__.py +12 -9
- aws_cdk/aws_stepfunctions/__init__.py +8 -0
- aws_cdk/aws_synthetics/__init__.py +133 -1
- aws_cdk/aws_timestream/__init__.py +41 -0
- aws_cdk/aws_wisdom/__init__.py +2348 -54
- aws_cdk/triggers/__init__.py +3 -3
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/RECORD +60 -60
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/WHEEL +1 -1
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_dynamodb/__init__.py
CHANGED
|
@@ -12029,7 +12029,7 @@ class TableOptionsV2:
|
|
|
12029
12029
|
:param point_in_time_recovery: Whether point-in-time recovery is enabled. Default: false
|
|
12030
12030
|
:param resource_policy: Resource policy to assign to DynamoDB Table. Default: - No resource policy statements are added to the created table.
|
|
12031
12031
|
:param table_class: The table class. Default: TableClass.STANDARD
|
|
12032
|
-
:param tags: Tags to be applied to the table
|
|
12032
|
+
:param tags: Tags to be applied to the primary table (default replica table). Default: - no tags
|
|
12033
12033
|
|
|
12034
12034
|
:exampleMetadata: fixture=_generated
|
|
12035
12035
|
|
|
@@ -12140,7 +12140,7 @@ class TableOptionsV2:
|
|
|
12140
12140
|
|
|
12141
12141
|
@builtins.property
|
|
12142
12142
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
12143
|
-
'''Tags to be applied to the table
|
|
12143
|
+
'''Tags to be applied to the primary table (default replica table).
|
|
12144
12144
|
|
|
12145
12145
|
:default: - no tags
|
|
12146
12146
|
'''
|
|
@@ -12676,7 +12676,7 @@ class TablePropsV2(TableOptionsV2):
|
|
|
12676
12676
|
:param point_in_time_recovery: Whether point-in-time recovery is enabled. Default: false
|
|
12677
12677
|
:param resource_policy: Resource policy to assign to DynamoDB Table. Default: - No resource policy statements are added to the created table.
|
|
12678
12678
|
:param table_class: The table class. Default: TableClass.STANDARD
|
|
12679
|
-
:param tags: Tags to be applied to the table
|
|
12679
|
+
:param tags: Tags to be applied to the primary table (default replica table). Default: - no tags
|
|
12680
12680
|
:param partition_key: Partition key attribute definition.
|
|
12681
12681
|
:param billing: The billing mode and capacity settings to apply to the table. Default: Billing.onDemand()
|
|
12682
12682
|
:param dynamo_stream: When an item in the table is modified, StreamViewType determines what information is written to the stream. Default: - streams are disabled if replicas are not configured and this property is not specified. If this property is not specified when replicas are configured, then NEW_AND_OLD_IMAGES will be the StreamViewType for all replicas
|
|
@@ -12827,7 +12827,7 @@ class TablePropsV2(TableOptionsV2):
|
|
|
12827
12827
|
|
|
12828
12828
|
@builtins.property
|
|
12829
12829
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
12830
|
-
'''Tags to be applied to the table
|
|
12830
|
+
'''Tags to be applied to the primary table (default replica table).
|
|
12831
12831
|
|
|
12832
12832
|
:default: - no tags
|
|
12833
12833
|
'''
|
|
@@ -13029,7 +13029,7 @@ class TableV2(
|
|
|
13029
13029
|
:param point_in_time_recovery: Whether point-in-time recovery is enabled. Default: false
|
|
13030
13030
|
:param resource_policy: Resource policy to assign to DynamoDB Table. Default: - No resource policy statements are added to the created table.
|
|
13031
13031
|
:param table_class: The table class. Default: TableClass.STANDARD
|
|
13032
|
-
:param tags: Tags to be applied to the table
|
|
13032
|
+
:param tags: Tags to be applied to the primary table (default replica table). Default: - no tags
|
|
13033
13033
|
'''
|
|
13034
13034
|
if __debug__:
|
|
13035
13035
|
type_hints = typing.get_type_hints(_typecheckingstub__9ea47b003cdb497ff620f1410260696f97dbb2b00fa8558235f23771f8edcb29)
|
|
@@ -13245,7 +13245,7 @@ class TableV2(
|
|
|
13245
13245
|
:param point_in_time_recovery: Whether point-in-time recovery is enabled. Default: false
|
|
13246
13246
|
:param resource_policy: Resource policy to assign to DynamoDB Table. Default: - No resource policy statements are added to the created table.
|
|
13247
13247
|
:param table_class: The table class. Default: TableClass.STANDARD
|
|
13248
|
-
:param tags: Tags to be applied to the table
|
|
13248
|
+
:param tags: Tags to be applied to the primary table (default replica table). Default: - no tags
|
|
13249
13249
|
'''
|
|
13250
13250
|
props = ReplicaTableProps(
|
|
13251
13251
|
region=region,
|
|
@@ -13304,6 +13304,11 @@ class TableV2(
|
|
|
13304
13304
|
'''
|
|
13305
13305
|
return typing.cast(builtins.str, jsii.get(self, "tableName"))
|
|
13306
13306
|
|
|
13307
|
+
@builtins.property
|
|
13308
|
+
@jsii.member(jsii_name="tags")
|
|
13309
|
+
def _tags(self) -> _TagManager_0a598cb3:
|
|
13310
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
|
|
13311
|
+
|
|
13307
13312
|
@builtins.property
|
|
13308
13313
|
@jsii.member(jsii_name="encryptionKey")
|
|
13309
13314
|
def encryption_key(self) -> typing.Optional[_IKey_5f11635f]:
|
|
@@ -14320,7 +14325,7 @@ class ReplicaTableProps(TableOptionsV2):
|
|
|
14320
14325
|
:param point_in_time_recovery: Whether point-in-time recovery is enabled. Default: false
|
|
14321
14326
|
:param resource_policy: Resource policy to assign to DynamoDB Table. Default: - No resource policy statements are added to the created table.
|
|
14322
14327
|
:param table_class: The table class. Default: TableClass.STANDARD
|
|
14323
|
-
:param tags: Tags to be applied to the table
|
|
14328
|
+
:param tags: Tags to be applied to the primary table (default replica table). Default: - no tags
|
|
14324
14329
|
:param region: The region that the replica table will be created in.
|
|
14325
14330
|
:param global_secondary_index_options: Options used to configure global secondary index properties. Default: - inherited from the primary table
|
|
14326
14331
|
:param max_read_request_units: The maxium read request units. Note: This can only be configured if the primary table billing is PAY_PER_REQUEST. Default: - inherited from the primary table
|
|
@@ -14438,7 +14443,7 @@ class ReplicaTableProps(TableOptionsV2):
|
|
|
14438
14443
|
|
|
14439
14444
|
@builtins.property
|
|
14440
14445
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
14441
|
-
'''Tags to be applied to the table
|
|
14446
|
+
'''Tags to be applied to the primary table (default replica table).
|
|
14442
14447
|
|
|
14443
14448
|
:default: - no tags
|
|
14444
14449
|
'''
|