aws-cdk-lib 2.219.0__py3-none-any.whl → 2.220.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.

Files changed (51) hide show
  1. aws_cdk/__init__.py +12 -17
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.219.0.jsii.tgz → aws-cdk-lib@2.220.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_applicationsignals/__init__.py +450 -2
  5. aws_cdk/aws_arcregionswitch/__init__.py +8 -0
  6. aws_cdk/aws_backup/__init__.py +29 -0
  7. aws_cdk/aws_batch/__init__.py +109 -7
  8. aws_cdk/aws_bedrock/__init__.py +44 -16
  9. aws_cdk/aws_bedrockagentcore/__init__.py +7872 -1718
  10. aws_cdk/aws_cloudfront/experimental/__init__.py +4 -0
  11. aws_cdk/aws_cloudfront_origins/__init__.py +87 -6
  12. aws_cdk/aws_cloudwatch/__init__.py +5 -5
  13. aws_cdk/aws_cognito/__init__.py +6 -4
  14. aws_cdk/aws_dax/__init__.py +12 -3
  15. aws_cdk/aws_directoryservice/__init__.py +29 -0
  16. aws_cdk/aws_ec2/__init__.py +99 -8
  17. aws_cdk/aws_ecs/__init__.py +342 -134
  18. aws_cdk/aws_eks/__init__.py +114 -9
  19. aws_cdk/aws_fsx/__init__.py +4 -4
  20. aws_cdk/aws_imagebuilder/__init__.py +397 -0
  21. aws_cdk/aws_iotsitewise/__init__.py +136 -80
  22. aws_cdk/aws_kinesis/__init__.py +95 -4
  23. aws_cdk/aws_lambda/__init__.py +43 -0
  24. aws_cdk/aws_lightsail/__init__.py +584 -0
  25. aws_cdk/aws_logs/__init__.py +57 -0
  26. aws_cdk/aws_lookoutmetrics/__init__.py +14 -2
  27. aws_cdk/aws_m2/__init__.py +59 -13
  28. aws_cdk/aws_medialive/__init__.py +108 -0
  29. aws_cdk/aws_mwaa/__init__.py +5 -5
  30. aws_cdk/aws_neptune/__init__.py +133 -70
  31. aws_cdk/aws_networkmanager/__init__.py +29 -0
  32. aws_cdk/aws_observabilityadmin/__init__.py +1227 -83
  33. aws_cdk/aws_omics/__init__.py +7 -1
  34. aws_cdk/aws_opensearchservice/__init__.py +6 -0
  35. aws_cdk/aws_pcs/__init__.py +224 -33
  36. aws_cdk/aws_pinpoint/__init__.py +58 -0
  37. aws_cdk/aws_quicksight/__init__.py +80 -0
  38. aws_cdk/aws_rds/__init__.py +29 -23
  39. aws_cdk/aws_refactorspaces/__init__.py +18 -6
  40. aws_cdk/aws_route53/__init__.py +130 -6
  41. aws_cdk/aws_s3/__init__.py +29 -2
  42. aws_cdk/aws_s3objectlambda/__init__.py +44 -12
  43. aws_cdk/aws_servicecatalog/__init__.py +25 -20
  44. aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
  45. aws_cdk/aws_synthetics/__init__.py +21 -1
  46. {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/METADATA +1 -1
  47. {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/RECORD +51 -51
  48. {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/LICENSE +0 -0
  49. {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/NOTICE +0 -0
  50. {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/WHEEL +0 -0
  51. {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/top_level.txt +0 -0
@@ -1422,6 +1422,21 @@ endpoint = vpc.add_client_vpn_endpoint("Endpoint",
1422
1422
  )
1423
1423
  ```
1424
1424
 
1425
+ To control whether clients are automatically disconnected when the maximum session duration is reached, use the `disconnectOnSessionTimeout` prop.
1426
+ By default (`true`), clients are disconnected and must manually reconnect.
1427
+ Set to `false` to allow automatic reconnection attempts:
1428
+
1429
+ ```python
1430
+ endpoint = vpc.add_client_vpn_endpoint("Endpoint",
1431
+ cidr="10.100.0.0/16",
1432
+ server_certificate_arn="arn:aws:acm:us-east-1:123456789012:certificate/server-certificate-id",
1433
+ client_certificate_arn="arn:aws:acm:us-east-1:123456789012:certificate/client-certificate-id",
1434
+ disconnect_on_session_timeout=False
1435
+ )
1436
+ ```
1437
+
1438
+ Detail information about maximum VPN session duration timeout can be found in the [AWS documentation](https://docs.aws.amazon.com/vpn/latest/clientvpn-admin/cvpn-working-max-duration.html).
1439
+
1425
1440
  ## Instances
1426
1441
 
1427
1442
  You can use the `Instance` class to start up a single EC2 instance. For production setups, we recommend
@@ -23814,6 +23829,7 @@ class ClientVpnEndpointAttributes:
23814
23829
  "client_login_banner": "clientLoginBanner",
23815
23830
  "client_route_enforcement_options": "clientRouteEnforcementOptions",
23816
23831
  "description": "description",
23832
+ "disconnect_on_session_timeout": "disconnectOnSessionTimeout",
23817
23833
  "dns_servers": "dnsServers",
23818
23834
  "logging": "logging",
23819
23835
  "log_group": "logGroup",
@@ -23840,6 +23856,7 @@ class ClientVpnEndpointOptions:
23840
23856
  client_login_banner: typing.Optional[builtins.str] = None,
23841
23857
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
23842
23858
  description: typing.Optional[builtins.str] = None,
23859
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
23843
23860
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
23844
23861
  logging: typing.Optional[builtins.bool] = None,
23845
23862
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -23863,6 +23880,7 @@ class ClientVpnEndpointOptions:
23863
23880
  :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
23864
23881
  :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
23865
23882
  :param description: A brief description of the Client VPN endpoint. Default: - no description
23883
+ :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
23866
23884
  :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
23867
23885
  :param logging: Whether to enable connections logging. Default: true
23868
23886
  :param log_group: A CloudWatch Logs log group for connection logging. Default: - a new group is created
@@ -23880,16 +23898,13 @@ class ClientVpnEndpointOptions:
23880
23898
 
23881
23899
  Example::
23882
23900
 
23883
- endpoint = vpc.add_client_vpn_endpoint("Endpoint",
23901
+ vpc.add_client_vpn_endpoint("Endpoint",
23884
23902
  cidr="10.100.0.0/16",
23885
23903
  server_certificate_arn="arn:aws:acm:us-east-1:123456789012:certificate/server-certificate-id",
23886
- user_based_authentication=ec2.ClientVpnUserBasedAuthentication.federated(saml_provider),
23887
- authorize_all_users_to_vpc_cidr=False
23888
- )
23889
-
23890
- endpoint.add_authorization_rule("Rule",
23891
- cidr="10.0.10.0/32",
23892
- group_id="group-id"
23904
+ # Mutual authentication
23905
+ client_certificate_arn="arn:aws:acm:us-east-1:123456789012:certificate/client-certificate-id",
23906
+ # User-based authentication
23907
+ user_based_authentication=ec2.ClientVpnUserBasedAuthentication.federated(saml_provider)
23893
23908
  )
23894
23909
  '''
23895
23910
  if isinstance(client_route_enforcement_options, dict):
@@ -23906,6 +23921,7 @@ class ClientVpnEndpointOptions:
23906
23921
  check_type(argname="argument client_login_banner", value=client_login_banner, expected_type=type_hints["client_login_banner"])
23907
23922
  check_type(argname="argument client_route_enforcement_options", value=client_route_enforcement_options, expected_type=type_hints["client_route_enforcement_options"])
23908
23923
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
23924
+ check_type(argname="argument disconnect_on_session_timeout", value=disconnect_on_session_timeout, expected_type=type_hints["disconnect_on_session_timeout"])
23909
23925
  check_type(argname="argument dns_servers", value=dns_servers, expected_type=type_hints["dns_servers"])
23910
23926
  check_type(argname="argument logging", value=logging, expected_type=type_hints["logging"])
23911
23927
  check_type(argname="argument log_group", value=log_group, expected_type=type_hints["log_group"])
@@ -23934,6 +23950,8 @@ class ClientVpnEndpointOptions:
23934
23950
  self._values["client_route_enforcement_options"] = client_route_enforcement_options
23935
23951
  if description is not None:
23936
23952
  self._values["description"] = description
23953
+ if disconnect_on_session_timeout is not None:
23954
+ self._values["disconnect_on_session_timeout"] = disconnect_on_session_timeout
23937
23955
  if dns_servers is not None:
23938
23956
  self._values["dns_servers"] = dns_servers
23939
23957
  if logging is not None:
@@ -24054,6 +24072,20 @@ class ClientVpnEndpointOptions:
24054
24072
  result = self._values.get("description")
24055
24073
  return typing.cast(typing.Optional[builtins.str], result)
24056
24074
 
24075
+ @builtins.property
24076
+ def disconnect_on_session_timeout(self) -> typing.Optional[builtins.bool]:
24077
+ '''Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeout`` is reached.
24078
+
24079
+ If ``true``, users are prompted to reconnect client VPN.
24080
+ If ``false``, client VPN attempts to reconnect automatically.
24081
+
24082
+ :default: undefined - AWS Client VPN default is true
24083
+
24084
+ :see: https://docs.aws.amazon.com/vpn/latest/clientvpn-admin/cvpn-working-max-duration.html
24085
+ '''
24086
+ result = self._values.get("disconnect_on_session_timeout")
24087
+ return typing.cast(typing.Optional[builtins.bool], result)
24088
+
24057
24089
  @builtins.property
24058
24090
  def dns_servers(self) -> typing.Optional[typing.List[builtins.str]]:
24059
24091
  '''Information about the DNS servers to be used for DNS resolution.
@@ -24194,6 +24226,7 @@ class ClientVpnEndpointOptions:
24194
24226
  "client_login_banner": "clientLoginBanner",
24195
24227
  "client_route_enforcement_options": "clientRouteEnforcementOptions",
24196
24228
  "description": "description",
24229
+ "disconnect_on_session_timeout": "disconnectOnSessionTimeout",
24197
24230
  "dns_servers": "dnsServers",
24198
24231
  "logging": "logging",
24199
24232
  "log_group": "logGroup",
@@ -24221,6 +24254,7 @@ class ClientVpnEndpointProps(ClientVpnEndpointOptions):
24221
24254
  client_login_banner: typing.Optional[builtins.str] = None,
24222
24255
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
24223
24256
  description: typing.Optional[builtins.str] = None,
24257
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
24224
24258
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
24225
24259
  logging: typing.Optional[builtins.bool] = None,
24226
24260
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -24245,6 +24279,7 @@ class ClientVpnEndpointProps(ClientVpnEndpointOptions):
24245
24279
  :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
24246
24280
  :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
24247
24281
  :param description: A brief description of the Client VPN endpoint. Default: - no description
24282
+ :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
24248
24283
  :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
24249
24284
  :param logging: Whether to enable connections logging. Default: true
24250
24285
  :param log_group: A CloudWatch Logs log group for connection logging. Default: - a new group is created
@@ -24291,6 +24326,7 @@ class ClientVpnEndpointProps(ClientVpnEndpointOptions):
24291
24326
  enforced=False
24292
24327
  ),
24293
24328
  description="description",
24329
+ disconnect_on_session_timeout=False,
24294
24330
  dns_servers=["dnsServers"],
24295
24331
  logging=False,
24296
24332
  log_group=log_group,
@@ -24326,6 +24362,7 @@ class ClientVpnEndpointProps(ClientVpnEndpointOptions):
24326
24362
  check_type(argname="argument client_login_banner", value=client_login_banner, expected_type=type_hints["client_login_banner"])
24327
24363
  check_type(argname="argument client_route_enforcement_options", value=client_route_enforcement_options, expected_type=type_hints["client_route_enforcement_options"])
24328
24364
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
24365
+ check_type(argname="argument disconnect_on_session_timeout", value=disconnect_on_session_timeout, expected_type=type_hints["disconnect_on_session_timeout"])
24329
24366
  check_type(argname="argument dns_servers", value=dns_servers, expected_type=type_hints["dns_servers"])
24330
24367
  check_type(argname="argument logging", value=logging, expected_type=type_hints["logging"])
24331
24368
  check_type(argname="argument log_group", value=log_group, expected_type=type_hints["log_group"])
@@ -24356,6 +24393,8 @@ class ClientVpnEndpointProps(ClientVpnEndpointOptions):
24356
24393
  self._values["client_route_enforcement_options"] = client_route_enforcement_options
24357
24394
  if description is not None:
24358
24395
  self._values["description"] = description
24396
+ if disconnect_on_session_timeout is not None:
24397
+ self._values["disconnect_on_session_timeout"] = disconnect_on_session_timeout
24359
24398
  if dns_servers is not None:
24360
24399
  self._values["dns_servers"] = dns_servers
24361
24400
  if logging is not None:
@@ -24476,6 +24515,20 @@ class ClientVpnEndpointProps(ClientVpnEndpointOptions):
24476
24515
  result = self._values.get("description")
24477
24516
  return typing.cast(typing.Optional[builtins.str], result)
24478
24517
 
24518
+ @builtins.property
24519
+ def disconnect_on_session_timeout(self) -> typing.Optional[builtins.bool]:
24520
+ '''Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeout`` is reached.
24521
+
24522
+ If ``true``, users are prompted to reconnect client VPN.
24523
+ If ``false``, client VPN attempts to reconnect automatically.
24524
+
24525
+ :default: undefined - AWS Client VPN default is true
24526
+
24527
+ :see: https://docs.aws.amazon.com/vpn/latest/clientvpn-admin/cvpn-working-max-duration.html
24528
+ '''
24529
+ result = self._values.get("disconnect_on_session_timeout")
24530
+ return typing.cast(typing.Optional[builtins.bool], result)
24531
+
24479
24532
  @builtins.property
24480
24533
  def dns_servers(self) -> typing.Optional[typing.List[builtins.str]]:
24481
24534
  '''Information about the DNS servers to be used for DNS resolution.
@@ -33726,6 +33779,7 @@ class IVpc(_IResource_c80c4260, IVPCRef, typing_extensions.Protocol):
33726
33779
  client_login_banner: typing.Optional[builtins.str] = None,
33727
33780
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
33728
33781
  description: typing.Optional[builtins.str] = None,
33782
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
33729
33783
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
33730
33784
  logging: typing.Optional[builtins.bool] = None,
33731
33785
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -33750,6 +33804,7 @@ class IVpc(_IResource_c80c4260, IVPCRef, typing_extensions.Protocol):
33750
33804
  :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
33751
33805
  :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
33752
33806
  :param description: A brief description of the Client VPN endpoint. Default: - no description
33807
+ :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
33753
33808
  :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
33754
33809
  :param logging: Whether to enable connections logging. Default: true
33755
33810
  :param log_group: A CloudWatch Logs log group for connection logging. Default: - a new group is created
@@ -33977,6 +34032,7 @@ class _IVpcProxy(
33977
34032
  client_login_banner: typing.Optional[builtins.str] = None,
33978
34033
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
33979
34034
  description: typing.Optional[builtins.str] = None,
34035
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
33980
34036
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
33981
34037
  logging: typing.Optional[builtins.bool] = None,
33982
34038
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -34001,6 +34057,7 @@ class _IVpcProxy(
34001
34057
  :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
34002
34058
  :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
34003
34059
  :param description: A brief description of the Client VPN endpoint. Default: - no description
34060
+ :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
34004
34061
  :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
34005
34062
  :param logging: Whether to enable connections logging. Default: true
34006
34063
  :param log_group: A CloudWatch Logs log group for connection logging. Default: - a new group is created
@@ -34026,6 +34083,7 @@ class _IVpcProxy(
34026
34083
  client_login_banner=client_login_banner,
34027
34084
  client_route_enforcement_options=client_route_enforcement_options,
34028
34085
  description=description,
34086
+ disconnect_on_session_timeout=disconnect_on_session_timeout,
34029
34087
  dns_servers=dns_servers,
34030
34088
  logging=logging,
34031
34089
  log_group=log_group,
@@ -37179,6 +37237,14 @@ class InstanceClass(enum.Enum):
37179
37237
  '''Compute optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation C7i-flex instances efficiently use compute resources to deliver a baseline level of performance with the ability to scale up to the full compute performance a majority of the time.'''
37180
37238
  C7I_FLEX = "C7I_FLEX"
37181
37239
  '''Compute optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation C7i-flex instances efficiently use compute resources to deliver a baseline level of performance with the ability to scale up to the full compute performance a majority of the time.'''
37240
+ COMPUTE8_INTEL = "COMPUTE8_INTEL"
37241
+ '''Compute optimized instances based on custom Intel Xeon 6 processors, available only on AWS, 8th generation.'''
37242
+ C8I = "C8I"
37243
+ '''Compute optimized instances based on custom Intel Xeon 6 processors, available only on AWS, 8th generation.'''
37244
+ COMPUTE8_INTEL_FLEX = "COMPUTE8_INTEL_FLEX"
37245
+ '''Compute optimized instances based on custom Intel Xeon 6 processors, available only on AWS, 8th generation C8i-flex instances efficiently use compute resources to deliver a baseline level of performance with the ability to scale up to the full compute performance a majority of the time.'''
37246
+ C8I_FLEX = "C8I_FLEX"
37247
+ '''Compute optimized instances based on custom Intel Xeon 6 processors, available only on AWS, 8th generation C8i-flex instances efficiently use compute resources to deliver a baseline level of performance with the ability to scale up to the full compute performance a majority of the time.'''
37182
37248
  COMPUTE7_AMD = "COMPUTE7_AMD"
37183
37249
  '''Compute optimized instances based on 4th generation AMD EPYC (codename Genoa), 7th generation.'''
37184
37250
  C7A = "C7A"
@@ -37477,6 +37543,10 @@ class InstanceClass(enum.Enum):
37477
37543
  '''Standard instances based on 4th generation AMD EPYC (codename Genoa), 7th generation.'''
37478
37544
  M7A = "M7A"
37479
37545
  '''Standard instances based on 4th generation AMD EPYC (codename Genoa), 7th generation.'''
37546
+ STANDARD8_AMD = "STANDARD8_AMD"
37547
+ '''Standard instances based on 5th generation AMD EPYC (formerly code named Turin), 8th generation.'''
37548
+ M8A = "M8A"
37549
+ '''Standard instances based on 5th generation AMD EPYC (formerly code named Turin), 8th generation.'''
37480
37550
  HIGH_COMPUTE_MEMORY1 = "HIGH_COMPUTE_MEMORY1"
37481
37551
  '''High memory and compute capacity instances, 1st generation.'''
37482
37552
  Z1D = "Z1D"
@@ -39672,6 +39742,16 @@ class InterfaceVpcEndpointAwsService(
39672
39742
  def BEDROCK_AGENT_RUNTIME(cls) -> "InterfaceVpcEndpointAwsService":
39673
39743
  return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BEDROCK_AGENT_RUNTIME"))
39674
39744
 
39745
+ @jsii.python.classproperty
39746
+ @jsii.member(jsii_name="BEDROCK_AGENTCORE")
39747
+ def BEDROCK_AGENTCORE(cls) -> "InterfaceVpcEndpointAwsService":
39748
+ return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BEDROCK_AGENTCORE"))
39749
+
39750
+ @jsii.python.classproperty
39751
+ @jsii.member(jsii_name="BEDROCK_AGENTCORE_GATEWAY")
39752
+ def BEDROCK_AGENTCORE_GATEWAY(cls) -> "InterfaceVpcEndpointAwsService":
39753
+ return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BEDROCK_AGENTCORE_GATEWAY"))
39754
+
39675
39755
  @jsii.python.classproperty
39676
39756
  @jsii.member(jsii_name="BEDROCK_DATA_AUTOMATION")
39677
39757
  def BEDROCK_DATA_AUTOMATION(cls) -> "InterfaceVpcEndpointAwsService":
@@ -54786,6 +54866,7 @@ class Vpc(
54786
54866
  client_login_banner: typing.Optional[builtins.str] = None,
54787
54867
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
54788
54868
  description: typing.Optional[builtins.str] = None,
54869
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
54789
54870
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
54790
54871
  logging: typing.Optional[builtins.bool] = None,
54791
54872
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -54810,6 +54891,7 @@ class Vpc(
54810
54891
  :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
54811
54892
  :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
54812
54893
  :param description: A brief description of the Client VPN endpoint. Default: - no description
54894
+ :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
54813
54895
  :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
54814
54896
  :param logging: Whether to enable connections logging. Default: true
54815
54897
  :param log_group: A CloudWatch Logs log group for connection logging. Default: - a new group is created
@@ -54835,6 +54917,7 @@ class Vpc(
54835
54917
  client_login_banner=client_login_banner,
54836
54918
  client_route_enforcement_options=client_route_enforcement_options,
54837
54919
  description=description,
54920
+ disconnect_on_session_timeout=disconnect_on_session_timeout,
54838
54921
  dns_servers=dns_servers,
54839
54922
  logging=logging,
54840
54923
  log_group=log_group,
@@ -119229,6 +119312,7 @@ class ClientVpnEndpoint(
119229
119312
  client_login_banner: typing.Optional[builtins.str] = None,
119230
119313
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
119231
119314
  description: typing.Optional[builtins.str] = None,
119315
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
119232
119316
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
119233
119317
  logging: typing.Optional[builtins.bool] = None,
119234
119318
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -119254,6 +119338,7 @@ class ClientVpnEndpoint(
119254
119338
  :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
119255
119339
  :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
119256
119340
  :param description: A brief description of the Client VPN endpoint. Default: - no description
119341
+ :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
119257
119342
  :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
119258
119343
  :param logging: Whether to enable connections logging. Default: true
119259
119344
  :param log_group: A CloudWatch Logs log group for connection logging. Default: - a new group is created
@@ -119281,6 +119366,7 @@ class ClientVpnEndpoint(
119281
119366
  client_login_banner=client_login_banner,
119282
119367
  client_route_enforcement_options=client_route_enforcement_options,
119283
119368
  description=description,
119369
+ disconnect_on_session_timeout=disconnect_on_session_timeout,
119284
119370
  dns_servers=dns_servers,
119285
119371
  logging=logging,
119286
119372
  log_group=log_group,
@@ -122258,6 +122344,7 @@ def _typecheckingstub__73f8593e2e6199f8ae542cff4cbe02f0be09fd9043b8072cbb652d5b0
122258
122344
  client_login_banner: typing.Optional[builtins.str] = None,
122259
122345
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
122260
122346
  description: typing.Optional[builtins.str] = None,
122347
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
122261
122348
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
122262
122349
  logging: typing.Optional[builtins.bool] = None,
122263
122350
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -122284,6 +122371,7 @@ def _typecheckingstub__8e89ba9082e1bc80500c526e8522c5a90e2a91bd17d985f5932611e0b
122284
122371
  client_login_banner: typing.Optional[builtins.str] = None,
122285
122372
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
122286
122373
  description: typing.Optional[builtins.str] = None,
122374
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
122287
122375
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
122288
122376
  logging: typing.Optional[builtins.bool] = None,
122289
122377
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -122798,6 +122886,7 @@ def _typecheckingstub__19cdaa7bec0f733a863944b2be6c76392b1e518714158a913370b8de7
122798
122886
  client_login_banner: typing.Optional[builtins.str] = None,
122799
122887
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
122800
122888
  description: typing.Optional[builtins.str] = None,
122889
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
122801
122890
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
122802
122891
  logging: typing.Optional[builtins.bool] = None,
122803
122892
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -124810,6 +124899,7 @@ def _typecheckingstub__04f8b7e933af74b695401b45c9c6b308e4684ecde3cb9a2a1e358a336
124810
124899
  client_login_banner: typing.Optional[builtins.str] = None,
124811
124900
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
124812
124901
  description: typing.Optional[builtins.str] = None,
124902
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
124813
124903
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
124814
124904
  logging: typing.Optional[builtins.bool] = None,
124815
124905
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
@@ -135439,6 +135529,7 @@ def _typecheckingstub__9a2422e1dfabadbd7f572317ed37670a87714b6f36fe9da2a01f1e26e
135439
135529
  client_login_banner: typing.Optional[builtins.str] = None,
135440
135530
  client_route_enforcement_options: typing.Optional[typing.Union[ClientRouteEnforcementOptions, typing.Dict[builtins.str, typing.Any]]] = None,
135441
135531
  description: typing.Optional[builtins.str] = None,
135532
+ disconnect_on_session_timeout: typing.Optional[builtins.bool] = None,
135442
135533
  dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
135443
135534
  logging: typing.Optional[builtins.bool] = None,
135444
135535
  log_group: typing.Optional[_ILogGroup_3c4fa718] = None,