aws-cdk.aws-ec2-alpha 2.205.0a0__py3-none-any.whl → 2.223.0a0__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.
- aws_cdk/aws_ec2_alpha/__init__.py +29 -0
- aws_cdk/aws_ec2_alpha/_jsii/__init__.py +2 -2
- aws_cdk/aws_ec2_alpha/_jsii/aws-ec2-alpha@2.223.0-alpha.0.jsii.tgz +0 -0
- {aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/METADATA +6 -6
- aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info/RECORD +10 -0
- aws_cdk/aws_ec2_alpha/_jsii/aws-ec2-alpha@2.205.0-alpha.0.jsii.tgz +0 -0
- aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info/RECORD +0 -10
- {aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/LICENSE +0 -0
- {aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/NOTICE +0 -0
- {aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/WHEEL +0 -0
- {aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/top_level.txt +0 -0
|
@@ -6280,6 +6280,15 @@ class SubnetV2(
|
|
|
6280
6280
|
'''
|
|
6281
6281
|
return typing.cast(builtins.str, jsii.get(self, "subnetId"))
|
|
6282
6282
|
|
|
6283
|
+
@builtins.property
|
|
6284
|
+
@jsii.member(jsii_name="subnetRef")
|
|
6285
|
+
def subnet_ref(self) -> _aws_cdk_aws_ec2_ceddda9d.SubnetReference:
|
|
6286
|
+
'''(experimental) A reference to a Subnet resource.
|
|
6287
|
+
|
|
6288
|
+
:stability: experimental
|
|
6289
|
+
'''
|
|
6290
|
+
return typing.cast(_aws_cdk_aws_ec2_ceddda9d.SubnetReference, jsii.get(self, "subnetRef"))
|
|
6291
|
+
|
|
6283
6292
|
@builtins.property
|
|
6284
6293
|
@jsii.member(jsii_name="ipv6CidrBlock")
|
|
6285
6294
|
def ipv6_cidr_block(self) -> typing.Optional[builtins.str]:
|
|
@@ -9816,6 +9825,7 @@ class VpcV2Base(
|
|
|
9816
9825
|
client_login_banner: typing.Optional[builtins.str] = None,
|
|
9817
9826
|
client_route_enforcement_options: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
9818
9827
|
description: typing.Optional[builtins.str] = None,
|
|
9828
|
+
disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
|
|
9819
9829
|
dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9820
9830
|
logging: typing.Optional[builtins.bool] = None,
|
|
9821
9831
|
log_group: typing.Optional[_aws_cdk_aws_logs_ceddda9d.ILogGroup] = None,
|
|
@@ -9840,6 +9850,7 @@ class VpcV2Base(
|
|
|
9840
9850
|
:param client_login_banner: Customizable text that will be displayed in a banner on AWS provided clients when a VPN session is established. UTF-8 encoded characters only. Maximum of 1400 characters. Default: - no banner is presented to the client
|
|
9841
9851
|
:param client_route_enforcement_options: Options for Client Route Enforcement. Client Route Enforcement is a feature of Client VPN that helps enforce administrator defined routes on devices connected through the VPN. This feature helps improve your security posture by ensuring that network traffic originating from a connected client is not inadvertently sent outside the VPN tunnel. Default: undefined - AWS Client VPN default setting is disable client route enforcement
|
|
9842
9852
|
:param description: A brief description of the Client VPN endpoint. Default: - no description
|
|
9853
|
+
:param disconnect_on_session_timeout: Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeout`` is reached. If ``true``, users are prompted to reconnect client VPN. If ``false``, client VPN attempts to reconnect automatically. Default: undefined - AWS Client VPN default is true
|
|
9843
9854
|
:param dns_servers: Information about the DNS servers to be used for DNS resolution. A Client VPN endpoint can have up to two DNS servers. Default: - use the DNS address configured on the device
|
|
9844
9855
|
:param logging: Whether to enable connections logging. Default: true
|
|
9845
9856
|
:param log_group: A CloudWatch Logs log group for connection logging. Default: - a new group is created
|
|
@@ -9867,6 +9878,7 @@ class VpcV2Base(
|
|
|
9867
9878
|
client_login_banner=client_login_banner,
|
|
9868
9879
|
client_route_enforcement_options=client_route_enforcement_options,
|
|
9869
9880
|
description=description,
|
|
9881
|
+
disconnect_on_session_timeout=disconnect_on_session_timeout,
|
|
9870
9882
|
dns_servers=dns_servers,
|
|
9871
9883
|
logging=logging,
|
|
9872
9884
|
log_group=log_group,
|
|
@@ -9979,6 +9991,7 @@ class VpcV2Base(
|
|
|
9979
9991
|
private_dns_enabled: typing.Optional[builtins.bool] = None,
|
|
9980
9992
|
private_dns_only_for_inbound_resolver_endpoint: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint] = None,
|
|
9981
9993
|
security_groups: typing.Optional[typing.Sequence[_aws_cdk_aws_ec2_ceddda9d.ISecurityGroup]] = None,
|
|
9994
|
+
service_region: typing.Optional[builtins.str] = None,
|
|
9982
9995
|
subnets: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
9983
9996
|
) -> _aws_cdk_aws_ec2_ceddda9d.InterfaceVpcEndpoint:
|
|
9984
9997
|
'''(experimental) Adds a new interface endpoint to this VPC.
|
|
@@ -9992,6 +10005,7 @@ class VpcV2Base(
|
|
|
9992
10005
|
:param private_dns_enabled: Whether to associate a private hosted zone with the specified VPC. This allows you to make requests to the service using its default DNS hostname. Default: set by the instance of IInterfaceVpcEndpointService, or true if not defined by the instance of IInterfaceVpcEndpointService
|
|
9993
10006
|
:param private_dns_only_for_inbound_resolver_endpoint: Whether to enable private DNS only for inbound endpoints. Default: not specified
|
|
9994
10007
|
:param security_groups: The security groups to associate with this interface VPC endpoint. Default: - a new security group is created
|
|
10008
|
+
:param service_region: The region where the VPC endpoint service is located. Only needs to be specified for cross-region VPC endpoints. Default: - Same region as the interface VPC endpoint
|
|
9995
10009
|
:param subnets: The subnets in which to create an endpoint network interface. At most one per availability zone. Default: - private subnets
|
|
9996
10010
|
|
|
9997
10011
|
:stability: experimental
|
|
@@ -10008,6 +10022,7 @@ class VpcV2Base(
|
|
|
10008
10022
|
private_dns_enabled=private_dns_enabled,
|
|
10009
10023
|
private_dns_only_for_inbound_resolver_endpoint=private_dns_only_for_inbound_resolver_endpoint,
|
|
10010
10024
|
security_groups=security_groups,
|
|
10025
|
+
service_region=service_region,
|
|
10011
10026
|
subnets=subnets,
|
|
10012
10027
|
)
|
|
10013
10028
|
|
|
@@ -10391,6 +10406,15 @@ class VpcV2Base(
|
|
|
10391
10406
|
'''
|
|
10392
10407
|
...
|
|
10393
10408
|
|
|
10409
|
+
@builtins.property
|
|
10410
|
+
@jsii.member(jsii_name="vpcRef")
|
|
10411
|
+
def vpc_ref(self) -> _aws_cdk_aws_ec2_ceddda9d.VPCReference:
|
|
10412
|
+
'''(experimental) A reference to a VPC resource.
|
|
10413
|
+
|
|
10414
|
+
:stability: experimental
|
|
10415
|
+
'''
|
|
10416
|
+
return typing.cast(_aws_cdk_aws_ec2_ceddda9d.VPCReference, jsii.get(self, "vpcRef"))
|
|
10417
|
+
|
|
10394
10418
|
@builtins.property
|
|
10395
10419
|
@jsii.member(jsii_name="egressOnlyInternetGatewayId")
|
|
10396
10420
|
def egress_only_internet_gateway_id(self) -> typing.Optional[builtins.str]:
|
|
@@ -12087,6 +12111,7 @@ def _typecheckingstub__c8e22ab92bf67ef2717b155efcdb6ba2134d3e9bdc0a53f7c0965eca6
|
|
|
12087
12111
|
client_login_banner: typing.Optional[builtins.str] = None,
|
|
12088
12112
|
client_route_enforcement_options: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
12089
12113
|
description: typing.Optional[builtins.str] = None,
|
|
12114
|
+
disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
|
|
12090
12115
|
dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
12091
12116
|
logging: typing.Optional[builtins.bool] = None,
|
|
12092
12117
|
log_group: typing.Optional[_aws_cdk_aws_logs_ceddda9d.ILogGroup] = None,
|
|
@@ -12134,6 +12159,7 @@ def _typecheckingstub__8cbad96bdbea562df222ed5faebcc6f505e346aac5ded2fa222b915b6
|
|
|
12134
12159
|
private_dns_enabled: typing.Optional[builtins.bool] = None,
|
|
12135
12160
|
private_dns_only_for_inbound_resolver_endpoint: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint] = None,
|
|
12136
12161
|
security_groups: typing.Optional[typing.Sequence[_aws_cdk_aws_ec2_ceddda9d.ISecurityGroup]] = None,
|
|
12162
|
+
service_region: typing.Optional[builtins.str] = None,
|
|
12137
12163
|
subnets: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
12138
12164
|
) -> None:
|
|
12139
12165
|
"""Type checking stubs"""
|
|
@@ -12231,3 +12257,6 @@ def _typecheckingstub__a44e5d77c989876de48b8f71adf0b240f0b6a3149cc8bd0c5ab7bb8df
|
|
|
12231
12257
|
) -> None:
|
|
12232
12258
|
"""Type checking stubs"""
|
|
12233
12259
|
pass
|
|
12260
|
+
|
|
12261
|
+
for cls in [IIpAddresses, IIpamPool, IIpamScopeBase, IRouteTarget, IRouteV2, ISubnetV2, ITransitGateway, ITransitGatewayAssociation, ITransitGatewayAttachment, ITransitGatewayRoute, ITransitGatewayRouteTable, ITransitGatewayRouteTableAssociation, ITransitGatewayRouteTablePropagation, ITransitGatewayVpcAttachment, ITransitGatewayVpcAttachmentOptions, IVPCCidrBlock, IVpcV2]:
|
|
12262
|
+
typing.cast(typing.Any, cls).__protocol_attrs__ = typing.cast(typing.Any, cls).__protocol_attrs__ - set(['__jsii_proxy_class__', '__jsii_type__'])
|
|
@@ -33,9 +33,9 @@ import constructs._jsii
|
|
|
33
33
|
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
35
35
|
"@aws-cdk/aws-ec2-alpha",
|
|
36
|
-
"2.
|
|
36
|
+
"2.223.0-alpha.0",
|
|
37
37
|
__name__[0:-6],
|
|
38
|
-
"aws-ec2-alpha@2.
|
|
38
|
+
"aws-ec2-alpha@2.223.0-alpha.0.jsii.tgz",
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
__all__ = [
|
|
Binary file
|
{aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.aws-ec2-alpha
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.223.0a0
|
|
4
4
|
Summary: The CDK construct library for VPC V2
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -22,11 +22,11 @@ Requires-Python: ~=3.9
|
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: NOTICE
|
|
25
|
-
Requires-Dist: aws-cdk-lib<3.0.0,>=2.
|
|
26
|
-
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
27
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
28
|
-
Requires-Dist: publication>=0.0.3
|
|
29
|
-
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
25
|
+
Requires-Dist: aws-cdk-lib <3.0.0,>=2.223.0
|
|
26
|
+
Requires-Dist: constructs <11.0.0,>=10.0.0
|
|
27
|
+
Requires-Dist: jsii <2.0.0,>=1.118.0
|
|
28
|
+
Requires-Dist: publication >=0.0.3
|
|
29
|
+
Requires-Dist: typeguard <4.3.0,>=2.13.3
|
|
30
30
|
|
|
31
31
|
# Amazon VpcV2 Construct Library
|
|
32
32
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/aws_ec2_alpha/__init__.py,sha256=bsgrSVAY_AI26oD_saiMWtPDlv_9ltPhGc3Lg6dW9eE,535946
|
|
2
|
+
aws_cdk/aws_ec2_alpha/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/aws_ec2_alpha/_jsii/__init__.py,sha256=UIj_qyOYNPie4hOKAQ-K9XykI8pa9s7bMBOz4xVurps,1479
|
|
4
|
+
aws_cdk/aws_ec2_alpha/_jsii/aws-ec2-alpha@2.223.0-alpha.0.jsii.tgz,sha256=TpRaHOVjH8UkXtdicaEC-rQviBxn7XfTceqn2wk1oiQ,248242
|
|
5
|
+
aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
+
aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info/METADATA,sha256=l8_nozE_5V5fiGnQR9URInZQRYORWiswCZZ5GZ2WiVM,36673
|
|
7
|
+
aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info/NOTICE,sha256=ZDV6_xBfMvhFtjjBh_f6lJjhZ2AEWWAGGkx2kLKHiuc,113
|
|
8
|
+
aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
9
|
+
aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
aws_cdk/aws_ec2_alpha/__init__.py,sha256=eJFRsjjlnmtcY064FKQCpV4bf5aWGsGZ5pjU8RuGhxg,533848
|
|
2
|
-
aws_cdk/aws_ec2_alpha/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/aws_ec2_alpha/_jsii/__init__.py,sha256=EhPCgbs-BjLZo2zuZd2aABunkiORCI1zd7x18BNQIyg,1479
|
|
4
|
-
aws_cdk/aws_ec2_alpha/_jsii/aws-ec2-alpha@2.205.0-alpha.0.jsii.tgz,sha256=HCRa2mulGGkj8wgSyxuM8OW6355FtBPKOcTesEeIqXs,239812
|
|
5
|
-
aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
-
aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info/METADATA,sha256=oknR3xHMTc27aQTgRPf11H_DCxMZG0hdX8W9H8OoR-U,36668
|
|
7
|
-
aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info/NOTICE,sha256=ZDV6_xBfMvhFtjjBh_f6lJjhZ2AEWWAGGkx2kLKHiuc,113
|
|
8
|
-
aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
9
|
-
aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info/RECORD,,
|
{aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/NOTICE
RENAMED
|
File without changes
|
{aws_cdk_aws_ec2_alpha-2.205.0a0.dist-info → aws_cdk_aws_ec2_alpha-2.223.0a0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|