aws-cdk-lib 2.128.0__py3-none-any.whl → 2.129.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 +2 -10
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.128.0.jsii.tgz → aws-cdk-lib@2.129.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +6 -24
- aws_cdk/aws_amplify/__init__.py +1 -2
- aws_cdk/aws_appconfig/__init__.py +0 -16
- aws_cdk/aws_applicationautoscaling/__init__.py +55 -22
- aws_cdk/aws_appstream/__init__.py +14 -14
- aws_cdk/aws_appsync/__init__.py +334 -3
- aws_cdk/aws_autoscaling/__init__.py +11 -7
- aws_cdk/aws_batch/__init__.py +137 -16
- aws_cdk/aws_cleanrooms/__init__.py +1 -2
- aws_cdk/aws_cloudformation/__init__.py +2 -10
- aws_cdk/aws_cloudfront/__init__.py +15 -8
- aws_cdk/aws_cloudfront/experimental/__init__.py +22 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +332 -0
- aws_cdk/aws_cloudtrail/__init__.py +12 -2
- aws_cdk/aws_cloudwatch/__init__.py +4 -0
- aws_cdk/aws_codepipeline/__init__.py +463 -11
- aws_cdk/aws_cognito/__init__.py +0 -9
- aws_cdk/aws_config/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +6 -1
- aws_cdk/aws_controltower/__init__.py +527 -7
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_directoryservice/__init__.py +2 -3
- aws_cdk/aws_dynamodb/__init__.py +7 -0
- aws_cdk/aws_ec2/__init__.py +117 -210
- aws_cdk/aws_ecs/__init__.py +537 -3
- aws_cdk/aws_eks/__init__.py +1 -1
- aws_cdk/aws_elasticache/__init__.py +27 -20
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +3 -4
- aws_cdk/aws_emr/__init__.py +23 -3
- aws_cdk/aws_events_targets/__init__.py +64 -20
- aws_cdk/aws_fis/__init__.py +4 -4
- aws_cdk/aws_frauddetector/__init__.py +3 -3
- aws_cdk/aws_globalaccelerator/__init__.py +2 -6
- aws_cdk/aws_glue/__init__.py +84 -55
- aws_cdk/aws_groundstation/__init__.py +8 -12
- aws_cdk/aws_guardduty/__init__.py +74 -70
- aws_cdk/aws_iam/__init__.py +16 -23
- aws_cdk/aws_imagebuilder/__init__.py +178 -156
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +17 -10
- aws_cdk/aws_iotevents/__init__.py +4 -4
- aws_cdk/aws_iotfleetwise/__init__.py +10 -5
- aws_cdk/aws_iottwinmaker/__init__.py +3 -5
- aws_cdk/aws_iotwireless/__init__.py +35 -23
- aws_cdk/aws_kendra/__init__.py +36 -15
- aws_cdk/aws_kinesisfirehose/__init__.py +155 -114
- aws_cdk/aws_lambda/__init__.py +157 -12
- aws_cdk/aws_lambda_nodejs/__init__.py +22 -0
- aws_cdk/aws_lightsail/__init__.py +14 -18
- aws_cdk/aws_logs/__init__.py +15 -15
- aws_cdk/aws_mediaconnect/__init__.py +5 -3
- aws_cdk/aws_medialive/__init__.py +3 -12
- aws_cdk/aws_mediapackagev2/__init__.py +287 -286
- aws_cdk/aws_mediatailor/__init__.py +2 -2
- aws_cdk/aws_memorydb/__init__.py +2 -2
- aws_cdk/aws_msk/__init__.py +6 -3
- aws_cdk/aws_mwaa/__init__.py +10 -5
- aws_cdk/aws_neptunegraph/__init__.py +84 -66
- aws_cdk/aws_networkfirewall/__init__.py +5 -8
- aws_cdk/aws_networkmanager/__init__.py +3 -3
- aws_cdk/aws_nimblestudio/__init__.py +2 -4
- aws_cdk/aws_opensearchservice/__init__.py +6 -7
- aws_cdk/aws_osis/__init__.py +1 -3
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +5 -5
- aws_cdk/aws_quicksight/__init__.py +5 -10
- aws_cdk/aws_rds/__init__.py +38 -21
- aws_cdk/aws_redshift/__init__.py +9 -5
- aws_cdk/aws_redshiftserverless/__init__.py +62 -38
- aws_cdk/aws_rolesanywhere/__init__.py +41 -53
- aws_cdk/aws_route53/__init__.py +532 -6
- aws_cdk/aws_route53recoverycontrol/__init__.py +1 -3
- aws_cdk/aws_route53recoveryreadiness/__init__.py +2 -2
- aws_cdk/aws_route53resolver/__init__.py +1 -4
- aws_cdk/aws_s3/__init__.py +3 -1
- aws_cdk/aws_s3objectlambda/__init__.py +7 -4
- aws_cdk/aws_s3outposts/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +111 -11
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_sns/__init__.py +185 -38
- aws_cdk/aws_ssm/__init__.py +16 -16
- aws_cdk/aws_ssmincidents/__init__.py +1 -1
- aws_cdk/aws_synthetics/__init__.py +94 -21
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -2
- aws_cdk/aws_vpclattice/__init__.py +8 -4
- aws_cdk/aws_wafv2/__init__.py +14 -59
- aws_cdk/aws_workspaces/__init__.py +5 -4
- aws_cdk/aws_workspacesweb/__init__.py +6 -12
- aws_cdk/triggers/__init__.py +22 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/RECORD +98 -98
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_datasync/__init__.py
CHANGED
|
@@ -6850,7 +6850,7 @@ class CfnTask(
|
|
|
6850
6850
|
@builtins.property
|
|
6851
6851
|
@jsii.member(jsii_name="attrDestinationNetworkInterfaceArns")
|
|
6852
6852
|
def attr_destination_network_interface_arns(self) -> typing.List[builtins.str]:
|
|
6853
|
-
'''The ARNs of the destination
|
|
6853
|
+
'''The Amazon Resource Names (ARNs) of the destination ENIs (Elastic Network Interfaces) that were created for your subnet.
|
|
6854
6854
|
|
|
6855
6855
|
:cloudformationAttribute: DestinationNetworkInterfaceArns
|
|
6856
6856
|
'''
|
|
@@ -6859,7 +6859,7 @@ class CfnTask(
|
|
|
6859
6859
|
@builtins.property
|
|
6860
6860
|
@jsii.member(jsii_name="attrSourceNetworkInterfaceArns")
|
|
6861
6861
|
def attr_source_network_interface_arns(self) -> typing.List[builtins.str]:
|
|
6862
|
-
'''The ARNs of the source ENIs that were created for your subnet.
|
|
6862
|
+
'''The Amazon Resource Names (ARNs) of the source ENIs (Elastic Network Interfaces) that were created for your subnet.
|
|
6863
6863
|
|
|
6864
6864
|
:cloudformationAttribute: SourceNetworkInterfaceArns
|
|
6865
6865
|
'''
|
|
@@ -168,8 +168,7 @@ class CfnMicrosoftAD(
|
|
|
168
168
|
@builtins.property
|
|
169
169
|
@jsii.member(jsii_name="attrDnsIpAddresses")
|
|
170
170
|
def attr_dns_ip_addresses(self) -> typing.List[builtins.str]:
|
|
171
|
-
'''
|
|
172
|
-
|
|
171
|
+
'''
|
|
173
172
|
:cloudformationAttribute: DnsIpAddresses
|
|
174
173
|
'''
|
|
175
174
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrDnsIpAddresses"))
|
|
@@ -679,7 +678,7 @@ class CfnSimpleAD(
|
|
|
679
678
|
@builtins.property
|
|
680
679
|
@jsii.member(jsii_name="attrDnsIpAddresses")
|
|
681
680
|
def attr_dns_ip_addresses(self) -> typing.List[builtins.str]:
|
|
682
|
-
'''The IP addresses of the DNS servers for the directory, such as
|
|
681
|
+
'''The IP addresses of the DNS servers for the directory, such as [ "172.31.3.154", "172.31.63.203" ].
|
|
683
682
|
|
|
684
683
|
:cloudformationAttribute: DnsIpAddresses
|
|
685
684
|
'''
|
aws_cdk/aws_dynamodb/__init__.py
CHANGED
|
@@ -888,6 +888,7 @@ from .. import (
|
|
|
888
888
|
Resource as _Resource_45bc6135,
|
|
889
889
|
ResourceProps as _ResourceProps_15a65b4e,
|
|
890
890
|
TagManager as _TagManager_0a598cb3,
|
|
891
|
+
TimeZone as _TimeZone_cdd72ac9,
|
|
891
892
|
TreeInspector as _TreeInspector_488e0dd5,
|
|
892
893
|
)
|
|
893
894
|
from ..aws_applicationautoscaling import (
|
|
@@ -6614,6 +6615,7 @@ class IScalableTableAttribute(typing_extensions.Protocol):
|
|
|
6614
6615
|
max_capacity: typing.Optional[jsii.Number] = None,
|
|
6615
6616
|
min_capacity: typing.Optional[jsii.Number] = None,
|
|
6616
6617
|
start_time: typing.Optional[datetime.datetime] = None,
|
|
6618
|
+
time_zone: typing.Optional[_TimeZone_cdd72ac9] = None,
|
|
6617
6619
|
) -> None:
|
|
6618
6620
|
'''Add scheduled scaling for this scaling attribute.
|
|
6619
6621
|
|
|
@@ -6623,6 +6625,7 @@ class IScalableTableAttribute(typing_extensions.Protocol):
|
|
|
6623
6625
|
:param max_capacity: The new maximum capacity. During the scheduled time, the current capacity is above the maximum capacity, Application Auto Scaling scales in to the maximum capacity. At least one of maxCapacity and minCapacity must be supplied. Default: No new maximum capacity
|
|
6624
6626
|
:param min_capacity: The new minimum capacity. During the scheduled time, if the current capacity is below the minimum capacity, Application Auto Scaling scales out to the minimum capacity. At least one of maxCapacity and minCapacity must be supplied. Default: No new minimum capacity
|
|
6625
6627
|
:param start_time: When this scheduled action becomes active. Default: The rule is activate immediately
|
|
6628
|
+
:param time_zone: The time zone used when referring to the date and time of a scheduled action, when the scheduled action uses an at or cron expression. Default: - UTC
|
|
6626
6629
|
'''
|
|
6627
6630
|
...
|
|
6628
6631
|
|
|
@@ -6662,6 +6665,7 @@ class _IScalableTableAttributeProxy:
|
|
|
6662
6665
|
max_capacity: typing.Optional[jsii.Number] = None,
|
|
6663
6666
|
min_capacity: typing.Optional[jsii.Number] = None,
|
|
6664
6667
|
start_time: typing.Optional[datetime.datetime] = None,
|
|
6668
|
+
time_zone: typing.Optional[_TimeZone_cdd72ac9] = None,
|
|
6665
6669
|
) -> None:
|
|
6666
6670
|
'''Add scheduled scaling for this scaling attribute.
|
|
6667
6671
|
|
|
@@ -6671,6 +6675,7 @@ class _IScalableTableAttributeProxy:
|
|
|
6671
6675
|
:param max_capacity: The new maximum capacity. During the scheduled time, the current capacity is above the maximum capacity, Application Auto Scaling scales in to the maximum capacity. At least one of maxCapacity and minCapacity must be supplied. Default: No new maximum capacity
|
|
6672
6676
|
:param min_capacity: The new minimum capacity. During the scheduled time, if the current capacity is below the minimum capacity, Application Auto Scaling scales out to the minimum capacity. At least one of maxCapacity and minCapacity must be supplied. Default: No new minimum capacity
|
|
6673
6677
|
:param start_time: When this scheduled action becomes active. Default: The rule is activate immediately
|
|
6678
|
+
:param time_zone: The time zone used when referring to the date and time of a scheduled action, when the scheduled action uses an at or cron expression. Default: - UTC
|
|
6674
6679
|
'''
|
|
6675
6680
|
if __debug__:
|
|
6676
6681
|
type_hints = typing.get_type_hints(_typecheckingstub__e0bc3f8be0af0a33869cef649006f2abcc0905dc972dc29836e38cbb5f9c5530)
|
|
@@ -6681,6 +6686,7 @@ class _IScalableTableAttributeProxy:
|
|
|
6681
6686
|
max_capacity=max_capacity,
|
|
6682
6687
|
min_capacity=min_capacity,
|
|
6683
6688
|
start_time=start_time,
|
|
6689
|
+
time_zone=time_zone,
|
|
6684
6690
|
)
|
|
6685
6691
|
|
|
6686
6692
|
return typing.cast(None, jsii.invoke(self, "scaleOnSchedule", [id, actions]))
|
|
@@ -14193,6 +14199,7 @@ def _typecheckingstub__e0bc3f8be0af0a33869cef649006f2abcc0905dc972dc29836e38cbb5
|
|
|
14193
14199
|
max_capacity: typing.Optional[jsii.Number] = None,
|
|
14194
14200
|
min_capacity: typing.Optional[jsii.Number] = None,
|
|
14195
14201
|
start_time: typing.Optional[datetime.datetime] = None,
|
|
14202
|
+
time_zone: typing.Optional[_TimeZone_cdd72ac9] = None,
|
|
14196
14203
|
) -> None:
|
|
14197
14204
|
"""Type checking stubs"""
|
|
14198
14205
|
pass
|