aws-cdk-lib 2.212.0__py3-none-any.whl → 2.214.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 +23 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.212.0.jsii.tgz → aws-cdk-lib@2.214.0.jsii.tgz} +0 -0
- aws_cdk/aws_appconfig/__init__.py +18 -6
- aws_cdk/aws_appintegrations/__init__.py +4 -4
- aws_cdk/aws_apprunner/__init__.py +5 -8
- aws_cdk/aws_aps/__init__.py +243 -10
- aws_cdk/aws_b2bi/__init__.py +1015 -128
- aws_cdk/aws_batch/__init__.py +33 -11
- aws_cdk/aws_bedrock/__init__.py +22 -216
- aws_cdk/aws_budgets/__init__.py +18 -0
- aws_cdk/aws_certificatemanager/__init__.py +96 -15
- aws_cdk/aws_cloudformation/__init__.py +3 -3
- aws_cdk/aws_cloudwatch/__init__.py +80 -49
- aws_cdk/aws_cognito/__init__.py +76 -5
- aws_cdk/aws_connect/__init__.py +188 -2
- aws_cdk/aws_datazone/__init__.py +2267 -0
- aws_cdk/aws_deadline/__init__.py +6 -5
- aws_cdk/aws_dynamodb/__init__.py +418 -56
- aws_cdk/aws_ec2/__init__.py +51 -10
- aws_cdk/aws_ecs/__init__.py +288 -25
- aws_cdk/aws_ecs_patterns/__init__.py +2 -0
- aws_cdk/aws_eks/__init__.py +124 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +6 -2
- aws_cdk/aws_entityresolution/__init__.py +107 -0
- aws_cdk/aws_events/__init__.py +153 -55
- aws_cdk/aws_events_targets/__init__.py +87 -36
- aws_cdk/aws_fsx/__init__.py +62 -0
- aws_cdk/aws_gameliftstreams/__init__.py +1 -1
- aws_cdk/aws_glue/__init__.py +205 -23
- aws_cdk/aws_guardduty/__init__.py +205 -100
- aws_cdk/aws_iam/__init__.py +18 -0
- aws_cdk/aws_inspectorv2/__init__.py +125 -80
- aws_cdk/aws_iot/__init__.py +37 -19
- aws_cdk/aws_iotsitewise/__init__.py +111 -75
- aws_cdk/aws_ivs/__init__.py +17 -17
- aws_cdk/aws_kinesisanalytics/__init__.py +122 -3
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +122 -3
- aws_cdk/aws_lambda/__init__.py +23 -2
- aws_cdk/aws_logs/__init__.py +20 -15
- aws_cdk/aws_mediapackagev2/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +477 -2
- aws_cdk/aws_qbusiness/__init__.py +4 -2
- aws_cdk/aws_rds/__init__.py +132 -4
- aws_cdk/aws_route53/__init__.py +18 -11
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3_deployment/__init__.py +45 -0
- aws_cdk/aws_sagemaker/__init__.py +653 -0
- aws_cdk/aws_servicediscovery/__init__.py +22 -37
- aws_cdk/aws_sns/__init__.py +12 -2
- aws_cdk/aws_sns_subscriptions/__init__.py +3 -1
- aws_cdk/aws_sqs/__init__.py +5 -5
- aws_cdk/aws_ssm/__init__.py +8 -3
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_synthetics/__init__.py +222 -12
- aws_cdk/aws_transfer/__init__.py +15 -2
- aws_cdk/aws_vpclattice/__init__.py +41 -0
- aws_cdk/aws_workspacesweb/__init__.py +71 -41
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/RECORD +65 -65
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -25850,7 +25850,7 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25850
25850
|
metaclass=jsii.JSIIMeta,
|
|
25851
25851
|
jsii_type="aws-cdk-lib.aws_ec2.CfnIpPoolRouteTableAssociation",
|
|
25852
25852
|
):
|
|
25853
|
-
'''
|
|
25853
|
+
'''A route server association is the connection established between a route server and a VPC.
|
|
25854
25854
|
|
|
25855
25855
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ippoolroutetableassociation.html
|
|
25856
25856
|
:cloudformationResource: AWS::EC2::IpPoolRouteTableAssociation
|
|
@@ -25879,8 +25879,8 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25879
25879
|
'''
|
|
25880
25880
|
:param scope: Scope in which this resource is defined.
|
|
25881
25881
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
25882
|
-
:param public_ipv4_pool: The ID of
|
|
25883
|
-
:param route_table_id: The ID of
|
|
25882
|
+
:param public_ipv4_pool: The ID of a public IPv4 address pool.
|
|
25883
|
+
:param route_table_id: The ID of a route table.
|
|
25884
25884
|
'''
|
|
25885
25885
|
if __debug__:
|
|
25886
25886
|
type_hints = typing.get_type_hints(_typecheckingstub__d2e346c37572137e6dfe14e676bbcd2ecce12183e9c91e6bac858b8287c38d18)
|
|
@@ -25925,7 +25925,7 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25925
25925
|
@builtins.property
|
|
25926
25926
|
@jsii.member(jsii_name="attrAssociationId")
|
|
25927
25927
|
def attr_association_id(self) -> builtins.str:
|
|
25928
|
-
'''The route table association
|
|
25928
|
+
'''The ID of a route table association.
|
|
25929
25929
|
|
|
25930
25930
|
:cloudformationAttribute: AssociationId
|
|
25931
25931
|
'''
|
|
@@ -25939,7 +25939,7 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25939
25939
|
@builtins.property
|
|
25940
25940
|
@jsii.member(jsii_name="publicIpv4Pool")
|
|
25941
25941
|
def public_ipv4_pool(self) -> builtins.str:
|
|
25942
|
-
'''The ID of
|
|
25942
|
+
'''The ID of a public IPv4 address pool.'''
|
|
25943
25943
|
return typing.cast(builtins.str, jsii.get(self, "publicIpv4Pool"))
|
|
25944
25944
|
|
|
25945
25945
|
@public_ipv4_pool.setter
|
|
@@ -25952,7 +25952,7 @@ class CfnIpPoolRouteTableAssociation(
|
|
|
25952
25952
|
@builtins.property
|
|
25953
25953
|
@jsii.member(jsii_name="routeTableId")
|
|
25954
25954
|
def route_table_id(self) -> builtins.str:
|
|
25955
|
-
'''The ID of
|
|
25955
|
+
'''The ID of a route table.'''
|
|
25956
25956
|
return typing.cast(builtins.str, jsii.get(self, "routeTableId"))
|
|
25957
25957
|
|
|
25958
25958
|
@route_table_id.setter
|
|
@@ -25980,8 +25980,8 @@ class CfnIpPoolRouteTableAssociationProps:
|
|
|
25980
25980
|
) -> None:
|
|
25981
25981
|
'''Properties for defining a ``CfnIpPoolRouteTableAssociation``.
|
|
25982
25982
|
|
|
25983
|
-
:param public_ipv4_pool: The ID of
|
|
25984
|
-
:param route_table_id: The ID of
|
|
25983
|
+
:param public_ipv4_pool: The ID of a public IPv4 address pool.
|
|
25984
|
+
:param route_table_id: The ID of a route table.
|
|
25985
25985
|
|
|
25986
25986
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ippoolroutetableassociation.html
|
|
25987
25987
|
:exampleMetadata: fixture=_generated
|
|
@@ -26008,7 +26008,7 @@ class CfnIpPoolRouteTableAssociationProps:
|
|
|
26008
26008
|
|
|
26009
26009
|
@builtins.property
|
|
26010
26010
|
def public_ipv4_pool(self) -> builtins.str:
|
|
26011
|
-
'''The ID of
|
|
26011
|
+
'''The ID of a public IPv4 address pool.
|
|
26012
26012
|
|
|
26013
26013
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ippoolroutetableassociation.html#cfn-ec2-ippoolroutetableassociation-publicipv4pool
|
|
26014
26014
|
'''
|
|
@@ -26018,7 +26018,7 @@ class CfnIpPoolRouteTableAssociationProps:
|
|
|
26018
26018
|
|
|
26019
26019
|
@builtins.property
|
|
26020
26020
|
def route_table_id(self) -> builtins.str:
|
|
26021
|
-
'''The ID of
|
|
26021
|
+
'''The ID of a route table.
|
|
26022
26022
|
|
|
26023
26023
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ippoolroutetableassociation.html#cfn-ec2-ippoolroutetableassociation-routetableid
|
|
26024
26024
|
'''
|
|
@@ -65018,6 +65018,7 @@ class CfnVPNConnection(
|
|
|
65018
65018
|
local_ipv4_network_cidr="localIpv4NetworkCidr",
|
|
65019
65019
|
local_ipv6_network_cidr="localIpv6NetworkCidr",
|
|
65020
65020
|
outside_ip_address_type="outsideIpAddressType",
|
|
65021
|
+
pre_shared_key_storage="preSharedKeyStorage",
|
|
65021
65022
|
remote_ipv4_network_cidr="remoteIpv4NetworkCidr",
|
|
65022
65023
|
remote_ipv6_network_cidr="remoteIpv6NetworkCidr",
|
|
65023
65024
|
static_routes_only=False,
|
|
@@ -65085,6 +65086,7 @@ class CfnVPNConnection(
|
|
|
65085
65086
|
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
65086
65087
|
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
65087
65088
|
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
65089
|
+
pre_shared_key_storage: typing.Optional[builtins.str] = None,
|
|
65088
65090
|
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
65089
65091
|
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
65090
65092
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
@@ -65104,6 +65106,7 @@ class CfnVPNConnection(
|
|
|
65104
65106
|
:param local_ipv4_network_cidr: The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``0.0.0.0/0``
|
|
65105
65107
|
:param local_ipv6_network_cidr: The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``::/0``
|
|
65106
65108
|
:param outside_ip_address_type: The type of IP address assigned to the outside interface of the customer gateway device. Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6`` Default: ``PublicIpv4``
|
|
65109
|
+
:param pre_shared_key_storage: Describes the storage location for an instance store-backed AMI.
|
|
65107
65110
|
:param remote_ipv4_network_cidr: The IPv4 CIDR on the AWS side of the VPN connection. Default: ``0.0.0.0/0``
|
|
65108
65111
|
:param remote_ipv6_network_cidr: The IPv6 CIDR on the AWS side of the VPN connection. Default: ``::/0``
|
|
65109
65112
|
:param static_routes_only: Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP. If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true`` .
|
|
@@ -65125,6 +65128,7 @@ class CfnVPNConnection(
|
|
|
65125
65128
|
local_ipv4_network_cidr=local_ipv4_network_cidr,
|
|
65126
65129
|
local_ipv6_network_cidr=local_ipv6_network_cidr,
|
|
65127
65130
|
outside_ip_address_type=outside_ip_address_type,
|
|
65131
|
+
pre_shared_key_storage=pre_shared_key_storage,
|
|
65128
65132
|
remote_ipv4_network_cidr=remote_ipv4_network_cidr,
|
|
65129
65133
|
remote_ipv6_network_cidr=remote_ipv6_network_cidr,
|
|
65130
65134
|
static_routes_only=static_routes_only,
|
|
@@ -65271,6 +65275,19 @@ class CfnVPNConnection(
|
|
|
65271
65275
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
65272
65276
|
jsii.set(self, "outsideIpAddressType", value) # pyright: ignore[reportArgumentType]
|
|
65273
65277
|
|
|
65278
|
+
@builtins.property
|
|
65279
|
+
@jsii.member(jsii_name="preSharedKeyStorage")
|
|
65280
|
+
def pre_shared_key_storage(self) -> typing.Optional[builtins.str]:
|
|
65281
|
+
'''Describes the storage location for an instance store-backed AMI.'''
|
|
65282
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "preSharedKeyStorage"))
|
|
65283
|
+
|
|
65284
|
+
@pre_shared_key_storage.setter
|
|
65285
|
+
def pre_shared_key_storage(self, value: typing.Optional[builtins.str]) -> None:
|
|
65286
|
+
if __debug__:
|
|
65287
|
+
type_hints = typing.get_type_hints(_typecheckingstub__04c10bdc6cd7351aee49220faa02dae717ee7f48627da691fb09880833968d0e)
|
|
65288
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
65289
|
+
jsii.set(self, "preSharedKeyStorage", value) # pyright: ignore[reportArgumentType]
|
|
65290
|
+
|
|
65274
65291
|
@builtins.property
|
|
65275
65292
|
@jsii.member(jsii_name="remoteIpv4NetworkCidr")
|
|
65276
65293
|
def remote_ipv4_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
@@ -66394,6 +66411,7 @@ class CfnVPNConnection(
|
|
|
66394
66411
|
"local_ipv4_network_cidr": "localIpv4NetworkCidr",
|
|
66395
66412
|
"local_ipv6_network_cidr": "localIpv6NetworkCidr",
|
|
66396
66413
|
"outside_ip_address_type": "outsideIpAddressType",
|
|
66414
|
+
"pre_shared_key_storage": "preSharedKeyStorage",
|
|
66397
66415
|
"remote_ipv4_network_cidr": "remoteIpv4NetworkCidr",
|
|
66398
66416
|
"remote_ipv6_network_cidr": "remoteIpv6NetworkCidr",
|
|
66399
66417
|
"static_routes_only": "staticRoutesOnly",
|
|
@@ -66415,6 +66433,7 @@ class CfnVPNConnectionProps:
|
|
|
66415
66433
|
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
66416
66434
|
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
66417
66435
|
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
66436
|
+
pre_shared_key_storage: typing.Optional[builtins.str] = None,
|
|
66418
66437
|
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
66419
66438
|
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
66420
66439
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
@@ -66433,6 +66452,7 @@ class CfnVPNConnectionProps:
|
|
|
66433
66452
|
:param local_ipv4_network_cidr: The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``0.0.0.0/0``
|
|
66434
66453
|
:param local_ipv6_network_cidr: The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``::/0``
|
|
66435
66454
|
:param outside_ip_address_type: The type of IP address assigned to the outside interface of the customer gateway device. Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6`` Default: ``PublicIpv4``
|
|
66455
|
+
:param pre_shared_key_storage: Describes the storage location for an instance store-backed AMI.
|
|
66436
66456
|
:param remote_ipv4_network_cidr: The IPv4 CIDR on the AWS side of the VPN connection. Default: ``0.0.0.0/0``
|
|
66437
66457
|
:param remote_ipv6_network_cidr: The IPv6 CIDR on the AWS side of the VPN connection. Default: ``::/0``
|
|
66438
66458
|
:param static_routes_only: Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP. If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true`` .
|
|
@@ -66461,6 +66481,7 @@ class CfnVPNConnectionProps:
|
|
|
66461
66481
|
local_ipv4_network_cidr="localIpv4NetworkCidr",
|
|
66462
66482
|
local_ipv6_network_cidr="localIpv6NetworkCidr",
|
|
66463
66483
|
outside_ip_address_type="outsideIpAddressType",
|
|
66484
|
+
pre_shared_key_storage="preSharedKeyStorage",
|
|
66464
66485
|
remote_ipv4_network_cidr="remoteIpv4NetworkCidr",
|
|
66465
66486
|
remote_ipv6_network_cidr="remoteIpv6NetworkCidr",
|
|
66466
66487
|
static_routes_only=False,
|
|
@@ -66524,6 +66545,7 @@ class CfnVPNConnectionProps:
|
|
|
66524
66545
|
check_type(argname="argument local_ipv4_network_cidr", value=local_ipv4_network_cidr, expected_type=type_hints["local_ipv4_network_cidr"])
|
|
66525
66546
|
check_type(argname="argument local_ipv6_network_cidr", value=local_ipv6_network_cidr, expected_type=type_hints["local_ipv6_network_cidr"])
|
|
66526
66547
|
check_type(argname="argument outside_ip_address_type", value=outside_ip_address_type, expected_type=type_hints["outside_ip_address_type"])
|
|
66548
|
+
check_type(argname="argument pre_shared_key_storage", value=pre_shared_key_storage, expected_type=type_hints["pre_shared_key_storage"])
|
|
66527
66549
|
check_type(argname="argument remote_ipv4_network_cidr", value=remote_ipv4_network_cidr, expected_type=type_hints["remote_ipv4_network_cidr"])
|
|
66528
66550
|
check_type(argname="argument remote_ipv6_network_cidr", value=remote_ipv6_network_cidr, expected_type=type_hints["remote_ipv6_network_cidr"])
|
|
66529
66551
|
check_type(argname="argument static_routes_only", value=static_routes_only, expected_type=type_hints["static_routes_only"])
|
|
@@ -66545,6 +66567,8 @@ class CfnVPNConnectionProps:
|
|
|
66545
66567
|
self._values["local_ipv6_network_cidr"] = local_ipv6_network_cidr
|
|
66546
66568
|
if outside_ip_address_type is not None:
|
|
66547
66569
|
self._values["outside_ip_address_type"] = outside_ip_address_type
|
|
66570
|
+
if pre_shared_key_storage is not None:
|
|
66571
|
+
self._values["pre_shared_key_storage"] = pre_shared_key_storage
|
|
66548
66572
|
if remote_ipv4_network_cidr is not None:
|
|
66549
66573
|
self._values["remote_ipv4_network_cidr"] = remote_ipv4_network_cidr
|
|
66550
66574
|
if remote_ipv6_network_cidr is not None:
|
|
@@ -66632,6 +66656,15 @@ class CfnVPNConnectionProps:
|
|
|
66632
66656
|
result = self._values.get("outside_ip_address_type")
|
|
66633
66657
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
66634
66658
|
|
|
66659
|
+
@builtins.property
|
|
66660
|
+
def pre_shared_key_storage(self) -> typing.Optional[builtins.str]:
|
|
66661
|
+
'''Describes the storage location for an instance store-backed AMI.
|
|
66662
|
+
|
|
66663
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-presharedkeystorage
|
|
66664
|
+
'''
|
|
66665
|
+
result = self._values.get("pre_shared_key_storage")
|
|
66666
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
66667
|
+
|
|
66635
66668
|
@builtins.property
|
|
66636
66669
|
def remote_ipv4_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
66637
66670
|
'''The IPv4 CIDR on the AWS side of the VPN connection.
|
|
@@ -114404,6 +114437,7 @@ def _typecheckingstub__e77cb0020f820726a03bfb8968e16674c7c5924b0f133f50aeda1623f
|
|
|
114404
114437
|
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
114405
114438
|
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
114406
114439
|
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
114440
|
+
pre_shared_key_storage: typing.Optional[builtins.str] = None,
|
|
114407
114441
|
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
114408
114442
|
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
114409
114443
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
@@ -114465,6 +114499,12 @@ def _typecheckingstub__286d7ffc0407931563597ee64c1dea1894940b55a7dbee144187922a5
|
|
|
114465
114499
|
"""Type checking stubs"""
|
|
114466
114500
|
pass
|
|
114467
114501
|
|
|
114502
|
+
def _typecheckingstub__04c10bdc6cd7351aee49220faa02dae717ee7f48627da691fb09880833968d0e(
|
|
114503
|
+
value: typing.Optional[builtins.str],
|
|
114504
|
+
) -> None:
|
|
114505
|
+
"""Type checking stubs"""
|
|
114506
|
+
pass
|
|
114507
|
+
|
|
114468
114508
|
def _typecheckingstub__dd38c2ecf12fc1114502ef4d2747922a8b61667c72e4a3f2ef17e3b68a566752(
|
|
114469
114509
|
value: typing.Optional[builtins.str],
|
|
114470
114510
|
) -> None:
|
|
@@ -114618,6 +114658,7 @@ def _typecheckingstub__af86adbb8c205a09b71896c35d8dac6b766cf096efd20c2deb4c2c01e
|
|
|
114618
114658
|
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
114619
114659
|
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
114620
114660
|
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
114661
|
+
pre_shared_key_storage: typing.Optional[builtins.str] = None,
|
|
114621
114662
|
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
114622
114663
|
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
114623
114664
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|