aws-cdk-lib 2.155.0__py3-none-any.whl → 2.157.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 +28 -24
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.155.0.jsii.tgz → aws-cdk-lib@2.157.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +10 -75
- aws_cdk/aws_amplify/__init__.py +106 -0
- aws_cdk/aws_apigatewayv2/__init__.py +81 -13
- aws_cdk/aws_appintegrations/__init__.py +14 -14
- aws_cdk/aws_applicationsignals/__init__.py +750 -1
- aws_cdk/aws_appsync/__init__.py +50 -18
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_backup/__init__.py +39 -0
- aws_cdk/aws_batch/__init__.py +41 -0
- aws_cdk/aws_bedrock/__init__.py +1528 -91
- aws_cdk/aws_chatbot/__init__.py +6 -6
- aws_cdk/aws_cloudformation/__init__.py +22 -22
- aws_cdk/aws_cloudfront/__init__.py +650 -57
- aws_cdk/aws_cloudfront/experimental/__init__.py +30 -3
- aws_cdk/aws_cloudfront_origins/__init__.py +2034 -91
- aws_cdk/aws_codebuild/__init__.py +1 -1
- aws_cdk/aws_datasync/__init__.py +40 -29
- aws_cdk/aws_docdb/__init__.py +78 -6
- aws_cdk/aws_ec2/__init__.py +397 -75
- aws_cdk/aws_ecs/__init__.py +271 -101
- aws_cdk/aws_ecs_patterns/__init__.py +129 -11
- aws_cdk/aws_eks/__init__.py +40 -4
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +26 -50
- aws_cdk/aws_entityresolution/__init__.py +117 -4
- aws_cdk/aws_events/__init__.py +40 -14
- aws_cdk/aws_events_targets/__init__.py +357 -0
- aws_cdk/aws_glue/__init__.py +0 -8
- aws_cdk/aws_groundstation/__init__.py +27 -16
- aws_cdk/aws_guardduty/__init__.py +26 -14
- aws_cdk/aws_iam/__init__.py +7 -8
- aws_cdk/aws_iotfleetwise/__init__.py +108 -0
- aws_cdk/aws_kms/__init__.py +53 -10
- aws_cdk/aws_lambda/__init__.py +147 -17
- aws_cdk/aws_lambda_nodejs/__init__.py +30 -3
- aws_cdk/aws_macie/__init__.py +4 -4
- aws_cdk/aws_medialive/__init__.py +348 -0
- aws_cdk/aws_mediapackagev2/__init__.py +38 -38
- aws_cdk/aws_neptune/__init__.py +14 -8
- aws_cdk/aws_opensearchservice/__init__.py +194 -0
- aws_cdk/aws_pcaconnectorscep/__init__.py +884 -0
- aws_cdk/aws_personalize/__init__.py +2 -2
- aws_cdk/aws_pipes/__init__.py +22 -22
- aws_cdk/aws_qbusiness/__init__.py +675 -6
- aws_cdk/aws_quicksight/__init__.py +3285 -0
- aws_cdk/aws_rds/__init__.py +24 -0
- aws_cdk/aws_s3/__init__.py +13 -14
- aws_cdk/aws_sagemaker/__init__.py +1167 -0
- aws_cdk/aws_secretsmanager/__init__.py +2 -3
- aws_cdk/aws_securityhub/__init__.py +108 -103
- aws_cdk/aws_ses/__init__.py +31 -0
- aws_cdk/aws_sns/__init__.py +19 -13
- aws_cdk/aws_ssm/__init__.py +10 -6
- aws_cdk/aws_ssmquicksetup/__init__.py +967 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +106 -45
- aws_cdk/aws_synthetics/__init__.py +13 -0
- aws_cdk/cx_api/__init__.py +16 -0
- aws_cdk/triggers/__init__.py +30 -3
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/RECORD +66 -64
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/top_level.txt +0 -0
|
@@ -1112,9 +1112,9 @@ class CfnSolution(
|
|
|
1112
1112
|
):
|
|
1113
1113
|
'''.. epigraph::
|
|
1114
1114
|
|
|
1115
|
-
|
|
1115
|
+
By default, all new solutions use automatic training.
|
|
1116
1116
|
|
|
1117
|
-
|
|
1117
|
+
With automatic training, you incur training costs while your solution is active. To avoid unnecessary costs, when you are finished you can `update the solution <https://docs.aws.amazon.com/personalize/latest/dg/API_UpdateSolution.html>`_ to turn off automatic training. For information about training costs, see `Amazon Personalize pricing <https://docs.aws.amazon.com/https://aws.amazon.com/personalize/pricing/>`_ .
|
|
1118
1118
|
|
|
1119
1119
|
An object that provides information about a solution. A solution includes the custom recipe, customized parameters, and trained models (Solution Versions) that Amazon Personalize uses to generate recommendations.
|
|
1120
1120
|
|
aws_cdk/aws_pipes/__init__.py
CHANGED
|
@@ -3398,10 +3398,10 @@ class CfnPipe(
|
|
|
3398
3398
|
:param batch_size: The maximum number of records to include in each batch.
|
|
3399
3399
|
:param dead_letter_config: Define the target queue to send dead-letter queue events to.
|
|
3400
3400
|
:param maximum_batching_window_in_seconds: The maximum length of a time to wait for events.
|
|
3401
|
-
:param maximum_record_age_in_seconds:
|
|
3402
|
-
:param maximum_retry_attempts:
|
|
3403
|
-
:param on_partial_batch_item_failure:
|
|
3404
|
-
:param parallelization_factor:
|
|
3401
|
+
:param maximum_record_age_in_seconds: Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, EventBridge never discards old records.
|
|
3402
|
+
:param maximum_retry_attempts: Discard records after the specified number of retries. The default value is -1, which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.
|
|
3403
|
+
:param on_partial_batch_item_failure: Define how to handle item process failures. ``AUTOMATIC_BISECT`` halves each batch and retry each half until all the records are processed or there is one failed message left in the batch.
|
|
3404
|
+
:param parallelization_factor: The number of batches to process concurrently from each shard. The default value is 1.
|
|
3405
3405
|
|
|
3406
3406
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcedynamodbstreamparameters.html
|
|
3407
3407
|
:exampleMetadata: fixture=_generated
|
|
@@ -3498,7 +3498,7 @@ class CfnPipe(
|
|
|
3498
3498
|
|
|
3499
3499
|
@builtins.property
|
|
3500
3500
|
def maximum_record_age_in_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3501
|
-
'''
|
|
3501
|
+
'''Discard records older than the specified age.
|
|
3502
3502
|
|
|
3503
3503
|
The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, EventBridge never discards old records.
|
|
3504
3504
|
|
|
@@ -3509,7 +3509,7 @@ class CfnPipe(
|
|
|
3509
3509
|
|
|
3510
3510
|
@builtins.property
|
|
3511
3511
|
def maximum_retry_attempts(self) -> typing.Optional[jsii.Number]:
|
|
3512
|
-
'''
|
|
3512
|
+
'''Discard records after the specified number of retries.
|
|
3513
3513
|
|
|
3514
3514
|
The default value is -1, which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.
|
|
3515
3515
|
|
|
@@ -3520,7 +3520,7 @@ class CfnPipe(
|
|
|
3520
3520
|
|
|
3521
3521
|
@builtins.property
|
|
3522
3522
|
def on_partial_batch_item_failure(self) -> typing.Optional[builtins.str]:
|
|
3523
|
-
'''
|
|
3523
|
+
'''Define how to handle item process failures.
|
|
3524
3524
|
|
|
3525
3525
|
``AUTOMATIC_BISECT`` halves each batch and retry each half until all the records are processed or there is one failed message left in the batch.
|
|
3526
3526
|
|
|
@@ -3531,7 +3531,7 @@ class CfnPipe(
|
|
|
3531
3531
|
|
|
3532
3532
|
@builtins.property
|
|
3533
3533
|
def parallelization_factor(self) -> typing.Optional[jsii.Number]:
|
|
3534
|
-
'''
|
|
3534
|
+
'''The number of batches to process concurrently from each shard.
|
|
3535
3535
|
|
|
3536
3536
|
The default value is 1.
|
|
3537
3537
|
|
|
@@ -3582,14 +3582,14 @@ class CfnPipe(
|
|
|
3582
3582
|
) -> None:
|
|
3583
3583
|
'''The parameters for using a Kinesis stream as a source.
|
|
3584
3584
|
|
|
3585
|
-
:param starting_position:
|
|
3585
|
+
:param starting_position: The position in a stream from which to start reading.
|
|
3586
3586
|
:param batch_size: The maximum number of records to include in each batch.
|
|
3587
3587
|
:param dead_letter_config: Define the target queue to send dead-letter queue events to.
|
|
3588
3588
|
:param maximum_batching_window_in_seconds: The maximum length of a time to wait for events.
|
|
3589
|
-
:param maximum_record_age_in_seconds:
|
|
3590
|
-
:param maximum_retry_attempts:
|
|
3591
|
-
:param on_partial_batch_item_failure:
|
|
3592
|
-
:param parallelization_factor:
|
|
3589
|
+
:param maximum_record_age_in_seconds: Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, EventBridge never discards old records.
|
|
3590
|
+
:param maximum_retry_attempts: Discard records after the specified number of retries. The default value is -1, which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.
|
|
3591
|
+
:param on_partial_batch_item_failure: Define how to handle item process failures. ``AUTOMATIC_BISECT`` halves each batch and retry each half until all the records are processed or there is one failed message left in the batch.
|
|
3592
|
+
:param parallelization_factor: The number of batches to process concurrently from each shard. The default value is 1.
|
|
3593
3593
|
:param starting_position_timestamp: With ``StartingPosition`` set to ``AT_TIMESTAMP`` , the time from which to start reading, in Unix time seconds.
|
|
3594
3594
|
|
|
3595
3595
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcekinesisstreamparameters.html
|
|
@@ -3650,7 +3650,7 @@ class CfnPipe(
|
|
|
3650
3650
|
|
|
3651
3651
|
@builtins.property
|
|
3652
3652
|
def starting_position(self) -> builtins.str:
|
|
3653
|
-
'''
|
|
3653
|
+
'''The position in a stream from which to start reading.
|
|
3654
3654
|
|
|
3655
3655
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcekinesisstreamparameters.html#cfn-pipes-pipe-pipesourcekinesisstreamparameters-startingposition
|
|
3656
3656
|
'''
|
|
@@ -3689,7 +3689,7 @@ class CfnPipe(
|
|
|
3689
3689
|
|
|
3690
3690
|
@builtins.property
|
|
3691
3691
|
def maximum_record_age_in_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3692
|
-
'''
|
|
3692
|
+
'''Discard records older than the specified age.
|
|
3693
3693
|
|
|
3694
3694
|
The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, EventBridge never discards old records.
|
|
3695
3695
|
|
|
@@ -3700,7 +3700,7 @@ class CfnPipe(
|
|
|
3700
3700
|
|
|
3701
3701
|
@builtins.property
|
|
3702
3702
|
def maximum_retry_attempts(self) -> typing.Optional[jsii.Number]:
|
|
3703
|
-
'''
|
|
3703
|
+
'''Discard records after the specified number of retries.
|
|
3704
3704
|
|
|
3705
3705
|
The default value is -1, which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.
|
|
3706
3706
|
|
|
@@ -3711,7 +3711,7 @@ class CfnPipe(
|
|
|
3711
3711
|
|
|
3712
3712
|
@builtins.property
|
|
3713
3713
|
def on_partial_batch_item_failure(self) -> typing.Optional[builtins.str]:
|
|
3714
|
-
'''
|
|
3714
|
+
'''Define how to handle item process failures.
|
|
3715
3715
|
|
|
3716
3716
|
``AUTOMATIC_BISECT`` halves each batch and retry each half until all the records are processed or there is one failed message left in the batch.
|
|
3717
3717
|
|
|
@@ -3722,7 +3722,7 @@ class CfnPipe(
|
|
|
3722
3722
|
|
|
3723
3723
|
@builtins.property
|
|
3724
3724
|
def parallelization_factor(self) -> typing.Optional[jsii.Number]:
|
|
3725
|
-
'''
|
|
3725
|
+
'''The number of batches to process concurrently from each shard.
|
|
3726
3726
|
|
|
3727
3727
|
The default value is 1.
|
|
3728
3728
|
|
|
@@ -3781,7 +3781,7 @@ class CfnPipe(
|
|
|
3781
3781
|
:param consumer_group_id: The name of the destination queue to consume.
|
|
3782
3782
|
:param credentials: The credentials needed to access the resource.
|
|
3783
3783
|
:param maximum_batching_window_in_seconds: The maximum length of a time to wait for events.
|
|
3784
|
-
:param starting_position:
|
|
3784
|
+
:param starting_position: The position in a stream from which to start reading.
|
|
3785
3785
|
|
|
3786
3786
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcemanagedstreamingkafkaparameters.html
|
|
3787
3787
|
:exampleMetadata: fixture=_generated
|
|
@@ -3878,7 +3878,7 @@ class CfnPipe(
|
|
|
3878
3878
|
|
|
3879
3879
|
@builtins.property
|
|
3880
3880
|
def starting_position(self) -> typing.Optional[builtins.str]:
|
|
3881
|
-
'''
|
|
3881
|
+
'''The position in a stream from which to start reading.
|
|
3882
3882
|
|
|
3883
3883
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcemanagedstreamingkafkaparameters.html#cfn-pipes-pipe-pipesourcemanagedstreamingkafkaparameters-startingposition
|
|
3884
3884
|
'''
|
|
@@ -4340,7 +4340,7 @@ class CfnPipe(
|
|
|
4340
4340
|
:param credentials: The credentials needed to access the resource.
|
|
4341
4341
|
:param maximum_batching_window_in_seconds: The maximum length of a time to wait for events.
|
|
4342
4342
|
:param server_root_ca_certificate: The ARN of the Secrets Manager secret used for certification.
|
|
4343
|
-
:param starting_position:
|
|
4343
|
+
:param starting_position: The position in a stream from which to start reading.
|
|
4344
4344
|
:param vpc: This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.
|
|
4345
4345
|
|
|
4346
4346
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceselfmanagedkafkaparameters.html
|
|
@@ -4475,7 +4475,7 @@ class CfnPipe(
|
|
|
4475
4475
|
|
|
4476
4476
|
@builtins.property
|
|
4477
4477
|
def starting_position(self) -> typing.Optional[builtins.str]:
|
|
4478
|
-
'''
|
|
4478
|
+
'''The position in a stream from which to start reading.
|
|
4479
4479
|
|
|
4480
4480
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceselfmanagedkafkaparameters.html#cfn-pipes-pipe-pipesourceselfmanagedkafkaparameters-startingposition
|
|
4481
4481
|
'''
|