aws-cdk-lib 2.144.0__py3-none-any.whl → 2.145.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.144.0.jsii.tgz → aws-cdk-lib@2.145.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2_authorizers/__init__.py +27 -0
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +27 -0
- aws_cdk/aws_autoscaling/__init__.py +4 -4
- aws_cdk/aws_chatbot/__init__.py +38 -0
- aws_cdk/aws_codebuild/__init__.py +575 -16
- aws_cdk/aws_config/__init__.py +1305 -45
- aws_cdk/aws_ec2/__init__.py +42 -3
- aws_cdk/aws_eks/__init__.py +185 -41
- aws_cdk/aws_iam/__init__.py +3 -3
- aws_cdk/aws_lambda/__init__.py +12 -0
- aws_cdk/aws_logs/__init__.py +114 -8
- aws_cdk/aws_logs_destinations/__init__.py +11 -9
- aws_cdk/aws_mediaconnect/__init__.py +2 -6
- aws_cdk/aws_mediapackagev2/__init__.py +476 -0
- aws_cdk/aws_route53/__init__.py +3 -3
- aws_cdk/aws_securityhub/__init__.py +2415 -374
- aws_cdk/aws_securitylake/__init__.py +179 -314
- aws_cdk/aws_sqs/__init__.py +2 -2
- aws_cdk/pipelines/__init__.py +2 -0
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.145.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.145.0.dist-info}/RECORD +28 -28
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.145.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.145.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.145.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.145.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -9415,6 +9415,7 @@ class CfnCustomerGateway(
|
|
|
9415
9415
|
|
|
9416
9416
|
# the properties below are optional
|
|
9417
9417
|
bgp_asn=123,
|
|
9418
|
+
bgp_asn_extended=123,
|
|
9418
9419
|
certificate_arn="certificateArn",
|
|
9419
9420
|
device_name="deviceName",
|
|
9420
9421
|
tags=[CfnTag(
|
|
@@ -9432,6 +9433,7 @@ class CfnCustomerGateway(
|
|
|
9432
9433
|
ip_address: builtins.str,
|
|
9433
9434
|
type: builtins.str,
|
|
9434
9435
|
bgp_asn: typing.Optional[jsii.Number] = None,
|
|
9436
|
+
bgp_asn_extended: typing.Optional[jsii.Number] = None,
|
|
9435
9437
|
certificate_arn: typing.Optional[builtins.str] = None,
|
|
9436
9438
|
device_name: typing.Optional[builtins.str] = None,
|
|
9437
9439
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -9442,6 +9444,7 @@ class CfnCustomerGateway(
|
|
|
9442
9444
|
:param ip_address: IPv4 address for the customer gateway device's outside interface. The address must be static.
|
|
9443
9445
|
:param type: The type of VPN connection that this customer gateway supports ( ``ipsec.1`` ).
|
|
9444
9446
|
:param bgp_asn: For devices that support BGP, the customer gateway's BGP ASN. Default: 65000 Default: - 65000
|
|
9447
|
+
:param bgp_asn_extended:
|
|
9445
9448
|
:param certificate_arn: The Amazon Resource Name (ARN) for the customer gateway certificate.
|
|
9446
9449
|
:param device_name: The name of customer gateway device.
|
|
9447
9450
|
:param tags: One or more tags for the customer gateway.
|
|
@@ -9454,6 +9457,7 @@ class CfnCustomerGateway(
|
|
|
9454
9457
|
ip_address=ip_address,
|
|
9455
9458
|
type=type,
|
|
9456
9459
|
bgp_asn=bgp_asn,
|
|
9460
|
+
bgp_asn_extended=bgp_asn_extended,
|
|
9457
9461
|
certificate_arn=certificate_arn,
|
|
9458
9462
|
device_name=device_name,
|
|
9459
9463
|
tags=tags,
|
|
@@ -9550,6 +9554,18 @@ class CfnCustomerGateway(
|
|
|
9550
9554
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
9551
9555
|
jsii.set(self, "bgpAsn", value)
|
|
9552
9556
|
|
|
9557
|
+
@builtins.property
|
|
9558
|
+
@jsii.member(jsii_name="bgpAsnExtended")
|
|
9559
|
+
def bgp_asn_extended(self) -> typing.Optional[jsii.Number]:
|
|
9560
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "bgpAsnExtended"))
|
|
9561
|
+
|
|
9562
|
+
@bgp_asn_extended.setter
|
|
9563
|
+
def bgp_asn_extended(self, value: typing.Optional[jsii.Number]) -> None:
|
|
9564
|
+
if __debug__:
|
|
9565
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f41644d25c48e5c3c87a361ba478bdb4a18bf473fe1582fa35c6311f6d5284d8)
|
|
9566
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
9567
|
+
jsii.set(self, "bgpAsnExtended", value)
|
|
9568
|
+
|
|
9553
9569
|
@builtins.property
|
|
9554
9570
|
@jsii.member(jsii_name="certificateArn")
|
|
9555
9571
|
def certificate_arn(self) -> typing.Optional[builtins.str]:
|
|
@@ -9597,6 +9613,7 @@ class CfnCustomerGateway(
|
|
|
9597
9613
|
"ip_address": "ipAddress",
|
|
9598
9614
|
"type": "type",
|
|
9599
9615
|
"bgp_asn": "bgpAsn",
|
|
9616
|
+
"bgp_asn_extended": "bgpAsnExtended",
|
|
9600
9617
|
"certificate_arn": "certificateArn",
|
|
9601
9618
|
"device_name": "deviceName",
|
|
9602
9619
|
"tags": "tags",
|
|
@@ -9609,6 +9626,7 @@ class CfnCustomerGatewayProps:
|
|
|
9609
9626
|
ip_address: builtins.str,
|
|
9610
9627
|
type: builtins.str,
|
|
9611
9628
|
bgp_asn: typing.Optional[jsii.Number] = None,
|
|
9629
|
+
bgp_asn_extended: typing.Optional[jsii.Number] = None,
|
|
9612
9630
|
certificate_arn: typing.Optional[builtins.str] = None,
|
|
9613
9631
|
device_name: typing.Optional[builtins.str] = None,
|
|
9614
9632
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -9618,6 +9636,7 @@ class CfnCustomerGatewayProps:
|
|
|
9618
9636
|
:param ip_address: IPv4 address for the customer gateway device's outside interface. The address must be static.
|
|
9619
9637
|
:param type: The type of VPN connection that this customer gateway supports ( ``ipsec.1`` ).
|
|
9620
9638
|
:param bgp_asn: For devices that support BGP, the customer gateway's BGP ASN. Default: 65000 Default: - 65000
|
|
9639
|
+
:param bgp_asn_extended:
|
|
9621
9640
|
:param certificate_arn: The Amazon Resource Name (ARN) for the customer gateway certificate.
|
|
9622
9641
|
:param device_name: The name of customer gateway device.
|
|
9623
9642
|
:param tags: One or more tags for the customer gateway.
|
|
@@ -9637,6 +9656,7 @@ class CfnCustomerGatewayProps:
|
|
|
9637
9656
|
|
|
9638
9657
|
# the properties below are optional
|
|
9639
9658
|
bgp_asn=123,
|
|
9659
|
+
bgp_asn_extended=123,
|
|
9640
9660
|
certificate_arn="certificateArn",
|
|
9641
9661
|
device_name="deviceName",
|
|
9642
9662
|
tags=[CfnTag(
|
|
@@ -9650,6 +9670,7 @@ class CfnCustomerGatewayProps:
|
|
|
9650
9670
|
check_type(argname="argument ip_address", value=ip_address, expected_type=type_hints["ip_address"])
|
|
9651
9671
|
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
9652
9672
|
check_type(argname="argument bgp_asn", value=bgp_asn, expected_type=type_hints["bgp_asn"])
|
|
9673
|
+
check_type(argname="argument bgp_asn_extended", value=bgp_asn_extended, expected_type=type_hints["bgp_asn_extended"])
|
|
9653
9674
|
check_type(argname="argument certificate_arn", value=certificate_arn, expected_type=type_hints["certificate_arn"])
|
|
9654
9675
|
check_type(argname="argument device_name", value=device_name, expected_type=type_hints["device_name"])
|
|
9655
9676
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -9659,6 +9680,8 @@ class CfnCustomerGatewayProps:
|
|
|
9659
9680
|
}
|
|
9660
9681
|
if bgp_asn is not None:
|
|
9661
9682
|
self._values["bgp_asn"] = bgp_asn
|
|
9683
|
+
if bgp_asn_extended is not None:
|
|
9684
|
+
self._values["bgp_asn_extended"] = bgp_asn_extended
|
|
9662
9685
|
if certificate_arn is not None:
|
|
9663
9686
|
self._values["certificate_arn"] = certificate_arn
|
|
9664
9687
|
if device_name is not None:
|
|
@@ -9701,6 +9724,14 @@ class CfnCustomerGatewayProps:
|
|
|
9701
9724
|
result = self._values.get("bgp_asn")
|
|
9702
9725
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
9703
9726
|
|
|
9727
|
+
@builtins.property
|
|
9728
|
+
def bgp_asn_extended(self) -> typing.Optional[jsii.Number]:
|
|
9729
|
+
'''
|
|
9730
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html#cfn-ec2-customergateway-bgpasnextended
|
|
9731
|
+
'''
|
|
9732
|
+
result = self._values.get("bgp_asn_extended")
|
|
9733
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
9734
|
+
|
|
9704
9735
|
@builtins.property
|
|
9705
9736
|
def certificate_arn(self) -> typing.Optional[builtins.str]:
|
|
9706
9737
|
'''The Amazon Resource Name (ARN) for the customer gateway certificate.
|
|
@@ -47830,7 +47861,7 @@ class CfnSubnet(
|
|
|
47830
47861
|
subnetcount = subnetcount + 1
|
|
47831
47862
|
|
|
47832
47863
|
cluster = eks.Cluster(self, "hello-eks",
|
|
47833
|
-
version=eks.KubernetesVersion.
|
|
47864
|
+
version=eks.KubernetesVersion.V1_30,
|
|
47834
47865
|
vpc=vpc,
|
|
47835
47866
|
ip_family=eks.IpFamily.IP_V6,
|
|
47836
47867
|
vpc_subnets=[ec2.SubnetSelection(subnets=vpc.public_subnets)]
|
|
@@ -55618,7 +55649,7 @@ class CfnVPCCidrBlock(
|
|
|
55618
55649
|
subnetcount = subnetcount + 1
|
|
55619
55650
|
|
|
55620
55651
|
cluster = eks.Cluster(self, "hello-eks",
|
|
55621
|
-
version=eks.KubernetesVersion.
|
|
55652
|
+
version=eks.KubernetesVersion.V1_30,
|
|
55622
55653
|
vpc=vpc,
|
|
55623
55654
|
ip_family=eks.IpFamily.IP_V6,
|
|
55624
55655
|
vpc_subnets=[ec2.SubnetSelection(subnets=vpc.public_subnets)]
|
|
@@ -55911,7 +55942,7 @@ class CfnVPCCidrBlockProps:
|
|
|
55911
55942
|
subnetcount = subnetcount + 1
|
|
55912
55943
|
|
|
55913
55944
|
cluster = eks.Cluster(self, "hello-eks",
|
|
55914
|
-
version=eks.KubernetesVersion.
|
|
55945
|
+
version=eks.KubernetesVersion.V1_30,
|
|
55915
55946
|
vpc=vpc,
|
|
55916
55947
|
ip_family=eks.IpFamily.IP_V6,
|
|
55917
55948
|
vpc_subnets=[ec2.SubnetSelection(subnets=vpc.public_subnets)]
|
|
@@ -95188,6 +95219,7 @@ def _typecheckingstub__16b41182e007e05b84fd0c97afc1e26001e78a56de2eb5b10c9f809de
|
|
|
95188
95219
|
ip_address: builtins.str,
|
|
95189
95220
|
type: builtins.str,
|
|
95190
95221
|
bgp_asn: typing.Optional[jsii.Number] = None,
|
|
95222
|
+
bgp_asn_extended: typing.Optional[jsii.Number] = None,
|
|
95191
95223
|
certificate_arn: typing.Optional[builtins.str] = None,
|
|
95192
95224
|
device_name: typing.Optional[builtins.str] = None,
|
|
95193
95225
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -95225,6 +95257,12 @@ def _typecheckingstub__84dfb7d1775bd2bb124f990570c9a2ef23fafd01744cfe248fcb36056
|
|
|
95225
95257
|
"""Type checking stubs"""
|
|
95226
95258
|
pass
|
|
95227
95259
|
|
|
95260
|
+
def _typecheckingstub__f41644d25c48e5c3c87a361ba478bdb4a18bf473fe1582fa35c6311f6d5284d8(
|
|
95261
|
+
value: typing.Optional[jsii.Number],
|
|
95262
|
+
) -> None:
|
|
95263
|
+
"""Type checking stubs"""
|
|
95264
|
+
pass
|
|
95265
|
+
|
|
95228
95266
|
def _typecheckingstub__4a4b900e840c5be3a2b16a5177f91335cf813daeca359e549a639cb05a03ac63(
|
|
95229
95267
|
value: typing.Optional[builtins.str],
|
|
95230
95268
|
) -> None:
|
|
@@ -95248,6 +95286,7 @@ def _typecheckingstub__b0ef9a2e3e2b6937b21db500a1cd795126e924d9b920931a413ecdb66
|
|
|
95248
95286
|
ip_address: builtins.str,
|
|
95249
95287
|
type: builtins.str,
|
|
95250
95288
|
bgp_asn: typing.Optional[jsii.Number] = None,
|
|
95289
|
+
bgp_asn_extended: typing.Optional[jsii.Number] = None,
|
|
95251
95290
|
certificate_arn: typing.Optional[builtins.str] = None,
|
|
95252
95291
|
device_name: typing.Optional[builtins.str] = None,
|
|
95253
95292
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|