aws-cdk-lib 2.137.0__py3-none-any.whl → 2.139.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 +8 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.137.0.jsii.tgz → aws-cdk-lib@2.139.0.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +29 -113
- aws_cdk/aws_apigateway/__init__.py +29 -16
- aws_cdk/aws_appconfig/__init__.py +315 -77
- aws_cdk/aws_appintegrations/__init__.py +55 -6
- aws_cdk/aws_apprunner/__init__.py +5 -2
- aws_cdk/aws_appsync/__init__.py +400 -13
- aws_cdk/aws_aps/__init__.py +64 -47
- aws_cdk/aws_autoscaling/__init__.py +62 -60
- aws_cdk/aws_b2bi/__init__.py +2 -6
- aws_cdk/aws_backup/__init__.py +53 -57
- aws_cdk/aws_batch/__init__.py +109 -0
- aws_cdk/aws_bcmdataexports/__init__.py +1114 -0
- aws_cdk/aws_bedrock/__init__.py +4144 -0
- aws_cdk/aws_chatbot/__init__.py +6 -4
- aws_cdk/aws_cleanrooms/__init__.py +526 -3
- aws_cdk/aws_cleanroomsml/__init__.py +960 -0
- aws_cdk/aws_cloudtrail/__init__.py +10 -10
- aws_cdk/aws_cloudwatch/__init__.py +244 -8
- aws_cdk/aws_codebuild/__init__.py +27 -22
- aws_cdk/aws_codeconnections/__init__.py +435 -0
- aws_cdk/aws_cognito/__init__.py +175 -79
- aws_cdk/aws_datazone/__init__.py +22 -0
- aws_cdk/aws_deadline/__init__.py +5394 -0
- aws_cdk/aws_dms/__init__.py +2 -4
- aws_cdk/aws_ec2/__init__.py +402 -247
- aws_cdk/aws_ecr/__init__.py +630 -0
- aws_cdk/aws_ecs/__init__.py +361 -20
- aws_cdk/aws_efs/__init__.py +594 -2
- aws_cdk/aws_elasticache/__init__.py +86 -32
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +75 -10
- aws_cdk/aws_emr/__init__.py +2 -2
- aws_cdk/aws_entityresolution/__init__.py +1982 -773
- aws_cdk/aws_events_targets/__init__.py +17 -4
- aws_cdk/aws_globalaccelerator/__init__.py +443 -0
- aws_cdk/aws_iam/__init__.py +1 -2
- aws_cdk/aws_internetmonitor/__init__.py +14 -6
- aws_cdk/aws_ivs/__init__.py +1273 -71
- aws_cdk/aws_kms/__init__.py +44 -0
- aws_cdk/aws_lambda/__init__.py +9 -0
- aws_cdk/aws_mediatailor/__init__.py +41 -0
- aws_cdk/aws_oam/__init__.py +204 -0
- aws_cdk/aws_personalize/__init__.py +8 -6
- aws_cdk/aws_pinpoint/__init__.py +5 -3
- aws_cdk/aws_pipes/__init__.py +5 -1
- aws_cdk/aws_quicksight/__init__.py +12 -6
- aws_cdk/aws_rds/__init__.py +370 -96
- aws_cdk/aws_redshiftserverless/__init__.py +157 -0
- aws_cdk/aws_route53/__init__.py +587 -14
- aws_cdk/aws_sagemaker/__init__.py +233 -2
- aws_cdk/aws_securityhub/__init__.py +4940 -102
- aws_cdk/aws_securitylake/__init__.py +1326 -89
- aws_cdk/aws_ses_actions/__init__.py +155 -0
- aws_cdk/aws_sns/__init__.py +61 -4
- aws_cdk/aws_ssm/__init__.py +5 -2
- aws_cdk/aws_ssmcontacts/__init__.py +11 -4
- aws_cdk/aws_stepfunctions/__init__.py +8 -16
- aws_cdk/aws_stepfunctions_tasks/__init__.py +676 -1
- aws_cdk/aws_timestream/__init__.py +1045 -0
- aws_cdk/aws_transfer/__init__.py +19 -10
- aws_cdk/aws_verifiedpermissions/__init__.py +114 -37
- aws_cdk/aws_wisdom/__init__.py +2 -2
- aws_cdk/aws_workspacesthinclient/__init__.py +8 -8
- aws_cdk/custom_resources/__init__.py +688 -26
- aws_cdk/cx_api/__init__.py +17 -0
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.139.0.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.139.0.dist-info}/RECORD +73 -69
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.139.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.139.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.139.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.139.0.dist-info}/top_level.txt +0 -0
|
@@ -66,8 +66,8 @@ class CfnDataset(
|
|
|
66
66
|
- Item interactions
|
|
67
67
|
- Items
|
|
68
68
|
- Users
|
|
69
|
-
- Action interactions
|
|
70
|
-
- Actions
|
|
69
|
+
- Action interactions (you can't use CloudFormation to create an Action interactions dataset)
|
|
70
|
+
- Actions (you can't use CloudFormation to create an Actions dataset)
|
|
71
71
|
|
|
72
72
|
Each dataset type has an associated schema with required field types. Only the ``Item interactions`` dataset is required in order to train a model (also referred to as creating a solution).
|
|
73
73
|
|
|
@@ -128,7 +128,7 @@ class CfnDataset(
|
|
|
128
128
|
:param scope: Scope in which this resource is defined.
|
|
129
129
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
130
130
|
:param dataset_group_arn: The Amazon Resource Name (ARN) of the dataset group.
|
|
131
|
-
:param dataset_type: One of the following values:. - Interactions - Items - Users
|
|
131
|
+
:param dataset_type: One of the following values:. - Interactions - Items - Users .. epigraph:: You can't use CloudFormation to create an Action Interactions or Actions dataset.
|
|
132
132
|
:param name: The name of the dataset.
|
|
133
133
|
:param schema_arn: The ARN of the associated schema.
|
|
134
134
|
:param dataset_import_job: Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset. If you specify a dataset import job as part of a dataset, all dataset import job fields are required.
|
|
@@ -742,7 +742,7 @@ class CfnDatasetProps:
|
|
|
742
742
|
'''Properties for defining a ``CfnDataset``.
|
|
743
743
|
|
|
744
744
|
:param dataset_group_arn: The Amazon Resource Name (ARN) of the dataset group.
|
|
745
|
-
:param dataset_type: One of the following values:. - Interactions - Items - Users
|
|
745
|
+
:param dataset_type: One of the following values:. - Interactions - Items - Users .. epigraph:: You can't use CloudFormation to create an Action Interactions or Actions dataset.
|
|
746
746
|
:param name: The name of the dataset.
|
|
747
747
|
:param schema_arn: The ARN of the associated schema.
|
|
748
748
|
:param dataset_import_job: Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset. If you specify a dataset import job as part of a dataset, all dataset import job fields are required.
|
|
@@ -807,8 +807,10 @@ class CfnDatasetProps:
|
|
|
807
807
|
- Interactions
|
|
808
808
|
- Items
|
|
809
809
|
- Users
|
|
810
|
-
|
|
811
|
-
|
|
810
|
+
|
|
811
|
+
.. epigraph::
|
|
812
|
+
|
|
813
|
+
You can't use CloudFormation to create an Action Interactions or Actions dataset.
|
|
812
814
|
|
|
813
815
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-dataset.html#cfn-personalize-dataset-datasettype
|
|
814
816
|
'''
|
aws_cdk/aws_pinpoint/__init__.py
CHANGED
|
@@ -5843,7 +5843,7 @@ class CfnCampaign(
|
|
|
5843
5843
|
:param baidu_message: The message that the campaign sends through the Baidu (Baidu Cloud Push) channel. If specified, this message overrides the default message.
|
|
5844
5844
|
:param custom_message: The message that the campaign sends through a custom channel, as specified by the delivery configuration ( ``CustomDeliveryConfiguration`` ) settings for the campaign. If specified, this message overrides the default message.
|
|
5845
5845
|
:param default_message: The default message that the campaign sends through all the channels that are configured for the campaign.
|
|
5846
|
-
:param email_message: The message that the campaign sends through the email channel. If specified, this message overrides the default message.
|
|
5846
|
+
:param email_message: The message that the campaign sends through the email channel. If specified, this message overrides the default message. .. epigraph:: The maximum email message size is 200KB. You can use email templates to send larger email messages.
|
|
5847
5847
|
:param gcm_message: The message that the campaign sends through the GCM channel, which enables Amazon Pinpoint to send push notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service. If specified, this message overrides the default message.
|
|
5848
5848
|
:param in_app_message: The default message for the in-app messaging channel. This message overrides the default message ( ``DefaultMessage`` ).
|
|
5849
5849
|
:param sms_message: The message that the campaign sends through the SMS channel. If specified, this message overrides the default message.
|
|
@@ -6109,9 +6109,11 @@ class CfnCampaign(
|
|
|
6109
6109
|
def email_message(
|
|
6110
6110
|
self,
|
|
6111
6111
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.CampaignEmailMessageProperty"]]:
|
|
6112
|
-
'''The message that the campaign sends through the email channel.
|
|
6112
|
+
'''The message that the campaign sends through the email channel. If specified, this message overrides the default message.
|
|
6113
6113
|
|
|
6114
|
-
|
|
6114
|
+
.. epigraph::
|
|
6115
|
+
|
|
6116
|
+
The maximum email message size is 200KB. You can use email templates to send larger email messages.
|
|
6115
6117
|
|
|
6116
6118
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-messageconfiguration.html#cfn-pinpoint-campaign-messageconfiguration-emailmessage
|
|
6117
6119
|
'''
|
aws_cdk/aws_pipes/__init__.py
CHANGED
|
@@ -3638,7 +3638,7 @@ class CfnPipe(
|
|
|
3638
3638
|
:param kinesis_stream_parameters: The parameters for using a Kinesis stream as a source.
|
|
3639
3639
|
:param managed_streaming_kafka_parameters: The parameters for using an MSK stream as a source.
|
|
3640
3640
|
:param rabbit_mq_broker_parameters: The parameters for using a Rabbit MQ broker as a source.
|
|
3641
|
-
:param self_managed_kafka_parameters: The parameters for using a stream as a source.
|
|
3641
|
+
:param self_managed_kafka_parameters: The parameters for using a stream as a source. A *self managed* cluster refers to any Apache Kafka cluster not hosted by AWS . This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as `Confluent Cloud <https://docs.aws.amazon.com/https://www.confluent.io/>`_ , `CloudKarafka <https://docs.aws.amazon.com/https://www.cloudkarafka.com/>`_ , or `Redpanda <https://docs.aws.amazon.com/https://redpanda.com/>`_ . For more information, see `Apache Kafka streams as a source <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html>`_ in the *Amazon EventBridge User Guide* .
|
|
3642
3642
|
:param sqs_queue_parameters: The parameters for using a Amazon SQS stream as a source.
|
|
3643
3643
|
|
|
3644
3644
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html
|
|
@@ -3850,6 +3850,8 @@ class CfnPipe(
|
|
|
3850
3850
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPipe.PipeSourceSelfManagedKafkaParametersProperty"]]:
|
|
3851
3851
|
'''The parameters for using a stream as a source.
|
|
3852
3852
|
|
|
3853
|
+
A *self managed* cluster refers to any Apache Kafka cluster not hosted by AWS . This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as `Confluent Cloud <https://docs.aws.amazon.com/https://www.confluent.io/>`_ , `CloudKarafka <https://docs.aws.amazon.com/https://www.cloudkarafka.com/>`_ , or `Redpanda <https://docs.aws.amazon.com/https://redpanda.com/>`_ . For more information, see `Apache Kafka streams as a source <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html>`_ in the *Amazon EventBridge User Guide* .
|
|
3854
|
+
|
|
3853
3855
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html#cfn-pipes-pipe-pipesourceparameters-selfmanagedkafkaparameters
|
|
3854
3856
|
'''
|
|
3855
3857
|
result = self._values.get("self_managed_kafka_parameters")
|
|
@@ -4036,6 +4038,8 @@ class CfnPipe(
|
|
|
4036
4038
|
) -> None:
|
|
4037
4039
|
'''The parameters for using a stream as a source.
|
|
4038
4040
|
|
|
4041
|
+
A *self managed* cluster refers to any Apache Kafka cluster not hosted by AWS . This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as `Confluent Cloud <https://docs.aws.amazon.com/https://www.confluent.io/>`_ , `CloudKarafka <https://docs.aws.amazon.com/https://www.cloudkarafka.com/>`_ , or `Redpanda <https://docs.aws.amazon.com/https://redpanda.com/>`_ . For more information, see `Apache Kafka streams as a source <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html>`_ in the *Amazon EventBridge User Guide* .
|
|
4042
|
+
|
|
4039
4043
|
:param topic_name: The name of the topic that the pipe will read from.
|
|
4040
4044
|
:param additional_bootstrap_servers: An array of server URLs.
|
|
4041
4045
|
:param batch_size: The maximum number of records to include in each batch.
|
|
@@ -20440,7 +20440,7 @@ class CfnAnalysis(
|
|
|
20440
20440
|
|
|
20441
20441
|
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
|
|
20442
20442
|
|
|
20443
|
-
:param all_sheets: The configuration
|
|
20443
|
+
:param all_sheets: The configuration that applies a filter to all sheets. When you choose ``AllSheets`` as the value for a ``FilterScopeConfiguration`` , this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The ``AllSheetsFilterScopeConfiguration`` is chosen.
|
|
20444
20444
|
:param selected_sheets: The configuration for applying a filter to specific sheets.
|
|
20445
20445
|
|
|
20446
20446
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterscopeconfiguration.html
|
|
@@ -20479,7 +20479,9 @@ class CfnAnalysis(
|
|
|
20479
20479
|
|
|
20480
20480
|
@builtins.property
|
|
20481
20481
|
def all_sheets(self) -> typing.Any:
|
|
20482
|
-
'''The configuration
|
|
20482
|
+
'''The configuration that applies a filter to all sheets.
|
|
20483
|
+
|
|
20484
|
+
When you choose ``AllSheets`` as the value for a ``FilterScopeConfiguration`` , this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The ``AllSheetsFilterScopeConfiguration`` is chosen.
|
|
20483
20485
|
|
|
20484
20486
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterscopeconfiguration.html#cfn-quicksight-analysis-filterscopeconfiguration-allsheets
|
|
20485
20487
|
'''
|
|
@@ -85183,7 +85185,7 @@ class CfnDashboard(
|
|
|
85183
85185
|
|
|
85184
85186
|
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
|
|
85185
85187
|
|
|
85186
|
-
:param all_sheets: The configuration
|
|
85188
|
+
:param all_sheets: The configuration that applies a filter to all sheets. When you choose ``AllSheets`` as the value for a ``FilterScopeConfiguration`` , this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The ``AllSheetsFilterScopeConfiguration`` is chosen.
|
|
85187
85189
|
:param selected_sheets: The configuration for applying a filter to specific sheets.
|
|
85188
85190
|
|
|
85189
85191
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterscopeconfiguration.html
|
|
@@ -85222,7 +85224,9 @@ class CfnDashboard(
|
|
|
85222
85224
|
|
|
85223
85225
|
@builtins.property
|
|
85224
85226
|
def all_sheets(self) -> typing.Any:
|
|
85225
|
-
'''The configuration
|
|
85227
|
+
'''The configuration that applies a filter to all sheets.
|
|
85228
|
+
|
|
85229
|
+
When you choose ``AllSheets`` as the value for a ``FilterScopeConfiguration`` , this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The ``AllSheetsFilterScopeConfiguration`` is chosen.
|
|
85226
85230
|
|
|
85227
85231
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterscopeconfiguration.html#cfn-quicksight-dashboard-filterscopeconfiguration-allsheets
|
|
85228
85232
|
'''
|
|
@@ -159359,7 +159363,7 @@ class CfnTemplate(
|
|
|
159359
159363
|
|
|
159360
159364
|
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
|
|
159361
159365
|
|
|
159362
|
-
:param all_sheets: The configuration
|
|
159366
|
+
:param all_sheets: The configuration that applies a filter to all sheets. When you choose ``AllSheets`` as the value for a ``FilterScopeConfiguration`` , this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The ``AllSheetsFilterScopeConfiguration`` is chosen.
|
|
159363
159367
|
:param selected_sheets: The configuration for applying a filter to specific sheets.
|
|
159364
159368
|
|
|
159365
159369
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterscopeconfiguration.html
|
|
@@ -159398,7 +159402,9 @@ class CfnTemplate(
|
|
|
159398
159402
|
|
|
159399
159403
|
@builtins.property
|
|
159400
159404
|
def all_sheets(self) -> typing.Any:
|
|
159401
|
-
'''The configuration
|
|
159405
|
+
'''The configuration that applies a filter to all sheets.
|
|
159406
|
+
|
|
159407
|
+
When you choose ``AllSheets`` as the value for a ``FilterScopeConfiguration`` , this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. The ``AllSheetsFilterScopeConfiguration`` is chosen.
|
|
159402
159408
|
|
|
159403
159409
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterscopeconfiguration.html#cfn-quicksight-template-filterscopeconfiguration-allsheets
|
|
159404
159410
|
'''
|