aws-cdk-lib 2.156.0__py3-none-any.whl → 2.157.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 +26 -22
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.156.0.jsii.tgz → aws-cdk-lib@2.157.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +10 -75
- aws_cdk/aws_amplify/__init__.py +106 -0
- aws_cdk/aws_apigatewayv2/__init__.py +81 -13
- aws_cdk/aws_appintegrations/__init__.py +14 -14
- aws_cdk/aws_applicationsignals/__init__.py +750 -1
- aws_cdk/aws_appsync/__init__.py +50 -18
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_backup/__init__.py +39 -0
- aws_cdk/aws_batch/__init__.py +41 -0
- aws_cdk/aws_bedrock/__init__.py +1513 -94
- aws_cdk/aws_chatbot/__init__.py +6 -6
- aws_cdk/aws_cloudformation/__init__.py +22 -22
- aws_cdk/aws_cloudfront/experimental/__init__.py +30 -3
- aws_cdk/aws_datasync/__init__.py +40 -29
- aws_cdk/aws_ec2/__init__.py +373 -49
- aws_cdk/aws_ecs/__init__.py +253 -87
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -4
- aws_cdk/aws_entityresolution/__init__.py +117 -4
- aws_cdk/aws_glue/__init__.py +0 -8
- aws_cdk/aws_groundstation/__init__.py +27 -16
- aws_cdk/aws_guardduty/__init__.py +26 -14
- aws_cdk/aws_iotfleetwise/__init__.py +108 -0
- aws_cdk/aws_lambda/__init__.py +147 -17
- aws_cdk/aws_lambda_nodejs/__init__.py +30 -3
- aws_cdk/aws_macie/__init__.py +4 -4
- aws_cdk/aws_medialive/__init__.py +348 -0
- aws_cdk/aws_mediapackagev2/__init__.py +38 -38
- aws_cdk/aws_neptune/__init__.py +14 -8
- aws_cdk/aws_opensearchservice/__init__.py +194 -0
- aws_cdk/aws_pcaconnectorscep/__init__.py +884 -0
- aws_cdk/aws_personalize/__init__.py +2 -2
- aws_cdk/aws_pipes/__init__.py +22 -22
- aws_cdk/aws_qbusiness/__init__.py +675 -6
- aws_cdk/aws_quicksight/__init__.py +3285 -0
- aws_cdk/aws_rds/__init__.py +18 -0
- aws_cdk/aws_sagemaker/__init__.py +1167 -0
- aws_cdk/aws_secretsmanager/__init__.py +2 -3
- aws_cdk/aws_securityhub/__init__.py +108 -103
- aws_cdk/aws_ses/__init__.py +31 -0
- aws_cdk/aws_sns/__init__.py +19 -13
- aws_cdk/aws_ssm/__init__.py +10 -6
- aws_cdk/aws_ssmquicksetup/__init__.py +967 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +4 -4
- aws_cdk/triggers/__init__.py +30 -3
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/RECORD +53 -51
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -33945,7 +33945,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
33945
33945
|
'''Describes a route table route.
|
|
33946
33946
|
|
|
33947
33947
|
:param destination_cidr: The destination IPv4 address, in CIDR notation.
|
|
33948
|
-
:param destination_prefix_list_id: The prefix of the AWS
|
|
33948
|
+
:param destination_prefix_list_id: The prefix of the AWS service.
|
|
33949
33949
|
:param egress_only_internet_gateway_id: The ID of an egress-only internet gateway.
|
|
33950
33950
|
:param gateway_id: The ID of the gateway, such as an internet gateway or virtual private gateway.
|
|
33951
33951
|
:param instance_id: The ID of the instance, such as a NAT instance.
|
|
@@ -34027,7 +34027,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
34027
34027
|
|
|
34028
34028
|
@builtins.property
|
|
34029
34029
|
def destination_prefix_list_id(self) -> typing.Optional[builtins.str]:
|
|
34030
|
-
'''The prefix of the AWS
|
|
34030
|
+
'''The prefix of the AWS service.
|
|
34031
34031
|
|
|
34032
34032
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysisroutetableroute.html#cfn-ec2-networkinsightsanalysis-analysisroutetableroute-destinationprefixlistid
|
|
34033
34033
|
'''
|
|
@@ -48064,7 +48064,6 @@ class CfnSubnet(
|
|
|
48064
48064
|
ipv4_ipam_pool_id: typing.Optional[builtins.str] = None,
|
|
48065
48065
|
ipv4_netmask_length: typing.Optional[jsii.Number] = None,
|
|
48066
48066
|
ipv6_cidr_block: typing.Optional[builtins.str] = None,
|
|
48067
|
-
ipv6_cidr_blocks: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
48068
48067
|
ipv6_ipam_pool_id: typing.Optional[builtins.str] = None,
|
|
48069
48068
|
ipv6_native: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
48070
48069
|
ipv6_netmask_length: typing.Optional[jsii.Number] = None,
|
|
@@ -48086,7 +48085,6 @@ class CfnSubnet(
|
|
|
48086
48085
|
:param ipv4_ipam_pool_id: An IPv4 IPAM pool ID for the subnet.
|
|
48087
48086
|
:param ipv4_netmask_length: An IPv4 netmask length for the subnet.
|
|
48088
48087
|
:param ipv6_cidr_block: The IPv6 CIDR block. If you specify ``AssignIpv6AddressOnCreation`` , you must also specify an IPv6 CIDR block.
|
|
48089
|
-
:param ipv6_cidr_blocks: The IPv6 network ranges for the subnet, in CIDR notation.
|
|
48090
48088
|
:param ipv6_ipam_pool_id: An IPv6 IPAM pool ID for the subnet.
|
|
48091
48089
|
:param ipv6_native: Indicates whether this is an IPv6 only subnet. For more information, see `Subnet basics <https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html#subnet-basics>`_ in the *Amazon Virtual Private Cloud User Guide* .
|
|
48092
48090
|
:param ipv6_netmask_length: An IPv6 netmask length for the subnet.
|
|
@@ -48110,7 +48108,6 @@ class CfnSubnet(
|
|
|
48110
48108
|
ipv4_ipam_pool_id=ipv4_ipam_pool_id,
|
|
48111
48109
|
ipv4_netmask_length=ipv4_netmask_length,
|
|
48112
48110
|
ipv6_cidr_block=ipv6_cidr_block,
|
|
48113
|
-
ipv6_cidr_blocks=ipv6_cidr_blocks,
|
|
48114
48111
|
ipv6_ipam_pool_id=ipv6_ipam_pool_id,
|
|
48115
48112
|
ipv6_native=ipv6_native,
|
|
48116
48113
|
ipv6_netmask_length=ipv6_netmask_length,
|
|
@@ -48186,7 +48183,8 @@ class CfnSubnet(
|
|
|
48186
48183
|
@builtins.property
|
|
48187
48184
|
@jsii.member(jsii_name="attrIpv6CidrBlocks")
|
|
48188
48185
|
def attr_ipv6_cidr_blocks(self) -> typing.List[builtins.str]:
|
|
48189
|
-
'''
|
|
48186
|
+
'''The IPv6 CIDR blocks that are associated with the subnet.
|
|
48187
|
+
|
|
48190
48188
|
:cloudformationAttribute: Ipv6CidrBlocks
|
|
48191
48189
|
'''
|
|
48192
48190
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrIpv6CidrBlocks"))
|
|
@@ -48381,22 +48379,6 @@ class CfnSubnet(
|
|
|
48381
48379
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
48382
48380
|
jsii.set(self, "ipv6CidrBlock", value) # pyright: ignore[reportArgumentType]
|
|
48383
48381
|
|
|
48384
|
-
@builtins.property
|
|
48385
|
-
@jsii.member(jsii_name="ipv6CidrBlocks")
|
|
48386
|
-
def ipv6_cidr_blocks(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
48387
|
-
'''The IPv6 network ranges for the subnet, in CIDR notation.'''
|
|
48388
|
-
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "ipv6CidrBlocks"))
|
|
48389
|
-
|
|
48390
|
-
@ipv6_cidr_blocks.setter
|
|
48391
|
-
def ipv6_cidr_blocks(
|
|
48392
|
-
self,
|
|
48393
|
-
value: typing.Optional[typing.List[builtins.str]],
|
|
48394
|
-
) -> None:
|
|
48395
|
-
if __debug__:
|
|
48396
|
-
type_hints = typing.get_type_hints(_typecheckingstub__2924466543968587848b6c9a3abb9e410e42b51b663f080070f7b608ec34461f)
|
|
48397
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
48398
|
-
jsii.set(self, "ipv6CidrBlocks", value) # pyright: ignore[reportArgumentType]
|
|
48399
|
-
|
|
48400
48382
|
@builtins.property
|
|
48401
48383
|
@jsii.member(jsii_name="ipv6IpamPoolId")
|
|
48402
48384
|
def ipv6_ipam_pool_id(self) -> typing.Optional[builtins.str]:
|
|
@@ -49093,7 +49075,6 @@ class CfnSubnetNetworkAclAssociationProps:
|
|
|
49093
49075
|
"ipv4_ipam_pool_id": "ipv4IpamPoolId",
|
|
49094
49076
|
"ipv4_netmask_length": "ipv4NetmaskLength",
|
|
49095
49077
|
"ipv6_cidr_block": "ipv6CidrBlock",
|
|
49096
|
-
"ipv6_cidr_blocks": "ipv6CidrBlocks",
|
|
49097
49078
|
"ipv6_ipam_pool_id": "ipv6IpamPoolId",
|
|
49098
49079
|
"ipv6_native": "ipv6Native",
|
|
49099
49080
|
"ipv6_netmask_length": "ipv6NetmaskLength",
|
|
@@ -49117,7 +49098,6 @@ class CfnSubnetProps:
|
|
|
49117
49098
|
ipv4_ipam_pool_id: typing.Optional[builtins.str] = None,
|
|
49118
49099
|
ipv4_netmask_length: typing.Optional[jsii.Number] = None,
|
|
49119
49100
|
ipv6_cidr_block: typing.Optional[builtins.str] = None,
|
|
49120
|
-
ipv6_cidr_blocks: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
49121
49101
|
ipv6_ipam_pool_id: typing.Optional[builtins.str] = None,
|
|
49122
49102
|
ipv6_native: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
49123
49103
|
ipv6_netmask_length: typing.Optional[jsii.Number] = None,
|
|
@@ -49138,7 +49118,6 @@ class CfnSubnetProps:
|
|
|
49138
49118
|
:param ipv4_ipam_pool_id: An IPv4 IPAM pool ID for the subnet.
|
|
49139
49119
|
:param ipv4_netmask_length: An IPv4 netmask length for the subnet.
|
|
49140
49120
|
:param ipv6_cidr_block: The IPv6 CIDR block. If you specify ``AssignIpv6AddressOnCreation`` , you must also specify an IPv6 CIDR block.
|
|
49141
|
-
:param ipv6_cidr_blocks: The IPv6 network ranges for the subnet, in CIDR notation.
|
|
49142
49121
|
:param ipv6_ipam_pool_id: An IPv6 IPAM pool ID for the subnet.
|
|
49143
49122
|
:param ipv6_native: Indicates whether this is an IPv6 only subnet. For more information, see `Subnet basics <https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html#subnet-basics>`_ in the *Amazon Virtual Private Cloud User Guide* .
|
|
49144
49123
|
:param ipv6_netmask_length: An IPv6 netmask length for the subnet.
|
|
@@ -49171,7 +49150,6 @@ class CfnSubnetProps:
|
|
|
49171
49150
|
ipv4_ipam_pool_id="ipv4IpamPoolId",
|
|
49172
49151
|
ipv4_netmask_length=123,
|
|
49173
49152
|
ipv6_cidr_block="ipv6CidrBlock",
|
|
49174
|
-
ipv6_cidr_blocks=["ipv6CidrBlocks"],
|
|
49175
49153
|
ipv6_ipam_pool_id="ipv6IpamPoolId",
|
|
49176
49154
|
ipv6_native=False,
|
|
49177
49155
|
ipv6_netmask_length=123,
|
|
@@ -49196,7 +49174,6 @@ class CfnSubnetProps:
|
|
|
49196
49174
|
check_type(argname="argument ipv4_ipam_pool_id", value=ipv4_ipam_pool_id, expected_type=type_hints["ipv4_ipam_pool_id"])
|
|
49197
49175
|
check_type(argname="argument ipv4_netmask_length", value=ipv4_netmask_length, expected_type=type_hints["ipv4_netmask_length"])
|
|
49198
49176
|
check_type(argname="argument ipv6_cidr_block", value=ipv6_cidr_block, expected_type=type_hints["ipv6_cidr_block"])
|
|
49199
|
-
check_type(argname="argument ipv6_cidr_blocks", value=ipv6_cidr_blocks, expected_type=type_hints["ipv6_cidr_blocks"])
|
|
49200
49177
|
check_type(argname="argument ipv6_ipam_pool_id", value=ipv6_ipam_pool_id, expected_type=type_hints["ipv6_ipam_pool_id"])
|
|
49201
49178
|
check_type(argname="argument ipv6_native", value=ipv6_native, expected_type=type_hints["ipv6_native"])
|
|
49202
49179
|
check_type(argname="argument ipv6_netmask_length", value=ipv6_netmask_length, expected_type=type_hints["ipv6_netmask_length"])
|
|
@@ -49225,8 +49202,6 @@ class CfnSubnetProps:
|
|
|
49225
49202
|
self._values["ipv4_netmask_length"] = ipv4_netmask_length
|
|
49226
49203
|
if ipv6_cidr_block is not None:
|
|
49227
49204
|
self._values["ipv6_cidr_block"] = ipv6_cidr_block
|
|
49228
|
-
if ipv6_cidr_blocks is not None:
|
|
49229
|
-
self._values["ipv6_cidr_blocks"] = ipv6_cidr_blocks
|
|
49230
49205
|
if ipv6_ipam_pool_id is not None:
|
|
49231
49206
|
self._values["ipv6_ipam_pool_id"] = ipv6_ipam_pool_id
|
|
49232
49207
|
if ipv6_native is not None:
|
|
@@ -49353,15 +49328,6 @@ class CfnSubnetProps:
|
|
|
49353
49328
|
result = self._values.get("ipv6_cidr_block")
|
|
49354
49329
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
49355
49330
|
|
|
49356
|
-
@builtins.property
|
|
49357
|
-
def ipv6_cidr_blocks(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
49358
|
-
'''The IPv6 network ranges for the subnet, in CIDR notation.
|
|
49359
|
-
|
|
49360
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#cfn-ec2-subnet-ipv6cidrblocks
|
|
49361
|
-
'''
|
|
49362
|
-
result = self._values.get("ipv6_cidr_blocks")
|
|
49363
|
-
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
49364
|
-
|
|
49365
49331
|
@builtins.property
|
|
49366
49332
|
def ipv6_ipam_pool_id(self) -> typing.Optional[builtins.str]:
|
|
49367
49333
|
'''An IPv6 IPAM pool ID for the subnet.
|
|
@@ -58585,12 +58551,19 @@ class CfnVPNConnection(
|
|
|
58585
58551
|
|
|
58586
58552
|
# the properties below are optional
|
|
58587
58553
|
enable_acceleration=False,
|
|
58554
|
+
local_ipv4_network_cidr="localIpv4NetworkCidr",
|
|
58555
|
+
local_ipv6_network_cidr="localIpv6NetworkCidr",
|
|
58556
|
+
outside_ip_address_type="outsideIpAddressType",
|
|
58557
|
+
remote_ipv4_network_cidr="remoteIpv4NetworkCidr",
|
|
58558
|
+
remote_ipv6_network_cidr="remoteIpv6NetworkCidr",
|
|
58588
58559
|
static_routes_only=False,
|
|
58589
58560
|
tags=[CfnTag(
|
|
58590
58561
|
key="key",
|
|
58591
58562
|
value="value"
|
|
58592
58563
|
)],
|
|
58593
58564
|
transit_gateway_id="transitGatewayId",
|
|
58565
|
+
transport_transit_gateway_attachment_id="transportTransitGatewayAttachmentId",
|
|
58566
|
+
tunnel_inside_ip_version="tunnelInsideIpVersion",
|
|
58594
58567
|
vpn_gateway_id="vpnGatewayId",
|
|
58595
58568
|
vpn_tunnel_options_specifications=[ec2.CfnVPNConnection.VpnTunnelOptionsSpecificationProperty(
|
|
58596
58569
|
pre_shared_key="preSharedKey",
|
|
@@ -58607,9 +58580,16 @@ class CfnVPNConnection(
|
|
|
58607
58580
|
customer_gateway_id: builtins.str,
|
|
58608
58581
|
type: builtins.str,
|
|
58609
58582
|
enable_acceleration: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
58583
|
+
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
58584
|
+
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
58585
|
+
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
58586
|
+
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
58587
|
+
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
58610
58588
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
58611
58589
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
58612
58590
|
transit_gateway_id: typing.Optional[builtins.str] = None,
|
|
58591
|
+
transport_transit_gateway_attachment_id: typing.Optional[builtins.str] = None,
|
|
58592
|
+
tunnel_inside_ip_version: typing.Optional[builtins.str] = None,
|
|
58613
58593
|
vpn_gateway_id: typing.Optional[builtins.str] = None,
|
|
58614
58594
|
vpn_tunnel_options_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnVPNConnection.VpnTunnelOptionsSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
58615
58595
|
) -> None:
|
|
@@ -58619,9 +58599,16 @@ class CfnVPNConnection(
|
|
|
58619
58599
|
:param customer_gateway_id: The ID of the customer gateway at your end of the VPN connection.
|
|
58620
58600
|
:param type: The type of VPN connection.
|
|
58621
58601
|
:param enable_acceleration: Indicate whether to enable acceleration for the VPN connection. Default: ``false``
|
|
58602
|
+
:param local_ipv4_network_cidr:
|
|
58603
|
+
:param local_ipv6_network_cidr:
|
|
58604
|
+
:param outside_ip_address_type:
|
|
58605
|
+
:param remote_ipv4_network_cidr:
|
|
58606
|
+
:param remote_ipv6_network_cidr:
|
|
58622
58607
|
: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`` .
|
|
58623
58608
|
:param tags: Any tags assigned to the VPN connection.
|
|
58624
58609
|
:param transit_gateway_id: The ID of the transit gateway associated with the VPN connection. You must specify either ``TransitGatewayId`` or ``VpnGatewayId`` , but not both.
|
|
58610
|
+
:param transport_transit_gateway_attachment_id:
|
|
58611
|
+
:param tunnel_inside_ip_version:
|
|
58625
58612
|
:param vpn_gateway_id: The ID of the virtual private gateway at the AWS side of the VPN connection. You must specify either ``TransitGatewayId`` or ``VpnGatewayId`` , but not both.
|
|
58626
58613
|
:param vpn_tunnel_options_specifications: The tunnel options for the VPN connection.
|
|
58627
58614
|
'''
|
|
@@ -58633,9 +58620,16 @@ class CfnVPNConnection(
|
|
|
58633
58620
|
customer_gateway_id=customer_gateway_id,
|
|
58634
58621
|
type=type,
|
|
58635
58622
|
enable_acceleration=enable_acceleration,
|
|
58623
|
+
local_ipv4_network_cidr=local_ipv4_network_cidr,
|
|
58624
|
+
local_ipv6_network_cidr=local_ipv6_network_cidr,
|
|
58625
|
+
outside_ip_address_type=outside_ip_address_type,
|
|
58626
|
+
remote_ipv4_network_cidr=remote_ipv4_network_cidr,
|
|
58627
|
+
remote_ipv6_network_cidr=remote_ipv6_network_cidr,
|
|
58636
58628
|
static_routes_only=static_routes_only,
|
|
58637
58629
|
tags=tags,
|
|
58638
58630
|
transit_gateway_id=transit_gateway_id,
|
|
58631
|
+
transport_transit_gateway_attachment_id=transport_transit_gateway_attachment_id,
|
|
58632
|
+
tunnel_inside_ip_version=tunnel_inside_ip_version,
|
|
58639
58633
|
vpn_gateway_id=vpn_gateway_id,
|
|
58640
58634
|
vpn_tunnel_options_specifications=vpn_tunnel_options_specifications,
|
|
58641
58635
|
)
|
|
@@ -58736,6 +58730,66 @@ class CfnVPNConnection(
|
|
|
58736
58730
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58737
58731
|
jsii.set(self, "enableAcceleration", value) # pyright: ignore[reportArgumentType]
|
|
58738
58732
|
|
|
58733
|
+
@builtins.property
|
|
58734
|
+
@jsii.member(jsii_name="localIpv4NetworkCidr")
|
|
58735
|
+
def local_ipv4_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
58736
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "localIpv4NetworkCidr"))
|
|
58737
|
+
|
|
58738
|
+
@local_ipv4_network_cidr.setter
|
|
58739
|
+
def local_ipv4_network_cidr(self, value: typing.Optional[builtins.str]) -> None:
|
|
58740
|
+
if __debug__:
|
|
58741
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bb1261371f235f1e234e8c4ce1a8f6717b70d0d64959002c32d7e29e39679aa9)
|
|
58742
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58743
|
+
jsii.set(self, "localIpv4NetworkCidr", value) # pyright: ignore[reportArgumentType]
|
|
58744
|
+
|
|
58745
|
+
@builtins.property
|
|
58746
|
+
@jsii.member(jsii_name="localIpv6NetworkCidr")
|
|
58747
|
+
def local_ipv6_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
58748
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "localIpv6NetworkCidr"))
|
|
58749
|
+
|
|
58750
|
+
@local_ipv6_network_cidr.setter
|
|
58751
|
+
def local_ipv6_network_cidr(self, value: typing.Optional[builtins.str]) -> None:
|
|
58752
|
+
if __debug__:
|
|
58753
|
+
type_hints = typing.get_type_hints(_typecheckingstub__dcd5f7064ee09680ba29d84786ff8c5dcfcaabc1aab46a1cce572d0661c18ebd)
|
|
58754
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58755
|
+
jsii.set(self, "localIpv6NetworkCidr", value) # pyright: ignore[reportArgumentType]
|
|
58756
|
+
|
|
58757
|
+
@builtins.property
|
|
58758
|
+
@jsii.member(jsii_name="outsideIpAddressType")
|
|
58759
|
+
def outside_ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
58760
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "outsideIpAddressType"))
|
|
58761
|
+
|
|
58762
|
+
@outside_ip_address_type.setter
|
|
58763
|
+
def outside_ip_address_type(self, value: typing.Optional[builtins.str]) -> None:
|
|
58764
|
+
if __debug__:
|
|
58765
|
+
type_hints = typing.get_type_hints(_typecheckingstub__286d7ffc0407931563597ee64c1dea1894940b55a7dbee144187922a5d48607e)
|
|
58766
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58767
|
+
jsii.set(self, "outsideIpAddressType", value) # pyright: ignore[reportArgumentType]
|
|
58768
|
+
|
|
58769
|
+
@builtins.property
|
|
58770
|
+
@jsii.member(jsii_name="remoteIpv4NetworkCidr")
|
|
58771
|
+
def remote_ipv4_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
58772
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "remoteIpv4NetworkCidr"))
|
|
58773
|
+
|
|
58774
|
+
@remote_ipv4_network_cidr.setter
|
|
58775
|
+
def remote_ipv4_network_cidr(self, value: typing.Optional[builtins.str]) -> None:
|
|
58776
|
+
if __debug__:
|
|
58777
|
+
type_hints = typing.get_type_hints(_typecheckingstub__dd38c2ecf12fc1114502ef4d2747922a8b61667c72e4a3f2ef17e3b68a566752)
|
|
58778
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58779
|
+
jsii.set(self, "remoteIpv4NetworkCidr", value) # pyright: ignore[reportArgumentType]
|
|
58780
|
+
|
|
58781
|
+
@builtins.property
|
|
58782
|
+
@jsii.member(jsii_name="remoteIpv6NetworkCidr")
|
|
58783
|
+
def remote_ipv6_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
58784
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "remoteIpv6NetworkCidr"))
|
|
58785
|
+
|
|
58786
|
+
@remote_ipv6_network_cidr.setter
|
|
58787
|
+
def remote_ipv6_network_cidr(self, value: typing.Optional[builtins.str]) -> None:
|
|
58788
|
+
if __debug__:
|
|
58789
|
+
type_hints = typing.get_type_hints(_typecheckingstub__da5a1cc9462db1bb5f81b0a5dd2559dd4f8a17e203dc59a17ab5e2c2f1c1e790)
|
|
58790
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58791
|
+
jsii.set(self, "remoteIpv6NetworkCidr", value) # pyright: ignore[reportArgumentType]
|
|
58792
|
+
|
|
58739
58793
|
@builtins.property
|
|
58740
58794
|
@jsii.member(jsii_name="staticRoutesOnly")
|
|
58741
58795
|
def static_routes_only(
|
|
@@ -58780,6 +58834,33 @@ class CfnVPNConnection(
|
|
|
58780
58834
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58781
58835
|
jsii.set(self, "transitGatewayId", value) # pyright: ignore[reportArgumentType]
|
|
58782
58836
|
|
|
58837
|
+
@builtins.property
|
|
58838
|
+
@jsii.member(jsii_name="transportTransitGatewayAttachmentId")
|
|
58839
|
+
def transport_transit_gateway_attachment_id(self) -> typing.Optional[builtins.str]:
|
|
58840
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "transportTransitGatewayAttachmentId"))
|
|
58841
|
+
|
|
58842
|
+
@transport_transit_gateway_attachment_id.setter
|
|
58843
|
+
def transport_transit_gateway_attachment_id(
|
|
58844
|
+
self,
|
|
58845
|
+
value: typing.Optional[builtins.str],
|
|
58846
|
+
) -> None:
|
|
58847
|
+
if __debug__:
|
|
58848
|
+
type_hints = typing.get_type_hints(_typecheckingstub__60943d6f882077c69e73d2799d6f1f6c1af7d30e6446db5341df06dc3bc1ee3b)
|
|
58849
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58850
|
+
jsii.set(self, "transportTransitGatewayAttachmentId", value) # pyright: ignore[reportArgumentType]
|
|
58851
|
+
|
|
58852
|
+
@builtins.property
|
|
58853
|
+
@jsii.member(jsii_name="tunnelInsideIpVersion")
|
|
58854
|
+
def tunnel_inside_ip_version(self) -> typing.Optional[builtins.str]:
|
|
58855
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "tunnelInsideIpVersion"))
|
|
58856
|
+
|
|
58857
|
+
@tunnel_inside_ip_version.setter
|
|
58858
|
+
def tunnel_inside_ip_version(self, value: typing.Optional[builtins.str]) -> None:
|
|
58859
|
+
if __debug__:
|
|
58860
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8007a59c343ce11e58658ebb453cc6943fc15f9ba4622c48cec67a9be102b0b7)
|
|
58861
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
58862
|
+
jsii.set(self, "tunnelInsideIpVersion", value) # pyright: ignore[reportArgumentType]
|
|
58863
|
+
|
|
58783
58864
|
@builtins.property
|
|
58784
58865
|
@jsii.member(jsii_name="vpnGatewayId")
|
|
58785
58866
|
def vpn_gateway_id(self) -> typing.Optional[builtins.str]:
|
|
@@ -58906,9 +58987,16 @@ class CfnVPNConnection(
|
|
|
58906
58987
|
"customer_gateway_id": "customerGatewayId",
|
|
58907
58988
|
"type": "type",
|
|
58908
58989
|
"enable_acceleration": "enableAcceleration",
|
|
58990
|
+
"local_ipv4_network_cidr": "localIpv4NetworkCidr",
|
|
58991
|
+
"local_ipv6_network_cidr": "localIpv6NetworkCidr",
|
|
58992
|
+
"outside_ip_address_type": "outsideIpAddressType",
|
|
58993
|
+
"remote_ipv4_network_cidr": "remoteIpv4NetworkCidr",
|
|
58994
|
+
"remote_ipv6_network_cidr": "remoteIpv6NetworkCidr",
|
|
58909
58995
|
"static_routes_only": "staticRoutesOnly",
|
|
58910
58996
|
"tags": "tags",
|
|
58911
58997
|
"transit_gateway_id": "transitGatewayId",
|
|
58998
|
+
"transport_transit_gateway_attachment_id": "transportTransitGatewayAttachmentId",
|
|
58999
|
+
"tunnel_inside_ip_version": "tunnelInsideIpVersion",
|
|
58912
59000
|
"vpn_gateway_id": "vpnGatewayId",
|
|
58913
59001
|
"vpn_tunnel_options_specifications": "vpnTunnelOptionsSpecifications",
|
|
58914
59002
|
},
|
|
@@ -58920,9 +59008,16 @@ class CfnVPNConnectionProps:
|
|
|
58920
59008
|
customer_gateway_id: builtins.str,
|
|
58921
59009
|
type: builtins.str,
|
|
58922
59010
|
enable_acceleration: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
59011
|
+
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
59012
|
+
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
59013
|
+
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
59014
|
+
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
59015
|
+
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
58923
59016
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
58924
59017
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
58925
59018
|
transit_gateway_id: typing.Optional[builtins.str] = None,
|
|
59019
|
+
transport_transit_gateway_attachment_id: typing.Optional[builtins.str] = None,
|
|
59020
|
+
tunnel_inside_ip_version: typing.Optional[builtins.str] = None,
|
|
58926
59021
|
vpn_gateway_id: typing.Optional[builtins.str] = None,
|
|
58927
59022
|
vpn_tunnel_options_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnVPNConnection.VpnTunnelOptionsSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
58928
59023
|
) -> None:
|
|
@@ -58931,9 +59026,16 @@ class CfnVPNConnectionProps:
|
|
|
58931
59026
|
:param customer_gateway_id: The ID of the customer gateway at your end of the VPN connection.
|
|
58932
59027
|
:param type: The type of VPN connection.
|
|
58933
59028
|
:param enable_acceleration: Indicate whether to enable acceleration for the VPN connection. Default: ``false``
|
|
59029
|
+
:param local_ipv4_network_cidr:
|
|
59030
|
+
:param local_ipv6_network_cidr:
|
|
59031
|
+
:param outside_ip_address_type:
|
|
59032
|
+
:param remote_ipv4_network_cidr:
|
|
59033
|
+
:param remote_ipv6_network_cidr:
|
|
58934
59034
|
: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`` .
|
|
58935
59035
|
:param tags: Any tags assigned to the VPN connection.
|
|
58936
59036
|
:param transit_gateway_id: The ID of the transit gateway associated with the VPN connection. You must specify either ``TransitGatewayId`` or ``VpnGatewayId`` , but not both.
|
|
59037
|
+
:param transport_transit_gateway_attachment_id:
|
|
59038
|
+
:param tunnel_inside_ip_version:
|
|
58937
59039
|
:param vpn_gateway_id: The ID of the virtual private gateway at the AWS side of the VPN connection. You must specify either ``TransitGatewayId`` or ``VpnGatewayId`` , but not both.
|
|
58938
59040
|
:param vpn_tunnel_options_specifications: The tunnel options for the VPN connection.
|
|
58939
59041
|
|
|
@@ -58952,12 +59054,19 @@ class CfnVPNConnectionProps:
|
|
|
58952
59054
|
|
|
58953
59055
|
# the properties below are optional
|
|
58954
59056
|
enable_acceleration=False,
|
|
59057
|
+
local_ipv4_network_cidr="localIpv4NetworkCidr",
|
|
59058
|
+
local_ipv6_network_cidr="localIpv6NetworkCidr",
|
|
59059
|
+
outside_ip_address_type="outsideIpAddressType",
|
|
59060
|
+
remote_ipv4_network_cidr="remoteIpv4NetworkCidr",
|
|
59061
|
+
remote_ipv6_network_cidr="remoteIpv6NetworkCidr",
|
|
58955
59062
|
static_routes_only=False,
|
|
58956
59063
|
tags=[CfnTag(
|
|
58957
59064
|
key="key",
|
|
58958
59065
|
value="value"
|
|
58959
59066
|
)],
|
|
58960
59067
|
transit_gateway_id="transitGatewayId",
|
|
59068
|
+
transport_transit_gateway_attachment_id="transportTransitGatewayAttachmentId",
|
|
59069
|
+
tunnel_inside_ip_version="tunnelInsideIpVersion",
|
|
58961
59070
|
vpn_gateway_id="vpnGatewayId",
|
|
58962
59071
|
vpn_tunnel_options_specifications=[ec2.CfnVPNConnection.VpnTunnelOptionsSpecificationProperty(
|
|
58963
59072
|
pre_shared_key="preSharedKey",
|
|
@@ -58970,9 +59079,16 @@ class CfnVPNConnectionProps:
|
|
|
58970
59079
|
check_type(argname="argument customer_gateway_id", value=customer_gateway_id, expected_type=type_hints["customer_gateway_id"])
|
|
58971
59080
|
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
58972
59081
|
check_type(argname="argument enable_acceleration", value=enable_acceleration, expected_type=type_hints["enable_acceleration"])
|
|
59082
|
+
check_type(argname="argument local_ipv4_network_cidr", value=local_ipv4_network_cidr, expected_type=type_hints["local_ipv4_network_cidr"])
|
|
59083
|
+
check_type(argname="argument local_ipv6_network_cidr", value=local_ipv6_network_cidr, expected_type=type_hints["local_ipv6_network_cidr"])
|
|
59084
|
+
check_type(argname="argument outside_ip_address_type", value=outside_ip_address_type, expected_type=type_hints["outside_ip_address_type"])
|
|
59085
|
+
check_type(argname="argument remote_ipv4_network_cidr", value=remote_ipv4_network_cidr, expected_type=type_hints["remote_ipv4_network_cidr"])
|
|
59086
|
+
check_type(argname="argument remote_ipv6_network_cidr", value=remote_ipv6_network_cidr, expected_type=type_hints["remote_ipv6_network_cidr"])
|
|
58973
59087
|
check_type(argname="argument static_routes_only", value=static_routes_only, expected_type=type_hints["static_routes_only"])
|
|
58974
59088
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
58975
59089
|
check_type(argname="argument transit_gateway_id", value=transit_gateway_id, expected_type=type_hints["transit_gateway_id"])
|
|
59090
|
+
check_type(argname="argument transport_transit_gateway_attachment_id", value=transport_transit_gateway_attachment_id, expected_type=type_hints["transport_transit_gateway_attachment_id"])
|
|
59091
|
+
check_type(argname="argument tunnel_inside_ip_version", value=tunnel_inside_ip_version, expected_type=type_hints["tunnel_inside_ip_version"])
|
|
58976
59092
|
check_type(argname="argument vpn_gateway_id", value=vpn_gateway_id, expected_type=type_hints["vpn_gateway_id"])
|
|
58977
59093
|
check_type(argname="argument vpn_tunnel_options_specifications", value=vpn_tunnel_options_specifications, expected_type=type_hints["vpn_tunnel_options_specifications"])
|
|
58978
59094
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -58981,12 +59097,26 @@ class CfnVPNConnectionProps:
|
|
|
58981
59097
|
}
|
|
58982
59098
|
if enable_acceleration is not None:
|
|
58983
59099
|
self._values["enable_acceleration"] = enable_acceleration
|
|
59100
|
+
if local_ipv4_network_cidr is not None:
|
|
59101
|
+
self._values["local_ipv4_network_cidr"] = local_ipv4_network_cidr
|
|
59102
|
+
if local_ipv6_network_cidr is not None:
|
|
59103
|
+
self._values["local_ipv6_network_cidr"] = local_ipv6_network_cidr
|
|
59104
|
+
if outside_ip_address_type is not None:
|
|
59105
|
+
self._values["outside_ip_address_type"] = outside_ip_address_type
|
|
59106
|
+
if remote_ipv4_network_cidr is not None:
|
|
59107
|
+
self._values["remote_ipv4_network_cidr"] = remote_ipv4_network_cidr
|
|
59108
|
+
if remote_ipv6_network_cidr is not None:
|
|
59109
|
+
self._values["remote_ipv6_network_cidr"] = remote_ipv6_network_cidr
|
|
58984
59110
|
if static_routes_only is not None:
|
|
58985
59111
|
self._values["static_routes_only"] = static_routes_only
|
|
58986
59112
|
if tags is not None:
|
|
58987
59113
|
self._values["tags"] = tags
|
|
58988
59114
|
if transit_gateway_id is not None:
|
|
58989
59115
|
self._values["transit_gateway_id"] = transit_gateway_id
|
|
59116
|
+
if transport_transit_gateway_attachment_id is not None:
|
|
59117
|
+
self._values["transport_transit_gateway_attachment_id"] = transport_transit_gateway_attachment_id
|
|
59118
|
+
if tunnel_inside_ip_version is not None:
|
|
59119
|
+
self._values["tunnel_inside_ip_version"] = tunnel_inside_ip_version
|
|
58990
59120
|
if vpn_gateway_id is not None:
|
|
58991
59121
|
self._values["vpn_gateway_id"] = vpn_gateway_id
|
|
58992
59122
|
if vpn_tunnel_options_specifications is not None:
|
|
@@ -59025,6 +59155,46 @@ class CfnVPNConnectionProps:
|
|
|
59025
59155
|
result = self._values.get("enable_acceleration")
|
|
59026
59156
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
59027
59157
|
|
|
59158
|
+
@builtins.property
|
|
59159
|
+
def local_ipv4_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
59160
|
+
'''
|
|
59161
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-localipv4networkcidr
|
|
59162
|
+
'''
|
|
59163
|
+
result = self._values.get("local_ipv4_network_cidr")
|
|
59164
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
59165
|
+
|
|
59166
|
+
@builtins.property
|
|
59167
|
+
def local_ipv6_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
59168
|
+
'''
|
|
59169
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-localipv6networkcidr
|
|
59170
|
+
'''
|
|
59171
|
+
result = self._values.get("local_ipv6_network_cidr")
|
|
59172
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
59173
|
+
|
|
59174
|
+
@builtins.property
|
|
59175
|
+
def outside_ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
59176
|
+
'''
|
|
59177
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-outsideipaddresstype
|
|
59178
|
+
'''
|
|
59179
|
+
result = self._values.get("outside_ip_address_type")
|
|
59180
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
59181
|
+
|
|
59182
|
+
@builtins.property
|
|
59183
|
+
def remote_ipv4_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
59184
|
+
'''
|
|
59185
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-remoteipv4networkcidr
|
|
59186
|
+
'''
|
|
59187
|
+
result = self._values.get("remote_ipv4_network_cidr")
|
|
59188
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
59189
|
+
|
|
59190
|
+
@builtins.property
|
|
59191
|
+
def remote_ipv6_network_cidr(self) -> typing.Optional[builtins.str]:
|
|
59192
|
+
'''
|
|
59193
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-remoteipv6networkcidr
|
|
59194
|
+
'''
|
|
59195
|
+
result = self._values.get("remote_ipv6_network_cidr")
|
|
59196
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
59197
|
+
|
|
59028
59198
|
@builtins.property
|
|
59029
59199
|
def static_routes_only(
|
|
59030
59200
|
self,
|
|
@@ -59060,6 +59230,22 @@ class CfnVPNConnectionProps:
|
|
|
59060
59230
|
result = self._values.get("transit_gateway_id")
|
|
59061
59231
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
59062
59232
|
|
|
59233
|
+
@builtins.property
|
|
59234
|
+
def transport_transit_gateway_attachment_id(self) -> typing.Optional[builtins.str]:
|
|
59235
|
+
'''
|
|
59236
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-transporttransitgatewayattachmentid
|
|
59237
|
+
'''
|
|
59238
|
+
result = self._values.get("transport_transit_gateway_attachment_id")
|
|
59239
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
59240
|
+
|
|
59241
|
+
@builtins.property
|
|
59242
|
+
def tunnel_inside_ip_version(self) -> typing.Optional[builtins.str]:
|
|
59243
|
+
'''
|
|
59244
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-tunnelinsideipversion
|
|
59245
|
+
'''
|
|
59246
|
+
result = self._values.get("tunnel_inside_ip_version")
|
|
59247
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
59248
|
+
|
|
59063
59249
|
@builtins.property
|
|
59064
59250
|
def vpn_gateway_id(self) -> typing.Optional[builtins.str]:
|
|
59065
59251
|
'''The ID of the virtual private gateway at the AWS side of the VPN connection.
|
|
@@ -72482,7 +72668,7 @@ class Instance(
|
|
|
72482
72668
|
:param source_dest_check: Specifies whether to enable an instance launched in a VPC to perform NAT. This controls whether source/destination checking is enabled on the instance. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform NAT. Default: true
|
|
72483
72669
|
:param ssm_session_permissions: Add SSM session permissions to the instance role. Setting this to ``true`` adds the necessary permissions to connect to the instance using SSM Session Manager. You can do this from the AWS Console. NOTE: Setting this flag to ``true`` may not be enough by itself. You must also use an AMI that comes with the SSM Agent, or install the SSM Agent yourself. See `Working with SSM Agent <https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-agent.html>`_ in the SSM Developer Guide. Default: false
|
|
72484
72670
|
:param user_data: Specific UserData to use. The UserData may still be mutated after creation. Default: - A UserData object appropriate for the MachineImage's Operating System is created.
|
|
72485
|
-
:param user_data_causes_replacement: Changes to the UserData force replacement. Depending the EC2 instance type, changing UserData either restarts the instance or replaces the instance. - Instance store-backed instances are replaced. - EBS-backed instances are restarted. By default, restarting does not execute the new UserData so you will need a different mechanism to ensure the instance is restarted. Setting this to ``true`` will make the instance's Logical ID depend on the UserData, which will cause CloudFormation to replace it if the UserData changes. Default: - true
|
|
72671
|
+
:param user_data_causes_replacement: Changes to the UserData force replacement. Depending the EC2 instance type, changing UserData either restarts the instance or replaces the instance. - Instance store-backed instances are replaced. - EBS-backed instances are restarted. By default, restarting does not execute the new UserData so you will need a different mechanism to ensure the instance is restarted. Setting this to ``true`` will make the instance's Logical ID depend on the UserData, which will cause CloudFormation to replace it if the UserData changes. Default: - true if ``initOptions`` is specified, false otherwise.
|
|
72486
72672
|
:param vpc_subnets: Where to place the instance within the VPC. Default: - Private subnets.
|
|
72487
72673
|
'''
|
|
72488
72674
|
if __debug__:
|
|
@@ -73400,7 +73586,7 @@ class InstanceProps:
|
|
|
73400
73586
|
:param source_dest_check: Specifies whether to enable an instance launched in a VPC to perform NAT. This controls whether source/destination checking is enabled on the instance. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform NAT. Default: true
|
|
73401
73587
|
:param ssm_session_permissions: Add SSM session permissions to the instance role. Setting this to ``true`` adds the necessary permissions to connect to the instance using SSM Session Manager. You can do this from the AWS Console. NOTE: Setting this flag to ``true`` may not be enough by itself. You must also use an AMI that comes with the SSM Agent, or install the SSM Agent yourself. See `Working with SSM Agent <https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-agent.html>`_ in the SSM Developer Guide. Default: false
|
|
73402
73588
|
:param user_data: Specific UserData to use. The UserData may still be mutated after creation. Default: - A UserData object appropriate for the MachineImage's Operating System is created.
|
|
73403
|
-
:param user_data_causes_replacement: Changes to the UserData force replacement. Depending the EC2 instance type, changing UserData either restarts the instance or replaces the instance. - Instance store-backed instances are replaced. - EBS-backed instances are restarted. By default, restarting does not execute the new UserData so you will need a different mechanism to ensure the instance is restarted. Setting this to ``true`` will make the instance's Logical ID depend on the UserData, which will cause CloudFormation to replace it if the UserData changes. Default: - true
|
|
73589
|
+
:param user_data_causes_replacement: Changes to the UserData force replacement. Depending the EC2 instance type, changing UserData either restarts the instance or replaces the instance. - Instance store-backed instances are replaced. - EBS-backed instances are restarted. By default, restarting does not execute the new UserData so you will need a different mechanism to ensure the instance is restarted. Setting this to ``true`` will make the instance's Logical ID depend on the UserData, which will cause CloudFormation to replace it if the UserData changes. Default: - true if ``initOptions`` is specified, false otherwise.
|
|
73404
73590
|
:param vpc_subnets: Where to place the instance within the VPC. Default: - Private subnets.
|
|
73405
73591
|
|
|
73406
73592
|
:exampleMetadata: infused
|
|
@@ -73883,7 +74069,7 @@ class InstanceProps:
|
|
|
73883
74069
|
UserData, which will cause CloudFormation to replace it if the UserData
|
|
73884
74070
|
changes.
|
|
73885
74071
|
|
|
73886
|
-
:default: - true
|
|
74072
|
+
:default: - true if ``initOptions`` is specified, false otherwise.
|
|
73887
74073
|
'''
|
|
73888
74074
|
result = self._values.get("user_data_causes_replacement")
|
|
73889
74075
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -74388,11 +74574,21 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74388
74574
|
def AIRFLOW_API(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74389
74575
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "AIRFLOW_API"))
|
|
74390
74576
|
|
|
74577
|
+
@jsii.python.classproperty
|
|
74578
|
+
@jsii.member(jsii_name="AIRFLOW_API_FIPS")
|
|
74579
|
+
def AIRFLOW_API_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74580
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "AIRFLOW_API_FIPS"))
|
|
74581
|
+
|
|
74391
74582
|
@jsii.python.classproperty
|
|
74392
74583
|
@jsii.member(jsii_name="AIRFLOW_ENV")
|
|
74393
74584
|
def AIRFLOW_ENV(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74394
74585
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "AIRFLOW_ENV"))
|
|
74395
74586
|
|
|
74587
|
+
@jsii.python.classproperty
|
|
74588
|
+
@jsii.member(jsii_name="AIRFLOW_ENV_FIPS")
|
|
74589
|
+
def AIRFLOW_ENV_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74590
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "AIRFLOW_ENV_FIPS"))
|
|
74591
|
+
|
|
74396
74592
|
@jsii.python.classproperty
|
|
74397
74593
|
@jsii.member(jsii_name="AIRFLOW_OPS")
|
|
74398
74594
|
def AIRFLOW_OPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74618,6 +74814,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74618
74814
|
'''
|
|
74619
74815
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUDWATCH"))
|
|
74620
74816
|
|
|
74817
|
+
@jsii.python.classproperty
|
|
74818
|
+
@jsii.member(jsii_name="CLOUDWATCH_APPLICATION_INSIGHTS")
|
|
74819
|
+
def CLOUDWATCH_APPLICATION_INSIGHTS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74820
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUDWATCH_APPLICATION_INSIGHTS"))
|
|
74821
|
+
|
|
74621
74822
|
@jsii.python.classproperty
|
|
74622
74823
|
@jsii.member(jsii_name="CLOUDWATCH_APPLICATION_SIGNALS")
|
|
74623
74824
|
def CLOUDWATCH_APPLICATION_SIGNALS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74998,6 +75199,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74998
75199
|
def EMR_SERVERLESS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74999
75200
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "EMR_SERVERLESS"))
|
|
75000
75201
|
|
|
75202
|
+
@jsii.python.classproperty
|
|
75203
|
+
@jsii.member(jsii_name="EMR_SERVERLESS_LIVY")
|
|
75204
|
+
def EMR_SERVERLESS_LIVY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75205
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "EMR_SERVERLESS_LIVY"))
|
|
75206
|
+
|
|
75001
75207
|
@jsii.python.classproperty
|
|
75002
75208
|
@jsii.member(jsii_name="EMR_WAL")
|
|
75003
75209
|
def EMR_WAL(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75248,6 +75454,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75248
75454
|
def KINESIS_STREAMS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75249
75455
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "KINESIS_STREAMS"))
|
|
75250
75456
|
|
|
75457
|
+
@jsii.python.classproperty
|
|
75458
|
+
@jsii.member(jsii_name="KINESIS_STREAMS_FIPS")
|
|
75459
|
+
def KINESIS_STREAMS_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75460
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "KINESIS_STREAMS_FIPS"))
|
|
75461
|
+
|
|
75251
75462
|
@jsii.python.classproperty
|
|
75252
75463
|
@jsii.member(jsii_name="KMS")
|
|
75253
75464
|
def KMS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75440,6 +75651,16 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75440
75651
|
def PANORAMA(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75441
75652
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PANORAMA"))
|
|
75442
75653
|
|
|
75654
|
+
@jsii.python.classproperty
|
|
75655
|
+
@jsii.member(jsii_name="PARALLEL_COMPUTING_SERVICE")
|
|
75656
|
+
def PARALLEL_COMPUTING_SERVICE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75657
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PARALLEL_COMPUTING_SERVICE"))
|
|
75658
|
+
|
|
75659
|
+
@jsii.python.classproperty
|
|
75660
|
+
@jsii.member(jsii_name="PARALLEL_COMPUTING_SERVICE_FIPS")
|
|
75661
|
+
def PARALLEL_COMPUTING_SERVICE_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75662
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PARALLEL_COMPUTING_SERVICE_FIPS"))
|
|
75663
|
+
|
|
75443
75664
|
@jsii.python.classproperty
|
|
75444
75665
|
@jsii.member(jsii_name="PAYMENT_CRYPTOGRAPHY_CONTROLPLANE")
|
|
75445
75666
|
def PAYMENT_CRYPTOGRAPHY_CONTROLPLANE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75542,6 +75763,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75542
75763
|
def Q_BUSSINESS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75543
75764
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "Q_BUSSINESS"))
|
|
75544
75765
|
|
|
75766
|
+
@jsii.python.classproperty
|
|
75767
|
+
@jsii.member(jsii_name="Q_DEVELOPER")
|
|
75768
|
+
def Q_DEVELOPER(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75769
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "Q_DEVELOPER"))
|
|
75770
|
+
|
|
75545
75771
|
@jsii.python.classproperty
|
|
75546
75772
|
@jsii.member(jsii_name="Q_DEVELOPER_CODE_WHISPERER")
|
|
75547
75773
|
def Q_DEVELOPER_CODE_WHISPERER(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75552,6 +75778,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75552
75778
|
def Q_DEVELOPER_QAPPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75553
75779
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "Q_DEVELOPER_QAPPS"))
|
|
75554
75780
|
|
|
75781
|
+
@jsii.python.classproperty
|
|
75782
|
+
@jsii.member(jsii_name="Q_USER_SUBSCRIPTIONS")
|
|
75783
|
+
def Q_USER_SUBSCRIPTIONS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75784
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "Q_USER_SUBSCRIPTIONS"))
|
|
75785
|
+
|
|
75555
75786
|
@jsii.python.classproperty
|
|
75556
75787
|
@jsii.member(jsii_name="QLDB")
|
|
75557
75788
|
def QLDB(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75572,6 +75803,21 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75572
75803
|
def RDS_DATA(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75573
75804
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "RDS_DATA"))
|
|
75574
75805
|
|
|
75806
|
+
@jsii.python.classproperty
|
|
75807
|
+
@jsii.member(jsii_name="RDS_PERFORMANCE_INSIGHTS")
|
|
75808
|
+
def RDS_PERFORMANCE_INSIGHTS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75809
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "RDS_PERFORMANCE_INSIGHTS"))
|
|
75810
|
+
|
|
75811
|
+
@jsii.python.classproperty
|
|
75812
|
+
@jsii.member(jsii_name="RDS_PERFORMANCE_INSIGHTS_FIPS")
|
|
75813
|
+
def RDS_PERFORMANCE_INSIGHTS_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75814
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "RDS_PERFORMANCE_INSIGHTS_FIPS"))
|
|
75815
|
+
|
|
75816
|
+
@jsii.python.classproperty
|
|
75817
|
+
@jsii.member(jsii_name="RECYCLE_BIN")
|
|
75818
|
+
def RECYCLE_BIN(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75819
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "RECYCLE_BIN"))
|
|
75820
|
+
|
|
75575
75821
|
@jsii.python.classproperty
|
|
75576
75822
|
@jsii.member(jsii_name="REDSHIFT")
|
|
75577
75823
|
def REDSHIFT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75592,6 +75838,16 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75592
75838
|
def REDSHIFT_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75593
75839
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "REDSHIFT_FIPS"))
|
|
75594
75840
|
|
|
75841
|
+
@jsii.python.classproperty
|
|
75842
|
+
@jsii.member(jsii_name="REDSHIFT_SERVERLESS")
|
|
75843
|
+
def REDSHIFT_SERVERLESS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75844
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "REDSHIFT_SERVERLESS"))
|
|
75845
|
+
|
|
75846
|
+
@jsii.python.classproperty
|
|
75847
|
+
@jsii.member(jsii_name="REDSHIFT_SERVERLESS_FIPS")
|
|
75848
|
+
def REDSHIFT_SERVERLESS_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75849
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "REDSHIFT_SERVERLESS_FIPS"))
|
|
75850
|
+
|
|
75595
75851
|
@jsii.python.classproperty
|
|
75596
75852
|
@jsii.member(jsii_name="REKOGNITION")
|
|
75597
75853
|
def REKOGNITION(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75752,6 +76008,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75752
76008
|
def SSM_CONTACTS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75753
76009
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SSM_CONTACTS"))
|
|
75754
76010
|
|
|
76011
|
+
@jsii.python.classproperty
|
|
76012
|
+
@jsii.member(jsii_name="SSM_FIPS")
|
|
76013
|
+
def SSM_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
76014
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SSM_FIPS"))
|
|
76015
|
+
|
|
75755
76016
|
@jsii.python.classproperty
|
|
75756
76017
|
@jsii.member(jsii_name="SSM_INCIDENTS")
|
|
75757
76018
|
def SSM_INCIDENTS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75762,6 +76023,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75762
76023
|
def SSM_MESSAGES(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75763
76024
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SSM_MESSAGES"))
|
|
75764
76025
|
|
|
76026
|
+
@jsii.python.classproperty
|
|
76027
|
+
@jsii.member(jsii_name="SSM_QUICK_SETUP")
|
|
76028
|
+
def SSM_QUICK_SETUP(cls) -> "InterfaceVpcEndpointAwsService":
|
|
76029
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SSM_QUICK_SETUP"))
|
|
76030
|
+
|
|
75765
76031
|
@jsii.python.classproperty
|
|
75766
76032
|
@jsii.member(jsii_name="STEP_FUNCTIONS")
|
|
75767
76033
|
def STEP_FUNCTIONS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75817,6 +76083,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75817
76083
|
def TIMESTREAM_INFLUXDB(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75818
76084
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "TIMESTREAM_INFLUXDB"))
|
|
75819
76085
|
|
|
76086
|
+
@jsii.python.classproperty
|
|
76087
|
+
@jsii.member(jsii_name="TIMESTREAM_INFLUXDB_FIPS")
|
|
76088
|
+
def TIMESTREAM_INFLUXDB_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
76089
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "TIMESTREAM_INFLUXDB_FIPS"))
|
|
76090
|
+
|
|
75820
76091
|
@jsii.python.classproperty
|
|
75821
76092
|
@jsii.member(jsii_name="TRANSCRIBE")
|
|
75822
76093
|
def TRANSCRIBE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -75857,6 +76128,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
75857
76128
|
def VPC_LATTICE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
75858
76129
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "VPC_LATTICE"))
|
|
75859
76130
|
|
|
76131
|
+
@jsii.python.classproperty
|
|
76132
|
+
@jsii.member(jsii_name="WELL_ARCHITECTED_TOOL")
|
|
76133
|
+
def WELL_ARCHITECTED_TOOL(cls) -> "InterfaceVpcEndpointAwsService":
|
|
76134
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "WELL_ARCHITECTED_TOOL"))
|
|
76135
|
+
|
|
75860
76136
|
@jsii.python.classproperty
|
|
75861
76137
|
@jsii.member(jsii_name="WORKSPACES")
|
|
75862
76138
|
def WORKSPACES(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -101064,7 +101340,6 @@ def _typecheckingstub__3552c7996fe8d37a6b035d9a3032e8c21e885c6d2abd5a0f9ff377ae3
|
|
|
101064
101340
|
ipv4_ipam_pool_id: typing.Optional[builtins.str] = None,
|
|
101065
101341
|
ipv4_netmask_length: typing.Optional[jsii.Number] = None,
|
|
101066
101342
|
ipv6_cidr_block: typing.Optional[builtins.str] = None,
|
|
101067
|
-
ipv6_cidr_blocks: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
101068
101343
|
ipv6_ipam_pool_id: typing.Optional[builtins.str] = None,
|
|
101069
101344
|
ipv6_native: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
101070
101345
|
ipv6_netmask_length: typing.Optional[jsii.Number] = None,
|
|
@@ -101148,12 +101423,6 @@ def _typecheckingstub__32cbba39a8e77a22a9b46de57faddcc0bd138b522049dcc5b72fae1f0
|
|
|
101148
101423
|
"""Type checking stubs"""
|
|
101149
101424
|
pass
|
|
101150
101425
|
|
|
101151
|
-
def _typecheckingstub__2924466543968587848b6c9a3abb9e410e42b51b663f080070f7b608ec34461f(
|
|
101152
|
-
value: typing.Optional[typing.List[builtins.str]],
|
|
101153
|
-
) -> None:
|
|
101154
|
-
"""Type checking stubs"""
|
|
101155
|
-
pass
|
|
101156
|
-
|
|
101157
101426
|
def _typecheckingstub__e7d9766dde41d5681123bb5654fa95ff2d630c4e00a04381c5cfb0a75bb33ab6(
|
|
101158
101427
|
value: typing.Optional[builtins.str],
|
|
101159
101428
|
) -> None:
|
|
@@ -101317,7 +101586,6 @@ def _typecheckingstub__35feab8ee8f0aeb1dcb5a7eb3df1cde58a61806467c8cc5f249b6acf5
|
|
|
101317
101586
|
ipv4_ipam_pool_id: typing.Optional[builtins.str] = None,
|
|
101318
101587
|
ipv4_netmask_length: typing.Optional[jsii.Number] = None,
|
|
101319
101588
|
ipv6_cidr_block: typing.Optional[builtins.str] = None,
|
|
101320
|
-
ipv6_cidr_blocks: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
101321
101589
|
ipv6_ipam_pool_id: typing.Optional[builtins.str] = None,
|
|
101322
101590
|
ipv6_native: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
101323
101591
|
ipv6_netmask_length: typing.Optional[jsii.Number] = None,
|
|
@@ -103120,9 +103388,16 @@ def _typecheckingstub__e77cb0020f820726a03bfb8968e16674c7c5924b0f133f50aeda1623f
|
|
|
103120
103388
|
customer_gateway_id: builtins.str,
|
|
103121
103389
|
type: builtins.str,
|
|
103122
103390
|
enable_acceleration: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103391
|
+
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
103392
|
+
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
103393
|
+
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
103394
|
+
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
103395
|
+
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
103123
103396
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103124
103397
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103125
103398
|
transit_gateway_id: typing.Optional[builtins.str] = None,
|
|
103399
|
+
transport_transit_gateway_attachment_id: typing.Optional[builtins.str] = None,
|
|
103400
|
+
tunnel_inside_ip_version: typing.Optional[builtins.str] = None,
|
|
103126
103401
|
vpn_gateway_id: typing.Optional[builtins.str] = None,
|
|
103127
103402
|
vpn_tunnel_options_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnVPNConnection.VpnTunnelOptionsSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
103128
103403
|
) -> None:
|
|
@@ -103159,6 +103434,36 @@ def _typecheckingstub__a9727918e2cc02acc3e4714eae211ac66008a7f458bb4fea3768632c1
|
|
|
103159
103434
|
"""Type checking stubs"""
|
|
103160
103435
|
pass
|
|
103161
103436
|
|
|
103437
|
+
def _typecheckingstub__bb1261371f235f1e234e8c4ce1a8f6717b70d0d64959002c32d7e29e39679aa9(
|
|
103438
|
+
value: typing.Optional[builtins.str],
|
|
103439
|
+
) -> None:
|
|
103440
|
+
"""Type checking stubs"""
|
|
103441
|
+
pass
|
|
103442
|
+
|
|
103443
|
+
def _typecheckingstub__dcd5f7064ee09680ba29d84786ff8c5dcfcaabc1aab46a1cce572d0661c18ebd(
|
|
103444
|
+
value: typing.Optional[builtins.str],
|
|
103445
|
+
) -> None:
|
|
103446
|
+
"""Type checking stubs"""
|
|
103447
|
+
pass
|
|
103448
|
+
|
|
103449
|
+
def _typecheckingstub__286d7ffc0407931563597ee64c1dea1894940b55a7dbee144187922a5d48607e(
|
|
103450
|
+
value: typing.Optional[builtins.str],
|
|
103451
|
+
) -> None:
|
|
103452
|
+
"""Type checking stubs"""
|
|
103453
|
+
pass
|
|
103454
|
+
|
|
103455
|
+
def _typecheckingstub__dd38c2ecf12fc1114502ef4d2747922a8b61667c72e4a3f2ef17e3b68a566752(
|
|
103456
|
+
value: typing.Optional[builtins.str],
|
|
103457
|
+
) -> None:
|
|
103458
|
+
"""Type checking stubs"""
|
|
103459
|
+
pass
|
|
103460
|
+
|
|
103461
|
+
def _typecheckingstub__da5a1cc9462db1bb5f81b0a5dd2559dd4f8a17e203dc59a17ab5e2c2f1c1e790(
|
|
103462
|
+
value: typing.Optional[builtins.str],
|
|
103463
|
+
) -> None:
|
|
103464
|
+
"""Type checking stubs"""
|
|
103465
|
+
pass
|
|
103466
|
+
|
|
103162
103467
|
def _typecheckingstub__e6cd3e38d95994ecfc9ca7d55958632e80d3f4b2d30513ab106e3fe76821aacf(
|
|
103163
103468
|
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
103164
103469
|
) -> None:
|
|
@@ -103177,6 +103482,18 @@ def _typecheckingstub__863c644d46be7fb81e39a402d096afcdf597ce502577d6486a258bb49
|
|
|
103177
103482
|
"""Type checking stubs"""
|
|
103178
103483
|
pass
|
|
103179
103484
|
|
|
103485
|
+
def _typecheckingstub__60943d6f882077c69e73d2799d6f1f6c1af7d30e6446db5341df06dc3bc1ee3b(
|
|
103486
|
+
value: typing.Optional[builtins.str],
|
|
103487
|
+
) -> None:
|
|
103488
|
+
"""Type checking stubs"""
|
|
103489
|
+
pass
|
|
103490
|
+
|
|
103491
|
+
def _typecheckingstub__8007a59c343ce11e58658ebb453cc6943fc15f9ba4622c48cec67a9be102b0b7(
|
|
103492
|
+
value: typing.Optional[builtins.str],
|
|
103493
|
+
) -> None:
|
|
103494
|
+
"""Type checking stubs"""
|
|
103495
|
+
pass
|
|
103496
|
+
|
|
103180
103497
|
def _typecheckingstub__68e0671a952b233ef44cb4e18db3052fff5636ca696c56590e9879c95154ce05(
|
|
103181
103498
|
value: typing.Optional[builtins.str],
|
|
103182
103499
|
) -> None:
|
|
@@ -103202,9 +103519,16 @@ def _typecheckingstub__af86adbb8c205a09b71896c35d8dac6b766cf096efd20c2deb4c2c01e
|
|
|
103202
103519
|
customer_gateway_id: builtins.str,
|
|
103203
103520
|
type: builtins.str,
|
|
103204
103521
|
enable_acceleration: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103522
|
+
local_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
103523
|
+
local_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
103524
|
+
outside_ip_address_type: typing.Optional[builtins.str] = None,
|
|
103525
|
+
remote_ipv4_network_cidr: typing.Optional[builtins.str] = None,
|
|
103526
|
+
remote_ipv6_network_cidr: typing.Optional[builtins.str] = None,
|
|
103205
103527
|
static_routes_only: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103206
103528
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103207
103529
|
transit_gateway_id: typing.Optional[builtins.str] = None,
|
|
103530
|
+
transport_transit_gateway_attachment_id: typing.Optional[builtins.str] = None,
|
|
103531
|
+
tunnel_inside_ip_version: typing.Optional[builtins.str] = None,
|
|
103208
103532
|
vpn_gateway_id: typing.Optional[builtins.str] = None,
|
|
103209
103533
|
vpn_tunnel_options_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnVPNConnection.VpnTunnelOptionsSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
103210
103534
|
) -> None:
|