aws-cdk-lib 2.139.1__py3-none-any.whl → 2.141.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.139.1.jsii.tgz → aws-cdk-lib@2.141.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +70 -56
- aws_cdk/aws_apigateway/__init__.py +126 -53
- aws_cdk/aws_applicationautoscaling/__init__.py +1 -4
- aws_cdk/aws_arczonalshift/__init__.py +49 -44
- aws_cdk/aws_bedrock/__init__.py +2829 -147
- aws_cdk/aws_cloudfront/__init__.py +51 -9
- aws_cdk/aws_cloudtrail/__init__.py +13 -4
- aws_cdk/aws_codecommit/__init__.py +72 -46
- aws_cdk/aws_connectcampaigns/__init__.py +34 -4
- aws_cdk/aws_datasync/__init__.py +96 -75
- aws_cdk/aws_dms/__init__.py +0 -269
- aws_cdk/aws_dynamodb/__init__.py +410 -0
- aws_cdk/aws_ec2/__init__.py +239 -84
- aws_cdk/aws_ecr/__init__.py +32 -7
- aws_cdk/aws_ecs/__init__.py +2 -4
- aws_cdk/aws_efs/__init__.py +16 -2
- aws_cdk/aws_eks/__init__.py +57 -0
- aws_cdk/aws_entityresolution/__init__.py +6 -2
- aws_cdk/aws_events/__init__.py +115 -0
- aws_cdk/aws_events_targets/__init__.py +15 -0
- aws_cdk/aws_fis/__init__.py +2 -1
- aws_cdk/aws_fms/__init__.py +7 -7
- aws_cdk/aws_gamelift/__init__.py +1984 -107
- aws_cdk/aws_globalaccelerator/__init__.py +20 -16
- aws_cdk/aws_iam/__init__.py +2 -2
- aws_cdk/aws_ivs/__init__.py +1 -3
- aws_cdk/aws_kinesis/__init__.py +21 -0
- aws_cdk/aws_kinesisvideo/__init__.py +6 -4
- aws_cdk/aws_kms/__init__.py +33 -6
- aws_cdk/aws_lambda/__init__.py +0 -9
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_medialive/__init__.py +444 -3
- aws_cdk/aws_oam/__init__.py +45 -11
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_paymentcryptography/__init__.py +1155 -0
- aws_cdk/aws_personalize/__init__.py +8 -2
- aws_cdk/aws_pinpoint/__init__.py +7 -5
- aws_cdk/aws_qbusiness/__init__.py +5583 -0
- aws_cdk/aws_quicksight/__init__.py +10063 -1450
- aws_cdk/aws_rds/__init__.py +77 -5
- aws_cdk/aws_redshiftserverless/__init__.py +13 -9
- aws_cdk/aws_route53/__init__.py +350 -0
- aws_cdk/aws_route53profiles/__init__.py +1048 -0
- aws_cdk/aws_s3/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +30 -30
- aws_cdk/aws_ses/__init__.py +9 -9
- aws_cdk/aws_transfer/__init__.py +102 -37
- aws_cdk/aws_voiceid/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +92 -6
- aws_cdk/custom_resources/__init__.py +23 -2
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/RECORD +60 -57
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_oam/__init__.py
CHANGED
|
@@ -116,7 +116,7 @@ class CfnLink(
|
|
|
116
116
|
:param resource_types: An array of strings that define which types of data that the source account shares with the monitoring account. Valid values are ``AWS::CloudWatch::Metric | AWS::Logs::LogGroup | AWS::XRay::Trace | AWS::ApplicationInsights::Application | AWS::InternetMonitor::Monitor`` .
|
|
117
117
|
:param sink_identifier: The ARN of the sink in the monitoring account that you want to link to. You can use `ListSinks <https://docs.aws.amazon.com/OAM/latest/APIReference/API_ListSinks.html>`_ to find the ARNs of sinks.
|
|
118
118
|
:param label_template: Specify a friendly human-readable name to use to identify this source account when you are viewing data from it in the monitoring account. You can include the following variables in your template: - ``$AccountName`` is the name of the account - ``$AccountEmail`` is a globally-unique email address, which includes the email domain, such as ``mariagarcia@example.com`` - ``$AccountEmailNoDomain`` is an email address without the domain name, such as ``mariagarcia``
|
|
119
|
-
:param link_configuration:
|
|
119
|
+
:param link_configuration: Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.
|
|
120
120
|
:param tags: An array of key-value pairs to apply to the link. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
121
121
|
'''
|
|
122
122
|
if __debug__:
|
|
@@ -240,6 +240,7 @@ class CfnLink(
|
|
|
240
240
|
def link_configuration(
|
|
241
241
|
self,
|
|
242
242
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLink.LinkConfigurationProperty"]]:
|
|
243
|
+
'''Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.'''
|
|
243
244
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLink.LinkConfigurationProperty"]], jsii.get(self, "linkConfiguration"))
|
|
244
245
|
|
|
245
246
|
@link_configuration.setter
|
|
@@ -283,9 +284,10 @@ class CfnLink(
|
|
|
283
284
|
log_group_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLink.LinkFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
284
285
|
metric_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLink.LinkFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
285
286
|
) -> None:
|
|
286
|
-
'''
|
|
287
|
-
|
|
288
|
-
:param
|
|
287
|
+
'''Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.
|
|
288
|
+
|
|
289
|
+
:param log_group_configuration: Use this structure to filter which log groups are to share log events from this source account to the monitoring account.
|
|
290
|
+
:param metric_configuration: Use this structure to filter which metric namespaces are to be shared from the source account to the monitoring account.
|
|
289
291
|
|
|
290
292
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkconfiguration.html
|
|
291
293
|
:exampleMetadata: fixture=_generated
|
|
@@ -319,7 +321,8 @@ class CfnLink(
|
|
|
319
321
|
def log_group_configuration(
|
|
320
322
|
self,
|
|
321
323
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLink.LinkFilterProperty"]]:
|
|
322
|
-
'''
|
|
324
|
+
'''Use this structure to filter which log groups are to share log events from this source account to the monitoring account.
|
|
325
|
+
|
|
323
326
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkconfiguration.html#cfn-oam-link-linkconfiguration-loggroupconfiguration
|
|
324
327
|
'''
|
|
325
328
|
result = self._values.get("log_group_configuration")
|
|
@@ -329,7 +332,8 @@ class CfnLink(
|
|
|
329
332
|
def metric_configuration(
|
|
330
333
|
self,
|
|
331
334
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLink.LinkFilterProperty"]]:
|
|
332
|
-
'''
|
|
335
|
+
'''Use this structure to filter which metric namespaces are to be shared from the source account to the monitoring account.
|
|
336
|
+
|
|
333
337
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkconfiguration.html#cfn-oam-link-linkconfiguration-metricconfiguration
|
|
334
338
|
'''
|
|
335
339
|
result = self._values.get("metric_configuration")
|
|
@@ -353,8 +357,11 @@ class CfnLink(
|
|
|
353
357
|
)
|
|
354
358
|
class LinkFilterProperty:
|
|
355
359
|
def __init__(self, *, filter: builtins.str) -> None:
|
|
356
|
-
'''
|
|
357
|
-
|
|
360
|
+
'''When used in ``MetricConfiguration`` this field specifies which metric namespaces are to be shared with the monitoring account.
|
|
361
|
+
|
|
362
|
+
When used in ``LogGroupConfiguration`` this field specifies which log groups are to share their log events with the monitoring account. Use the term ``LogGroupName`` and one or more of the following operands.
|
|
363
|
+
|
|
364
|
+
:param filter: When used in ``MetricConfiguration`` this field specifies which metric namespaces are to be shared with the monitoring account. When used in ``LogGroupConfiguration`` this field specifies which log groups are to share their log events with the monitoring account. Use the term ``LogGroupName`` and one or more of the following operands. Use single quotation marks (') around log group names and metric namespaces. The matching of log group names and metric namespaces is case sensitive. Each filter has a limit of five conditional operands. Conditional operands are ``AND`` and ``OR`` . - ``=`` and ``!=`` - ``AND`` - ``OR`` - ``LIKE`` and ``NOT LIKE`` . These can be used only as prefix searches. Include a ``%`` at the end of the string that you want to search for and include. - ``IN`` and ``NOT IN`` , using parentheses ``( )`` Examples: - ``Namespace NOT LIKE 'AWS/%'`` includes only namespaces that don't start with ``AWS/`` , such as custom namespaces. - ``Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3')`` includes only the metrics in the EC2, Elastic Load Balancing , and Amazon S3 namespaces. - ``Namespace = 'AWS/EC2' OR Namespace NOT LIKE 'AWS/%'`` includes only the EC2 namespace and your custom namespaces. - ``LogGroupName IN ('This-Log-Group', 'Other-Log-Group')`` includes only the log groups with names ``This-Log-Group`` and ``Other-Log-Group`` . - ``LogGroupName NOT IN ('Private-Log-Group', 'Private-Log-Group-2')`` includes all log groups except the log groups with names ``Private-Log-Group`` and ``Private-Log-Group-2`` . - ``LogGroupName LIKE 'aws/lambda/%' OR LogGroupName LIKE 'AWSLogs%'`` includes all log groups that have names that start with ``aws/lambda/`` or ``AWSLogs`` . .. epigraph:: If you are updating a link that uses filters, you can specify ``*`` as the only value for the ``filter`` parameter to delete the filter and share all log groups with the monitoring account.
|
|
358
365
|
|
|
359
366
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkfilter.html
|
|
360
367
|
:exampleMetadata: fixture=_generated
|
|
@@ -378,7 +385,33 @@ class CfnLink(
|
|
|
378
385
|
|
|
379
386
|
@builtins.property
|
|
380
387
|
def filter(self) -> builtins.str:
|
|
381
|
-
'''
|
|
388
|
+
'''When used in ``MetricConfiguration`` this field specifies which metric namespaces are to be shared with the monitoring account.
|
|
389
|
+
|
|
390
|
+
When used in ``LogGroupConfiguration`` this field specifies which log groups are to share their log events with the monitoring account. Use the term ``LogGroupName`` and one or more of the following operands.
|
|
391
|
+
|
|
392
|
+
Use single quotation marks (') around log group names and metric namespaces.
|
|
393
|
+
|
|
394
|
+
The matching of log group names and metric namespaces is case sensitive. Each filter has a limit of five conditional operands. Conditional operands are ``AND`` and ``OR`` .
|
|
395
|
+
|
|
396
|
+
- ``=`` and ``!=``
|
|
397
|
+
- ``AND``
|
|
398
|
+
- ``OR``
|
|
399
|
+
- ``LIKE`` and ``NOT LIKE`` . These can be used only as prefix searches. Include a ``%`` at the end of the string that you want to search for and include.
|
|
400
|
+
- ``IN`` and ``NOT IN`` , using parentheses ``( )``
|
|
401
|
+
|
|
402
|
+
Examples:
|
|
403
|
+
|
|
404
|
+
- ``Namespace NOT LIKE 'AWS/%'`` includes only namespaces that don't start with ``AWS/`` , such as custom namespaces.
|
|
405
|
+
- ``Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3')`` includes only the metrics in the EC2, Elastic Load Balancing , and Amazon S3 namespaces.
|
|
406
|
+
- ``Namespace = 'AWS/EC2' OR Namespace NOT LIKE 'AWS/%'`` includes only the EC2 namespace and your custom namespaces.
|
|
407
|
+
- ``LogGroupName IN ('This-Log-Group', 'Other-Log-Group')`` includes only the log groups with names ``This-Log-Group`` and ``Other-Log-Group`` .
|
|
408
|
+
- ``LogGroupName NOT IN ('Private-Log-Group', 'Private-Log-Group-2')`` includes all log groups except the log groups with names ``Private-Log-Group`` and ``Private-Log-Group-2`` .
|
|
409
|
+
- ``LogGroupName LIKE 'aws/lambda/%' OR LogGroupName LIKE 'AWSLogs%'`` includes all log groups that have names that start with ``aws/lambda/`` or ``AWSLogs`` .
|
|
410
|
+
|
|
411
|
+
.. epigraph::
|
|
412
|
+
|
|
413
|
+
If you are updating a link that uses filters, you can specify ``*`` as the only value for the ``filter`` parameter to delete the filter and share all log groups with the monitoring account.
|
|
414
|
+
|
|
382
415
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkfilter.html#cfn-oam-link-linkfilter-filter
|
|
383
416
|
'''
|
|
384
417
|
result = self._values.get("filter")
|
|
@@ -423,7 +456,7 @@ class CfnLinkProps:
|
|
|
423
456
|
:param resource_types: An array of strings that define which types of data that the source account shares with the monitoring account. Valid values are ``AWS::CloudWatch::Metric | AWS::Logs::LogGroup | AWS::XRay::Trace | AWS::ApplicationInsights::Application | AWS::InternetMonitor::Monitor`` .
|
|
424
457
|
:param sink_identifier: The ARN of the sink in the monitoring account that you want to link to. You can use `ListSinks <https://docs.aws.amazon.com/OAM/latest/APIReference/API_ListSinks.html>`_ to find the ARNs of sinks.
|
|
425
458
|
:param label_template: Specify a friendly human-readable name to use to identify this source account when you are viewing data from it in the monitoring account. You can include the following variables in your template: - ``$AccountName`` is the name of the account - ``$AccountEmail`` is a globally-unique email address, which includes the email domain, such as ``mariagarcia@example.com`` - ``$AccountEmailNoDomain`` is an email address without the domain name, such as ``mariagarcia``
|
|
426
|
-
:param link_configuration:
|
|
459
|
+
:param link_configuration: Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.
|
|
427
460
|
:param tags: An array of key-value pairs to apply to the link. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
428
461
|
|
|
429
462
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-oam-link.html
|
|
@@ -515,7 +548,8 @@ class CfnLinkProps:
|
|
|
515
548
|
def link_configuration(
|
|
516
549
|
self,
|
|
517
550
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnLink.LinkConfigurationProperty]]:
|
|
518
|
-
'''
|
|
551
|
+
'''Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.
|
|
552
|
+
|
|
519
553
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-oam-link.html#cfn-oam-link-linkconfiguration
|
|
520
554
|
'''
|
|
521
555
|
result = self._values.get("link_configuration")
|
aws_cdk/aws_omics/__init__.py
CHANGED
|
@@ -2565,7 +2565,7 @@ class CfnWorkflow(
|
|
|
2565
2565
|
:param main: The path of the main definition file for the workflow.
|
|
2566
2566
|
:param name: The workflow's name.
|
|
2567
2567
|
:param parameter_template: The workflow's parameter template.
|
|
2568
|
-
:param storage_capacity:
|
|
2568
|
+
:param storage_capacity: The default storage capacity for the workflow runs, in gibibytes.
|
|
2569
2569
|
:param tags: Tags for the workflow.
|
|
2570
2570
|
'''
|
|
2571
2571
|
if __debug__:
|
|
@@ -2770,7 +2770,7 @@ class CfnWorkflow(
|
|
|
2770
2770
|
@builtins.property
|
|
2771
2771
|
@jsii.member(jsii_name="storageCapacity")
|
|
2772
2772
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
2773
|
-
'''
|
|
2773
|
+
'''The default storage capacity for the workflow runs, in gibibytes.'''
|
|
2774
2774
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
|
|
2775
2775
|
|
|
2776
2776
|
@storage_capacity.setter
|
|
@@ -2907,7 +2907,7 @@ class CfnWorkflowProps:
|
|
|
2907
2907
|
:param main: The path of the main definition file for the workflow.
|
|
2908
2908
|
:param name: The workflow's name.
|
|
2909
2909
|
:param parameter_template: The workflow's parameter template.
|
|
2910
|
-
:param storage_capacity:
|
|
2910
|
+
:param storage_capacity: The default storage capacity for the workflow runs, in gibibytes.
|
|
2911
2911
|
:param tags: Tags for the workflow.
|
|
2912
2912
|
|
|
2913
2913
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
|
|
@@ -3035,7 +3035,7 @@ class CfnWorkflowProps:
|
|
|
3035
3035
|
|
|
3036
3036
|
@builtins.property
|
|
3037
3037
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
3038
|
-
'''
|
|
3038
|
+
'''The default storage capacity for the workflow runs, in gibibytes.
|
|
3039
3039
|
|
|
3040
3040
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagecapacity
|
|
3041
3041
|
'''
|