aws-cdk-lib 2.196.0__py3-none-any.whl → 2.197.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 (30) hide show
  1. aws_cdk/__init__.py +2 -0
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.196.0.jsii.tgz → aws-cdk-lib@2.197.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +90 -1
  5. aws_cdk/aws_apigatewayv2/__init__.py +866 -0
  6. aws_cdk/aws_bedrock/__init__.py +32 -26
  7. aws_cdk/aws_cloudfront/__init__.py +9 -3
  8. aws_cdk/aws_cloudwatch/__init__.py +756 -29
  9. aws_cdk/aws_codebuild/__init__.py +19 -0
  10. aws_cdk/aws_codepipeline/__init__.py +42 -7
  11. aws_cdk/aws_datasync/__init__.py +43 -72
  12. aws_cdk/aws_datazone/__init__.py +615 -2
  13. aws_cdk/aws_deadline/__init__.py +139 -0
  14. aws_cdk/aws_dsql/__init__.py +35 -1
  15. aws_cdk/aws_ec2/__init__.py +81 -3
  16. aws_cdk/aws_ecs/__init__.py +24 -17
  17. aws_cdk/aws_elasticache/__init__.py +5 -5
  18. aws_cdk/aws_gamelift/__init__.py +103 -15
  19. aws_cdk/aws_gameliftstreams/__init__.py +6 -6
  20. aws_cdk/aws_lambda_nodejs/__init__.py +0 -6
  21. aws_cdk/aws_omics/__init__.py +920 -103
  22. aws_cdk/aws_route53resolver/__init__.py +0 -41
  23. aws_cdk/aws_ses/__init__.py +4 -4
  24. aws_cdk/aws_workspaces/__init__.py +39 -0
  25. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/METADATA +1 -1
  26. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/RECORD +30 -30
  27. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/LICENSE +0 -0
  28. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/NOTICE +0 -0
  29. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/WHEEL +0 -0
  30. {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/top_level.txt +0 -0
@@ -3480,7 +3480,6 @@ class CfnResolverRule(
3480
3480
  rule_type="ruleType",
3481
3481
 
3482
3482
  # the properties below are optional
3483
- delegation_record="delegationRecord",
3484
3483
  domain_name="domainName",
3485
3484
  name="name",
3486
3485
  resolver_endpoint_id="resolverEndpointId",
@@ -3504,7 +3503,6 @@ class CfnResolverRule(
3504
3503
  id: builtins.str,
3505
3504
  *,
3506
3505
  rule_type: builtins.str,
3507
- delegation_record: typing.Optional[builtins.str] = None,
3508
3506
  domain_name: typing.Optional[builtins.str] = None,
3509
3507
  name: typing.Optional[builtins.str] = None,
3510
3508
  resolver_endpoint_id: typing.Optional[builtins.str] = None,
@@ -3515,7 +3513,6 @@ class CfnResolverRule(
3515
3513
  :param scope: Scope in which this resource is defined.
3516
3514
  :param id: Construct identifier for this resource (unique in its scope).
3517
3515
  :param rule_type: When you want to forward DNS queries for specified domain name to resolvers on your network, specify ``FORWARD`` . When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for a subdomain of that domain, specify ``SYSTEM`` . For example, to forward DNS queries for example.com to resolvers on your network, you create a rule and specify ``FORWARD`` for ``RuleType`` . To then have Resolver process queries for apex.example.com, you create a rule and specify ``SYSTEM`` for ``RuleType`` . Currently, only Resolver can create rules that have a value of ``RECURSIVE`` for ``RuleType`` .
3518
- :param delegation_record: The name server domain for queries to be delegated to if a query matches the delegation record.
3519
3516
  :param domain_name: DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` . If a query matches multiple Resolver rules (example.com and www.example.com), the query is routed using the Resolver rule that contains the most specific domain name (www.example.com).
3520
3517
  :param name: The name for the Resolver rule, which you specified when you created the Resolver rule.
3521
3518
  :param resolver_endpoint_id: The ID of the endpoint that the rule is associated with.
@@ -3528,7 +3525,6 @@ class CfnResolverRule(
3528
3525
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
3529
3526
  props = CfnResolverRuleProps(
3530
3527
  rule_type=rule_type,
3531
- delegation_record=delegation_record,
3532
3528
  domain_name=domain_name,
3533
3529
  name=name,
3534
3530
  resolver_endpoint_id=resolver_endpoint_id,
@@ -3652,19 +3648,6 @@ class CfnResolverRule(
3652
3648
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3653
3649
  jsii.set(self, "ruleType", value) # pyright: ignore[reportArgumentType]
3654
3650
 
3655
- @builtins.property
3656
- @jsii.member(jsii_name="delegationRecord")
3657
- def delegation_record(self) -> typing.Optional[builtins.str]:
3658
- '''The name server domain for queries to be delegated to if a query matches the delegation record.'''
3659
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "delegationRecord"))
3660
-
3661
- @delegation_record.setter
3662
- def delegation_record(self, value: typing.Optional[builtins.str]) -> None:
3663
- if __debug__:
3664
- type_hints = typing.get_type_hints(_typecheckingstub__b1126d07ce449d0d6220e3fbf183f2d786e81574a4f131914dfe0914a55bb851)
3665
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3666
- jsii.set(self, "delegationRecord", value) # pyright: ignore[reportArgumentType]
3667
-
3668
3651
  @builtins.property
3669
3652
  @jsii.member(jsii_name="domainName")
3670
3653
  def domain_name(self) -> typing.Optional[builtins.str]:
@@ -4123,7 +4106,6 @@ class CfnResolverRuleAssociationProps:
4123
4106
  jsii_struct_bases=[],
4124
4107
  name_mapping={
4125
4108
  "rule_type": "ruleType",
4126
- "delegation_record": "delegationRecord",
4127
4109
  "domain_name": "domainName",
4128
4110
  "name": "name",
4129
4111
  "resolver_endpoint_id": "resolverEndpointId",
@@ -4136,7 +4118,6 @@ class CfnResolverRuleProps:
4136
4118
  self,
4137
4119
  *,
4138
4120
  rule_type: builtins.str,
4139
- delegation_record: typing.Optional[builtins.str] = None,
4140
4121
  domain_name: typing.Optional[builtins.str] = None,
4141
4122
  name: typing.Optional[builtins.str] = None,
4142
4123
  resolver_endpoint_id: typing.Optional[builtins.str] = None,
@@ -4146,7 +4127,6 @@ class CfnResolverRuleProps:
4146
4127
  '''Properties for defining a ``CfnResolverRule``.
4147
4128
 
4148
4129
  :param rule_type: When you want to forward DNS queries for specified domain name to resolvers on your network, specify ``FORWARD`` . When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for a subdomain of that domain, specify ``SYSTEM`` . For example, to forward DNS queries for example.com to resolvers on your network, you create a rule and specify ``FORWARD`` for ``RuleType`` . To then have Resolver process queries for apex.example.com, you create a rule and specify ``SYSTEM`` for ``RuleType`` . Currently, only Resolver can create rules that have a value of ``RECURSIVE`` for ``RuleType`` .
4149
- :param delegation_record: The name server domain for queries to be delegated to if a query matches the delegation record.
4150
4130
  :param domain_name: DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` . If a query matches multiple Resolver rules (example.com and www.example.com), the query is routed using the Resolver rule that contains the most specific domain name (www.example.com).
4151
4131
  :param name: The name for the Resolver rule, which you specified when you created the Resolver rule.
4152
4132
  :param resolver_endpoint_id: The ID of the endpoint that the rule is associated with.
@@ -4166,7 +4146,6 @@ class CfnResolverRuleProps:
4166
4146
  rule_type="ruleType",
4167
4147
 
4168
4148
  # the properties below are optional
4169
- delegation_record="delegationRecord",
4170
4149
  domain_name="domainName",
4171
4150
  name="name",
4172
4151
  resolver_endpoint_id="resolverEndpointId",
@@ -4186,7 +4165,6 @@ class CfnResolverRuleProps:
4186
4165
  if __debug__:
4187
4166
  type_hints = typing.get_type_hints(_typecheckingstub__fdcaea1870aaf2dc13fe56b2d15a89d6adba2ad5884071fc618c9e4bb2c3ddec)
4188
4167
  check_type(argname="argument rule_type", value=rule_type, expected_type=type_hints["rule_type"])
4189
- check_type(argname="argument delegation_record", value=delegation_record, expected_type=type_hints["delegation_record"])
4190
4168
  check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
4191
4169
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
4192
4170
  check_type(argname="argument resolver_endpoint_id", value=resolver_endpoint_id, expected_type=type_hints["resolver_endpoint_id"])
@@ -4195,8 +4173,6 @@ class CfnResolverRuleProps:
4195
4173
  self._values: typing.Dict[builtins.str, typing.Any] = {
4196
4174
  "rule_type": rule_type,
4197
4175
  }
4198
- if delegation_record is not None:
4199
- self._values["delegation_record"] = delegation_record
4200
4176
  if domain_name is not None:
4201
4177
  self._values["domain_name"] = domain_name
4202
4178
  if name is not None:
@@ -4224,15 +4200,6 @@ class CfnResolverRuleProps:
4224
4200
  assert result is not None, "Required property 'rule_type' is missing"
4225
4201
  return typing.cast(builtins.str, result)
4226
4202
 
4227
- @builtins.property
4228
- def delegation_record(self) -> typing.Optional[builtins.str]:
4229
- '''The name server domain for queries to be delegated to if a query matches the delegation record.
4230
-
4231
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-delegationrecord
4232
- '''
4233
- result = self._values.get("delegation_record")
4234
- return typing.cast(typing.Optional[builtins.str], result)
4235
-
4236
4203
  @builtins.property
4237
4204
  def domain_name(self) -> typing.Optional[builtins.str]:
4238
4205
  '''DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` .
@@ -4871,7 +4838,6 @@ def _typecheckingstub__7253810e416357d129df95b3c7aa9aa0f08e68de7d465658e598912cf
4871
4838
  id: builtins.str,
4872
4839
  *,
4873
4840
  rule_type: builtins.str,
4874
- delegation_record: typing.Optional[builtins.str] = None,
4875
4841
  domain_name: typing.Optional[builtins.str] = None,
4876
4842
  name: typing.Optional[builtins.str] = None,
4877
4843
  resolver_endpoint_id: typing.Optional[builtins.str] = None,
@@ -4899,12 +4865,6 @@ def _typecheckingstub__13530a5c4f7ce175ae03b85dc7d4550ae7a3cb68cb2be12c89a167e8d
4899
4865
  """Type checking stubs"""
4900
4866
  pass
4901
4867
 
4902
- def _typecheckingstub__b1126d07ce449d0d6220e3fbf183f2d786e81574a4f131914dfe0914a55bb851(
4903
- value: typing.Optional[builtins.str],
4904
- ) -> None:
4905
- """Type checking stubs"""
4906
- pass
4907
-
4908
4868
  def _typecheckingstub__3e83136a81b10aed2481c602cdca3f63e1c2bcaed82fe69b1ab2413af7c0b7c0(
4909
4869
  value: typing.Optional[builtins.str],
4910
4870
  ) -> None:
@@ -4999,7 +4959,6 @@ def _typecheckingstub__3b7cd1048ae30851b3480dc04a365c7bd487212f9328f80bc61e1bae1
4999
4959
  def _typecheckingstub__fdcaea1870aaf2dc13fe56b2d15a89d6adba2ad5884071fc618c9e4bb2c3ddec(
5000
4960
  *,
5001
4961
  rule_type: builtins.str,
5002
- delegation_record: typing.Optional[builtins.str] = None,
5003
4962
  domain_name: typing.Optional[builtins.str] = None,
5004
4963
  name: typing.Optional[builtins.str] = None,
5005
4964
  resolver_endpoint_id: typing.Optional[builtins.str] = None,
@@ -2005,7 +2005,7 @@ class CfnConfigurationSetEventDestination(
2005
2005
 
2006
2006
  *Event destinations* are places that you can send information about these events to. For example, you can send event data to Amazon SNS to receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term storage.
2007
2007
 
2008
- :param matching_event_types: The types of events that Amazon SES sends to the specified event destinations. - ``SEND`` - The send request was successful and SES will attempt to deliver the message to the recipient’s mail server. (If account-level or global suppression is being used, SES will still count it as a send, but delivery is suppressed.) - ``REJECT`` - SES accepted the email, but determined that it contained a virus and didn’t attempt to deliver it to the recipient’s mail server. - ``BOUNCE`` - ( *Hard bounce* ) The recipient's mail server permanently rejected the email. ( *Soft bounces* are only included when SES fails to deliver the email after retrying for a period of time.) - ``COMPLAINT`` - The email was successfully delivered to the recipient’s mail server, but the recipient marked it as spam. - ``DELIVERY`` - SES successfully delivered the email to the recipient's mail server. - ``OPEN`` - The recipient received the message and opened it in their email client. - ``CLICK`` - The recipient clicked one or more links in the email. - ``RENDERING_FAILURE`` - The email wasn't sent because of a template rendering issue. This event type can occur when template data is missing, or when there is a mismatch between template parameters and data. (This event type only occurs when you send email using the ```SendTemplatedEmail`` <https://docs.aws.amazon.com/ses/latest/APIReference/API_SendTemplatedEmail.html>`_ or ```SendBulkTemplatedEmail`` <https://docs.aws.amazon.com/ses/latest/APIReference/API_SendBulkTemplatedEmail.html>`_ API operations.) - ``DELIVERY_DELAY`` - The email couldn't be delivered to the recipient’s mail server because a temporary issue occurred. Delivery delays can occur, for example, when the recipient's inbox is full, or when the receiving email server experiences a transient issue. - ``SUBSCRIPTION`` - The email was successfully delivered, but the recipient updated their subscription preferences by clicking on an *unsubscribe* link as part of your `subscription management <https://docs.aws.amazon.com/ses/latest/dg/sending-email-subscription-management.html>`_ .
2008
+ :param matching_event_types: The types of events that Amazon SES sends to the specified event destinations. - ``SEND`` - The send request was successful and SES will attempt to deliver the message to the recipient’s mail server. (If account-level or global suppression is being used, SES will still count it as a send, but delivery is suppressed.) - ``REJECT`` - SES accepted the email, but determined that it contained a virus and didn’t attempt to deliver it to the recipient’s mail server. - ``BOUNCE`` - ( *Hard bounce* ) The recipient's mail server permanently rejected the email. ( *Soft bounces* are only included when SES fails to deliver the email after retrying for a period of time.) - ``COMPLAINT`` - The email was successfully delivered to the recipient’s mail server, but the recipient marked it as spam. - ``DELIVERY`` - SES successfully delivered the email to the recipient's mail server. - ``OPEN`` - The recipient received the message and opened it in their email client. - ``CLICK`` - The recipient clicked one or more links in the email. - ``RENDERING_FAILURE`` - The email wasn't sent because of a template rendering issue. This event type can occur when template data is missing, or when there is a mismatch between template parameters and data. (This event type only occurs when you send email using the ```SendEmail`` <https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_SendEmail.html>`_ or ```SendBulkEmail`` <https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_SendBulkEmail.html>`_ API operations.) - ``DELIVERY_DELAY`` - The email couldn't be delivered to the recipient’s mail server because a temporary issue occurred. Delivery delays can occur, for example, when the recipient's inbox is full, or when the receiving email server experiences a transient issue. - ``SUBSCRIPTION`` - The email was successfully delivered, but the recipient updated their subscription preferences by clicking on an *unsubscribe* link as part of your `subscription management <https://docs.aws.amazon.com/ses/latest/dg/sending-email-subscription-management.html>`_ .
2009
2009
  :param cloud_watch_destination: An object that defines an Amazon CloudWatch destination for email events. You can use Amazon CloudWatch to monitor and gain insights on your email sending metrics.
2010
2010
  :param enabled: If ``true`` , the event destination is enabled. When the event destination is enabled, the specified event types are sent to the destinations in this ``EventDestinationDefinition`` . If ``false`` , the event destination is disabled. When the event destination is disabled, events aren't sent to the specified destinations.
2011
2011
  :param event_bridge_destination: An object that defines an Amazon EventBridge destination for email events. You can use Amazon EventBridge to send notifications when certain email events occur.
@@ -2083,7 +2083,7 @@ class CfnConfigurationSetEventDestination(
2083
2083
  - ``DELIVERY`` - SES successfully delivered the email to the recipient's mail server.
2084
2084
  - ``OPEN`` - The recipient received the message and opened it in their email client.
2085
2085
  - ``CLICK`` - The recipient clicked one or more links in the email.
2086
- - ``RENDERING_FAILURE`` - The email wasn't sent because of a template rendering issue. This event type can occur when template data is missing, or when there is a mismatch between template parameters and data. (This event type only occurs when you send email using the ```SendTemplatedEmail`` <https://docs.aws.amazon.com/ses/latest/APIReference/API_SendTemplatedEmail.html>`_ or ```SendBulkTemplatedEmail`` <https://docs.aws.amazon.com/ses/latest/APIReference/API_SendBulkTemplatedEmail.html>`_ API operations.)
2086
+ - ``RENDERING_FAILURE`` - The email wasn't sent because of a template rendering issue. This event type can occur when template data is missing, or when there is a mismatch between template parameters and data. (This event type only occurs when you send email using the ```SendEmail`` <https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_SendEmail.html>`_ or ```SendBulkEmail`` <https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_SendBulkEmail.html>`_ API operations.)
2087
2087
  - ``DELIVERY_DELAY`` - The email couldn't be delivered to the recipient’s mail server because a temporary issue occurred. Delivery delays can occur, for example, when the recipient's inbox is full, or when the receiving email server experiences a transient issue.
2088
2088
  - ``SUBSCRIPTION`` - The email was successfully delivered, but the recipient updated their subscription preferences by clicking on an *unsubscribe* link as part of your `subscription management <https://docs.aws.amazon.com/ses/latest/dg/sending-email-subscription-management.html>`_ .
2089
2089
 
@@ -12719,7 +12719,7 @@ class CfnTemplate(
12719
12719
 
12720
12720
  :param subject_part: The subject line of the email.
12721
12721
  :param html_part: The HTML body of the email.
12722
- :param template_name: The name of the template. You will refer to this name when you send email using the ``SendTemplatedEmail`` or ``SendBulkTemplatedEmail`` operations.
12722
+ :param template_name: The name of the template. You will refer to this name when you send email using the ``SendEmail`` or ``SendBulkEmail`` operations.
12723
12723
  :param text_part: The email body that is visible to recipients whose email clients do not display HTML content.
12724
12724
 
12725
12725
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html
@@ -12779,7 +12779,7 @@ class CfnTemplate(
12779
12779
  def template_name(self) -> typing.Optional[builtins.str]:
12780
12780
  '''The name of the template.
12781
12781
 
12782
- You will refer to this name when you send email using the ``SendTemplatedEmail`` or ``SendBulkTemplatedEmail`` operations.
12782
+ You will refer to this name when you send email using the ``SendEmail`` or ``SendBulkEmail`` operations.
12783
12783
 
12784
12784
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html#cfn-ses-template-template-templatename
12785
12785
  '''
@@ -1021,6 +1021,7 @@ class CfnWorkspacesPool(
1021
1021
  settings_group="settingsGroup"
1022
1022
  ),
1023
1023
  description="description",
1024
+ running_mode="runningMode",
1024
1025
  tags=[CfnTag(
1025
1026
  key="key",
1026
1027
  value="value"
@@ -1044,6 +1045,7 @@ class CfnWorkspacesPool(
1044
1045
  pool_name: builtins.str,
1045
1046
  application_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkspacesPool.ApplicationSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1046
1047
  description: typing.Optional[builtins.str] = None,
1048
+ running_mode: typing.Optional[builtins.str] = None,
1047
1049
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1048
1050
  timeout_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkspacesPool.TimeoutSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1049
1051
  ) -> None:
@@ -1056,6 +1058,7 @@ class CfnWorkspacesPool(
1056
1058
  :param pool_name: The name of the pool.
1057
1059
  :param application_settings: The persistent application settings for users of the pool.
1058
1060
  :param description: The description of the pool.
1061
+ :param running_mode:
1059
1062
  :param tags:
1060
1063
  :param timeout_settings: The amount of time that a pool session remains active after users disconnect. If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
1061
1064
  '''
@@ -1070,6 +1073,7 @@ class CfnWorkspacesPool(
1070
1073
  pool_name=pool_name,
1071
1074
  application_settings=application_settings,
1072
1075
  description=description,
1076
+ running_mode=running_mode,
1073
1077
  tags=tags,
1074
1078
  timeout_settings=timeout_settings,
1075
1079
  )
@@ -1232,6 +1236,18 @@ class CfnWorkspacesPool(
1232
1236
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1233
1237
  jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
1234
1238
 
1239
+ @builtins.property
1240
+ @jsii.member(jsii_name="runningMode")
1241
+ def running_mode(self) -> typing.Optional[builtins.str]:
1242
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "runningMode"))
1243
+
1244
+ @running_mode.setter
1245
+ def running_mode(self, value: typing.Optional[builtins.str]) -> None:
1246
+ if __debug__:
1247
+ type_hints = typing.get_type_hints(_typecheckingstub__360e48883f6f5eb30b47d1d804ac1d51f3162354f1b454a279520a266673b89b)
1248
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1249
+ jsii.set(self, "runningMode", value) # pyright: ignore[reportArgumentType]
1250
+
1235
1251
  @builtins.property
1236
1252
  @jsii.member(jsii_name="tags")
1237
1253
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
@@ -1496,6 +1512,7 @@ class CfnWorkspacesPool(
1496
1512
  "pool_name": "poolName",
1497
1513
  "application_settings": "applicationSettings",
1498
1514
  "description": "description",
1515
+ "running_mode": "runningMode",
1499
1516
  "tags": "tags",
1500
1517
  "timeout_settings": "timeoutSettings",
1501
1518
  },
@@ -1510,6 +1527,7 @@ class CfnWorkspacesPoolProps:
1510
1527
  pool_name: builtins.str,
1511
1528
  application_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkspacesPool.ApplicationSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1512
1529
  description: typing.Optional[builtins.str] = None,
1530
+ running_mode: typing.Optional[builtins.str] = None,
1513
1531
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1514
1532
  timeout_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkspacesPool.TimeoutSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1515
1533
  ) -> None:
@@ -1521,6 +1539,7 @@ class CfnWorkspacesPoolProps:
1521
1539
  :param pool_name: The name of the pool.
1522
1540
  :param application_settings: The persistent application settings for users of the pool.
1523
1541
  :param description: The description of the pool.
1542
+ :param running_mode:
1524
1543
  :param tags:
1525
1544
  :param timeout_settings: The amount of time that a pool session remains active after users disconnect. If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
1526
1545
 
@@ -1549,6 +1568,7 @@ class CfnWorkspacesPoolProps:
1549
1568
  settings_group="settingsGroup"
1550
1569
  ),
1551
1570
  description="description",
1571
+ running_mode="runningMode",
1552
1572
  tags=[CfnTag(
1553
1573
  key="key",
1554
1574
  value="value"
@@ -1568,6 +1588,7 @@ class CfnWorkspacesPoolProps:
1568
1588
  check_type(argname="argument pool_name", value=pool_name, expected_type=type_hints["pool_name"])
1569
1589
  check_type(argname="argument application_settings", value=application_settings, expected_type=type_hints["application_settings"])
1570
1590
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
1591
+ check_type(argname="argument running_mode", value=running_mode, expected_type=type_hints["running_mode"])
1571
1592
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
1572
1593
  check_type(argname="argument timeout_settings", value=timeout_settings, expected_type=type_hints["timeout_settings"])
1573
1594
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -1580,6 +1601,8 @@ class CfnWorkspacesPoolProps:
1580
1601
  self._values["application_settings"] = application_settings
1581
1602
  if description is not None:
1582
1603
  self._values["description"] = description
1604
+ if running_mode is not None:
1605
+ self._values["running_mode"] = running_mode
1583
1606
  if tags is not None:
1584
1607
  self._values["tags"] = tags
1585
1608
  if timeout_settings is not None:
@@ -1647,6 +1670,14 @@ class CfnWorkspacesPoolProps:
1647
1670
  result = self._values.get("description")
1648
1671
  return typing.cast(typing.Optional[builtins.str], result)
1649
1672
 
1673
+ @builtins.property
1674
+ def running_mode(self) -> typing.Optional[builtins.str]:
1675
+ '''
1676
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-runningmode
1677
+ '''
1678
+ result = self._values.get("running_mode")
1679
+ return typing.cast(typing.Optional[builtins.str], result)
1680
+
1650
1681
  @builtins.property
1651
1682
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1652
1683
  '''
@@ -1857,6 +1888,7 @@ def _typecheckingstub__2d46eb37beb6bc915a0a0c68f02dfa689a2d725a4252e6874da1ed606
1857
1888
  pool_name: builtins.str,
1858
1889
  application_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkspacesPool.ApplicationSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1859
1890
  description: typing.Optional[builtins.str] = None,
1891
+ running_mode: typing.Optional[builtins.str] = None,
1860
1892
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1861
1893
  timeout_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkspacesPool.TimeoutSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1862
1894
  ) -> None:
@@ -1911,6 +1943,12 @@ def _typecheckingstub__c0a41c1359bb84431b1e88b8ac1a3bbf0d34dc2ab1b9004f79a2f0891
1911
1943
  """Type checking stubs"""
1912
1944
  pass
1913
1945
 
1946
+ def _typecheckingstub__360e48883f6f5eb30b47d1d804ac1d51f3162354f1b454a279520a266673b89b(
1947
+ value: typing.Optional[builtins.str],
1948
+ ) -> None:
1949
+ """Type checking stubs"""
1950
+ pass
1951
+
1914
1952
  def _typecheckingstub__a940a91e0c4bd8a1424475cae423b68c22b5107bb7454e6d62fa5d1a232ac829(
1915
1953
  value: typing.Optional[typing.List[_CfnTag_f6864754]],
1916
1954
  ) -> None:
@@ -1955,6 +1993,7 @@ def _typecheckingstub__cb4cf19658d50453aaf837ebc448848141de5ab5627b58be920162b65
1955
1993
  pool_name: builtins.str,
1956
1994
  application_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkspacesPool.ApplicationSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1957
1995
  description: typing.Optional[builtins.str] = None,
1996
+ running_mode: typing.Optional[builtins.str] = None,
1958
1997
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1959
1998
  timeout_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkspacesPool.TimeoutSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
1960
1999
  ) -> None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.196.0
3
+ Version: 2.197.0
4
4
  Summary: Version 2 of the AWS Cloud Development Kit library
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -1,7 +1,7 @@
1
- aws_cdk/__init__.py,sha256=iyT3kU_pPQ_C2EFkcqTP-NpxqeTMmWdQaR26zo2jUFg,2027550
1
+ aws_cdk/__init__.py,sha256=tlXTpZk7LiC1UiRy31vONKS37VwiPcbBT2I4fLpEL4U,2027606
2
2
  aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_cdk/_jsii/__init__.py,sha256=ceF_CIOLAdxvoJXxFTdEf0usIp1S8tfK-Goq1Uzwxf4,1543
4
- aws_cdk/_jsii/aws-cdk-lib@2.196.0.jsii.tgz,sha256=HtzSUxOXl40kxZd_BG-lx1qcK_SvM9_oE8L9MEuMKiM,25195846
3
+ aws_cdk/_jsii/__init__.py,sha256=mI46Iag7z_6qjkzylEYU7eTj1iPioPVQp67WA3gjAlw,1543
4
+ aws_cdk/_jsii/aws-cdk-lib@2.197.0.jsii.tgz,sha256=l5urxiMJ--GLzZj9pbo_If85-9C3UpIMZIqM-tekTV0,25222376
5
5
  aws_cdk/alexa_ask/__init__.py,sha256=yF4ftch7XArzAniw_xoUmGi3wLGeBqIUlOjBTHSxDb4,36370
6
6
  aws_cdk/assertions/__init__.py,sha256=Fe7BZZpx5cUrxKtNdGbU4eXue79txDh_GqjfLV5wgCM,94355
7
7
  aws_cdk/aws_accessanalyzer/__init__.py,sha256=XiNBttjwK1s2CYyccwKCXH5Nzb74L1i6rVnZ9Zwh49I,57464
@@ -9,8 +9,8 @@ aws_cdk/aws_acmpca/__init__.py,sha256=aH5iegaLREJUEgFQlC0FivPdKU-hikelgELYaELQ-m
9
9
  aws_cdk/aws_amazonmq/__init__.py,sha256=b7QhwCSEbtGHMNZA0M8_bvD9eo_njVOTrbfgHzYmLWs,165288
10
10
  aws_cdk/aws_amplify/__init__.py,sha256=bleqADlFoolBTyc0cpdnKLYF9roertNgOx5_U8FbWs8,214502
11
11
  aws_cdk/aws_amplifyuibuilder/__init__.py,sha256=lI4dQQuIH1iEHTtQLW3wTAKIC1_xraUOlLeTOEst6T0,431551
12
- aws_cdk/aws_apigateway/__init__.py,sha256=OZm0HjtcybWTD93FYIm9Xm09PuY-ioKKSKDSzcdawS0,1958899
13
- aws_cdk/aws_apigatewayv2/__init__.py,sha256=splgCo14gMBflEyDuyBuqHYRKmmOZ_-hUmoVGiLS6jk,1105196
12
+ aws_cdk/aws_apigateway/__init__.py,sha256=uUfu8rXZUAMNps-lNThPylL5YqBNVOyozPB_5gEmWQ0,1963553
13
+ aws_cdk/aws_apigatewayv2/__init__.py,sha256=Xs-DpxXRtK5Vz_WLDkEG9_7CL48BWSapkEyGic4eT0M,1145497
14
14
  aws_cdk/aws_apigatewayv2_authorizers/__init__.py,sha256=dlvfuPzC0x7irbpVRZRpVyLH4FihHnqGOwl9VUwRB5k,55670
15
15
  aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=b49Ownun7jTBIQIjVCUCLKc277gyPzxb0QX_UM_RSGU,141317
16
16
  aws_cdk/aws_appconfig/__init__.py,sha256=W143xpsdlbm1U1jv1k8M8elBBHP8fWmY3HrsUJW6HII,749953
@@ -37,7 +37,7 @@ aws_cdk/aws_backup/__init__.py,sha256=9nkludVQrJv3Tae4n6Mn9bwVEBgi0w8aqUj1DPMZV2
37
37
  aws_cdk/aws_backupgateway/__init__.py,sha256=fWZzjez06YHs0rk-kxVm0f2isg102cJv2jFesKW1Jm0,24571
38
38
  aws_cdk/aws_batch/__init__.py,sha256=QFCn7VTkH9oQVidtDjn8YfUqJ4DuSKTTBSRVIZSZxRI,1525963
39
39
  aws_cdk/aws_bcmdataexports/__init__.py,sha256=HI1cpueYOVZr-EDYqDX--ss7DkvI07HxGq6YR4cIE40,55627
40
- aws_cdk/aws_bedrock/__init__.py,sha256=mtJS-9ythbZQe3jd5TVCKgVUIgx3LHwaAyumzAFJzkY,1930278
40
+ aws_cdk/aws_bedrock/__init__.py,sha256=pxL5Wklj_IVghT-sI1k9ccz0enbTO1CaSoTo4uEmDrc,1931620
41
41
  aws_cdk/aws_billingconductor/__init__.py,sha256=d-J_dpWvMOtnkJJIK_Zn0RSP3LeVZl0qY04g62HgqUI,143066
42
42
  aws_cdk/aws_budgets/__init__.py,sha256=mZGlm1SGERdwNCXXn0MPJ-LQceT-FmX0pNsCHkbJ00w,192661
43
43
  aws_cdk/aws_cassandra/__init__.py,sha256=ceMZnjri-zPtIu_POVDThJn2RQybiFF2C44yLP401G8,171799
@@ -48,20 +48,20 @@ aws_cdk/aws_cleanrooms/__init__.py,sha256=7HLuHtEVEk8fBVs7Lj4LjA6oM6DZ2G-iMbA64b
48
48
  aws_cdk/aws_cleanroomsml/__init__.py,sha256=OZ769Xji5yR16YuvCcaCuH-5emjHREnhIUqjlw7gXp8,49311
49
49
  aws_cdk/aws_cloud9/__init__.py,sha256=WbYJhSBPFY4ix6PJiND_KHPIVWxim7VAsbDJ6ePpGec,43094
50
50
  aws_cdk/aws_cloudformation/__init__.py,sha256=Faib_TLXUf9DOe5ezH9C2ME6Q0mU7wYxg67RPJlhfGQ,522794
51
- aws_cdk/aws_cloudfront/__init__.py,sha256=v7GWS4gEvj94vrXKMwGCRrD1fQzipaHhYN6jGz70NGc,1750198
51
+ aws_cdk/aws_cloudfront/__init__.py,sha256=pMe1xzMK_cElfHJPhfWmK-CQEaYEvwyh72CUXWWnHdo,1751119
52
52
  aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=LZ5SRbGqtT2MhVNjshB14-GGhKC5RQOFN4GlGYUaYvU,142698
53
53
  aws_cdk/aws_cloudfront_origins/__init__.py,sha256=8J90iICbGC52CiYevwkAXTdxg8nkCbe06QMfpd6fTqM,320463
54
54
  aws_cdk/aws_cloudtrail/__init__.py,sha256=-GZRpn7BGKUcIHFlKXA8GG7a0BNpCrMIgEDlEDxsWHo,366964
55
- aws_cdk/aws_cloudwatch/__init__.py,sha256=YSjB1SSNi9O1L6P1Eq76OaZX6Hi802YDXiGayGdzgHE,816876
55
+ aws_cdk/aws_cloudwatch/__init__.py,sha256=qd3H_9BZlddyxNLNZsfHHGqISEpHjaCjqV4YNM11OR0,856850
56
56
  aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=19aA4D-Vwk7ci0eEwBSJ0MjW55gaoL-uB9xHOR0Y6a4,25482
57
57
  aws_cdk/aws_codeartifact/__init__.py,sha256=LuXASQhDXISqConHGv9-teMMIkbx9uk7Bo6iUQuD2vE,86191
58
- aws_cdk/aws_codebuild/__init__.py,sha256=lvvZauXCed3wiXk6usyIzYXSyfx9T7W0EJzcTZRNJaA,1108498
58
+ aws_cdk/aws_codebuild/__init__.py,sha256=n49usMcYhe1Cr9AAKGG-4_MBGRLBiABIdD-jsvShCNo,1109620
59
59
  aws_cdk/aws_codecommit/__init__.py,sha256=AC9giA03iKCcyusmgaDjGA4-KQgvLR2ovigtx-xF59c,238213
60
60
  aws_cdk/aws_codeconnections/__init__.py,sha256=Q57XJwQbJX3HfeJYIcVYjoJw1X5NM4LwStzqeiuqIo0,19964
61
61
  aws_cdk/aws_codedeploy/__init__.py,sha256=sER94TYtW3Ew4Dn-DGa0uLVSd7zExndcABwUcd8ffqg,609263
62
62
  aws_cdk/aws_codeguruprofiler/__init__.py,sha256=1uV9NhDjobL4tsxIE1N7dRqX-kaYRb-BdXYb6WM87OU,48572
63
63
  aws_cdk/aws_codegurureviewer/__init__.py,sha256=9497p0WcylnIXlvJ90LQbpqVllRhIEZTaiIPk1oQLuM,27281
64
- aws_cdk/aws_codepipeline/__init__.py,sha256=6efu34yQGrQJ8T3tZhvqnuWmTRJiv1QHnVuuoyHpUyE,672199
64
+ aws_cdk/aws_codepipeline/__init__.py,sha256=I0jFjNNLEme4OI6yiSNR0TN6molkc05D6QA6q1AifSA,673646
65
65
  aws_cdk/aws_codepipeline_actions/__init__.py,sha256=W7nIbe1bHfNF87eF4jkMV5XCZjUDsdCFMqMnq5WPZ1g,762063
66
66
  aws_cdk/aws_codestar/__init__.py,sha256=SJvcSFPGBPwNoxR7MTswiqgSU8HaQ0a0W0EB-zjGvvU,38576
67
67
  aws_cdk/aws_codestarconnections/__init__.py,sha256=oGFXDpdwddFIPcXlfZvnonv8M0ALTMpkQXkdaxXfM4I,62714
@@ -78,10 +78,10 @@ aws_cdk/aws_cur/__init__.py,sha256=BPw-mdiO8wH2fyUwq2svzKyiI13F-AIv-jSgqco8OS8,3
78
78
  aws_cdk/aws_customerprofiles/__init__.py,sha256=knoCVSBbZZiDjnU6A9hofazmbyd2YVbkMDCCKyTK3Yw,596427
79
79
  aws_cdk/aws_databrew/__init__.py,sha256=U8tBGuMZutowBH2JhAP6nXxmuFY9nzqrPpY4z4LzpR8,535977
80
80
  aws_cdk/aws_datapipeline/__init__.py,sha256=liVPxcKxLvGlJbzUXX2HlbkD7tT0qsY2ldQ80zXSsLQ,60560
81
- aws_cdk/aws_datasync/__init__.py,sha256=c8ZRJ-QeC-bWdiph63ixlzLTu-B1oYOLmII5F5LLZH4,604716
82
- aws_cdk/aws_datazone/__init__.py,sha256=MRhk9wG7HNiPi5HzD3ISK5xx9B3ucDyoP-JAZQqkO8k,609334
81
+ aws_cdk/aws_datasync/__init__.py,sha256=BXZGWjw0rwmP8aZBGRHh6qopjQWB3-YgR5LHbKSRpLo,599223
82
+ aws_cdk/aws_datazone/__init__.py,sha256=LCYe3sYcGlHJD2lYh_QagXxnRaO9cCsOh0E9iI8qgvw,645765
83
83
  aws_cdk/aws_dax/__init__.py,sha256=I1yrJ8vZ4TR6U7JC6FFDmCtlDTW63xabfSsdQkMQ4q0,76119
84
- aws_cdk/aws_deadline/__init__.py,sha256=H6eXRMn0HdVsKwC7bGrvRJXx8h1nC_bxHoHWfn8UXUk,328425
84
+ aws_cdk/aws_deadline/__init__.py,sha256=ds8PIBMG-f0sHox6O350RlKZu70Gd2FjLz_p_ib-v3Y,335365
85
85
  aws_cdk/aws_detective/__init__.py,sha256=mwqOWK-R25GR53U1zEuCBtfIyNYPtLyC8m0CX2-C2CQ,41481
86
86
  aws_cdk/aws_devicefarm/__init__.py,sha256=Z21GYys0UdEgNaGKrgqifJ7AhHjl1n4I6sKPo0PLDLM,153518
87
87
  aws_cdk/aws_devopsguru/__init__.py,sha256=lwWFQk86um82RMa2nYWY031kpUOG856qQbAVUbnU6sA,65882
@@ -90,16 +90,16 @@ aws_cdk/aws_dlm/__init__.py,sha256=E5jaBViDiR3pxYJyXoLEz2clvVngxSeDrh5Tc9wC5d4,2
90
90
  aws_cdk/aws_dms/__init__.py,sha256=fU7yqdoaPS2ffrZJpLZIwcw_J1KSwlFr4nEXL52GZjY,1048612
91
91
  aws_cdk/aws_docdb/__init__.py,sha256=3cY-EEqb2ZHOViQzRVnnZdHMvYn1WEhhCBS9rfJkj4Y,342448
92
92
  aws_cdk/aws_docdbelastic/__init__.py,sha256=8ULf53CjSElODf5ZegB4vP1fvBXVjZjnQOA-D976_nE,46746
93
- aws_cdk/aws_dsql/__init__.py,sha256=8jKEQlk_2CdIixLuVT9KxKoxd9ewxKwF_wqpPfPnE7A,16351
93
+ aws_cdk/aws_dsql/__init__.py,sha256=avlEbnnswA_50I8_veG8IFCxci4PndEORx1MwKsRe4s,18018
94
94
  aws_cdk/aws_dynamodb/__init__.py,sha256=lI2ylX7zoY63QgMyHv9uHWGsHCf8bu68xyHnEPjX75I,1022709
95
- aws_cdk/aws_ec2/__init__.py,sha256=OKKPT7IVbDEpIOmNtogNUt4smcZ-ZQUIT00hm9lgq0w,6138405
95
+ aws_cdk/aws_ec2/__init__.py,sha256=1WXxMlRlUnwF8s-kidPIijwbXnWXyQR1jOALO-o0_cY,6144543
96
96
  aws_cdk/aws_ecr/__init__.py,sha256=Ei2771rXPoSxa-zgt37w7yGwQcUhT0dcDFj_l0p6ySI,332021
97
97
  aws_cdk/aws_ecr_assets/__init__.py,sha256=h-ry7VGmOgTsHSW9-BfgXOmDCk4QES88onu750Nekrg,94631
98
- aws_cdk/aws_ecs/__init__.py,sha256=B7ejvMHILdIEyLByOIg5AAfe_sPxcmhP-xu6wYudM9s,2751530
98
+ aws_cdk/aws_ecs/__init__.py,sha256=U3Mk_OdmRBn6rsEEEHcHq5SyCHKPpOPfd5QszmWH6PE,2755442
99
99
  aws_cdk/aws_ecs_patterns/__init__.py,sha256=VSBZP_OeZQ71wEEffkN6VClmehfYAavNfNzjm9AnKpo,1043219
100
100
  aws_cdk/aws_efs/__init__.py,sha256=sO2grVxybxopyGirBS__Cr0mmF0Em4QxXQWQTjjuwcE,284232
101
101
  aws_cdk/aws_eks/__init__.py,sha256=A9j7_ZMoO6XYS7uV4Wtzu8gMGrUfLTTx_SNmn6mBurs,1256234
102
- aws_cdk/aws_elasticache/__init__.py,sha256=tmoiFurx-_5iYQ6eIDete7V-q_UMcJV4RGNUI_UIfQU,525717
102
+ aws_cdk/aws_elasticache/__init__.py,sha256=WVL9JfHmwZOoulEIzV1AtOIzNBaNto_05ezWyG0Lqfo,525805
103
103
  aws_cdk/aws_elasticbeanstalk/__init__.py,sha256=zkQcloEtO1N4Z0oj24wRxhwAEZQnYXhIJFNclDh4SW8,165453
104
104
  aws_cdk/aws_elasticloadbalancing/__init__.py,sha256=G9dr1hj1fn0Sp_92px-CsUzd3m7vjeVkeBgFR0pXpiQ,163326
105
105
  aws_cdk/aws_elasticloadbalancingv2/__init__.py,sha256=V8KkZ8eXn3oQp6JjBaRs9qSsrs7suFo0jl4wZeOEQ0s,1666940
@@ -120,8 +120,8 @@ aws_cdk/aws_fms/__init__.py,sha256=UN3VPl3JJw9WgBbEP796SzqNr5tddaCWvPhk7S9L4mI,2
120
120
  aws_cdk/aws_forecast/__init__.py,sha256=XRpM-F9UQWYZnZ1mhAJXz3eggrOlZe4ojlVX-pSvj-4,62677
121
121
  aws_cdk/aws_frauddetector/__init__.py,sha256=g5M3QBrjZa_z3_3MK8l4oymI2xJwWp-t9Uoe_e16-rU,262259
122
122
  aws_cdk/aws_fsx/__init__.py,sha256=D5zNbSZk9d0sXMUooNn8UGxgqq7pAhOncJUQRKQFaRs,582131
123
- aws_cdk/aws_gamelift/__init__.py,sha256=0OY0WKtBg0iey6N1uGYoGONNSvoh-KwCh5eDymEyeZI,746652
124
- aws_cdk/aws_gameliftstreams/__init__.py,sha256=DHQOl1fDhat8XUGsQHIAew2CcDqrf3fKEPBZetx8ZpI,78379
123
+ aws_cdk/aws_gamelift/__init__.py,sha256=4HToQ3iaWBcjv2cjug6BM1mTEc1Xdr2_Z6ZBbbWuOEM,750569
124
+ aws_cdk/aws_gameliftstreams/__init__.py,sha256=BPzI0JPFH0Mn58d1r8nvCSyFZccyZs224oGl3XTQy1g,78399
125
125
  aws_cdk/aws_globalaccelerator/__init__.py,sha256=ZJGLftffi39az7mDXUqc3ZlIyyTk9h8Fk_O2PWY_tvc,234662
126
126
  aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=_hFh1G-qXaY8fW1weNy7duMb6LWqPPc4KhtF5LnMQYo,26848
127
127
  aws_cdk/aws_glue/__init__.py,sha256=LI2OcoGyK8wrl-rawkFda9bGA9LlbQclAMsTqqtASu0,1038143
@@ -164,7 +164,7 @@ aws_cdk/aws_lakeformation/__init__.py,sha256=CqbbngsWNY7VDNqyv3YgI4POGZbL3NXPq4Q
164
164
  aws_cdk/aws_lambda/__init__.py,sha256=XFXYPItlCQ2_FmyeXDXYUWKZRnHjnpFMEY7830U9UN0,1762522
165
165
  aws_cdk/aws_lambda_destinations/__init__.py,sha256=WHB7Vk6jk0pwFVUEAPGfFuSUUOJirZ7h3K5Z92yoE8E,24123
166
166
  aws_cdk/aws_lambda_event_sources/__init__.py,sha256=Ri-64QARvUi_36M5jEEhys984r0byyfiZT7pJoxnRqo,251475
167
- aws_cdk/aws_lambda_nodejs/__init__.py,sha256=2wPMMna0ypY5IJ1kwdXRU6aHJMykG0bgAD9Oyei5A5c,177936
167
+ aws_cdk/aws_lambda_nodejs/__init__.py,sha256=EJV8TXc1i44EvPDQpFqT48VslnPLmto8uDCyL6Q5yAU,177672
168
168
  aws_cdk/aws_launchwizard/__init__.py,sha256=IIhLlYmrtOMEEZ1gwM_2cV6w_0fAxXEbUn6zzMp97fw,24196
169
169
  aws_cdk/aws_lex/__init__.py,sha256=cXgE8FN0H_zhkLAdor73FcAgBG1Fox4FJazex3kXkOc,795828
170
170
  aws_cdk/aws_licensemanager/__init__.py,sha256=y37V03_LDcfC2j681MxlhN1J5O5o3dJjFZnFJ0u7V9U,87983
@@ -196,7 +196,7 @@ aws_cdk/aws_nimblestudio/__init__.py,sha256=HfPXX6dd1EIraJtw037w7kCsDHon6TRDgE7O
196
196
  aws_cdk/aws_notifications/__init__.py,sha256=fCaVAPG-9InVw1JbSilbBL5fk2zQZoWmaxk5cAMyVpk,91549
197
197
  aws_cdk/aws_notificationscontacts/__init__.py,sha256=mcjKdAlwKIg6bZM3f1sqC25vc9WcY3N-W5bbTLKQVDY,25712
198
198
  aws_cdk/aws_oam/__init__.py,sha256=ISahRlFBCZAwZGGE-Max2HHBaIlBWrfOmf8GA_dUzRA,51706
199
- aws_cdk/aws_omics/__init__.py,sha256=0tjFBIHvrNVzYFHuOkDoiew7F7nQq7MWc6_iHLZDQc8,169777
199
+ aws_cdk/aws_omics/__init__.py,sha256=5ptE8C4soHiasnK-nxD1A7sI4fbu8GlyoIPSA1ckGDc,207293
200
200
  aws_cdk/aws_opensearchserverless/__init__.py,sha256=ey2vDUpdgwOqiZeMkKQux8PGsbNR2p-KZJWKbO9A4ps,167776
201
201
  aws_cdk/aws_opensearchservice/__init__.py,sha256=Yc5n4UFsZFHS_LYBVJFjhfelvSx1sR6v4_dFghN2GBU,656149
202
202
  aws_cdk/aws_opsworks/__init__.py,sha256=8V_ueRxKAdkbxMoaSbJNbdrlbSbswYlEaFCSzm-aHk4,437770
@@ -234,7 +234,7 @@ aws_cdk/aws_route53_targets/__init__.py,sha256=betoS418gIa4FZ2PLBT21s4gHoe_UW-Le
234
234
  aws_cdk/aws_route53profiles/__init__.py,sha256=21lpj2Wq5wz08mkCFiQOwG9Sk3yWeUu7jQnHJHx-p5g,45769
235
235
  aws_cdk/aws_route53recoverycontrol/__init__.py,sha256=pUkXZgPiN0-umie6CLB8Njj-6bv0_YJIpFylrW9RfAc,94601
236
236
  aws_cdk/aws_route53recoveryreadiness/__init__.py,sha256=_tJI6bM9ZJJwOwM1wjYJIBH5zjnfXBLWj996joYsoYs,95213
237
- aws_cdk/aws_route53resolver/__init__.py,sha256=QY_Vg_FT5yJP1jkr62XKfnWBXdIlY0ubYn4wVP_hMPs,249306
237
+ aws_cdk/aws_route53resolver/__init__.py,sha256=D6mt54GI611zHX8eCtc3WG56TCdCvT78WO3ndaPdzeg,246875
238
238
  aws_cdk/aws_rum/__init__.py,sha256=oTB-QEbSK3ITta-D80sO74ureip1rAalRiFPcIGPo4g,99767
239
239
  aws_cdk/aws_s3/__init__.py,sha256=hqeJVd7PglbnfSOATBqNqukwCPRGd13k9T6mmmzFG6k,1278195
240
240
  aws_cdk/aws_s3_assets/__init__.py,sha256=zWnhK-COYVIfsbfydkA9E1fHJ-MZGep56zHluIs6ETM,54740
@@ -255,7 +255,7 @@ aws_cdk/aws_securitylake/__init__.py,sha256=7gR9WmdzLi5h4N2GADa1IlNLWlxZQeAO7JZL
255
255
  aws_cdk/aws_servicecatalog/__init__.py,sha256=VxzeohtVbQs6NibYuWmvCqQj1ZGFgDPemumrl14UT8I,547059
256
256
  aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=urPoS8H7S8SUOPqgBx-YVblPFwIfkmzt5T8PcfO14u8,57183
257
257
  aws_cdk/aws_servicediscovery/__init__.py,sha256=u3gmS-WhyDq0h1eHmMbPHxlnHI0msRFEXq8XxMwb7Bk,370847
258
- aws_cdk/aws_ses/__init__.py,sha256=weYGfjpqDEkbn-DcXjxFxUpC7CidZ-tBknoXkzlCnP4,992661
258
+ aws_cdk/aws_ses/__init__.py,sha256=GM5itnL0NgEJVGwS5JaPPs0Kl9VbvaBeG9Jqn1GtwxE,992565
259
259
  aws_cdk/aws_ses_actions/__init__.py,sha256=OL6WyVSh2wmikWy6ohT9tk__mIuBFBVM6hr7-CT14HU,51664
260
260
  aws_cdk/aws_shield/__init__.py,sha256=u2HOZSSMan1klAHeQMyi9q_RpsWBZo_5rstEk1FZLSc,105419
261
261
  aws_cdk/aws_signer/__init__.py,sha256=Ag0bfvDl04MvT7dmyowjo5w3PKcafakGbkD0Zry9qhY,59675
@@ -283,7 +283,7 @@ aws_cdk/aws_waf/__init__.py,sha256=RBdzr4Bd3UjK9V5TtdyemLWOY0WR-JUEh0WjHBTJuRU,2
283
283
  aws_cdk/aws_wafregional/__init__.py,sha256=j18Bfp911qSJGxfyxxs5VOPxhFbiCeZW8Tz4wFC4pa4,276775
284
284
  aws_cdk/aws_wafv2/__init__.py,sha256=EpzfydDiIKFDS0-AQaIMVr_yQim4JMKMC91NxFYE6zU,1441927
285
285
  aws_cdk/aws_wisdom/__init__.py,sha256=1-KxOqNZwY_fuDhvUgY1aQ3jwLL6Q6Ng8gpCoy0bgF4,641967
286
- aws_cdk/aws_workspaces/__init__.py,sha256=agC72J8zP_G2NI4nzzYjmlSNUygoa7f-ebFcfxhSBts,99201
286
+ aws_cdk/aws_workspaces/__init__.py,sha256=DYlIFlalPInZuC0lJuveEYAGG_mp10zU9te1SPoMbmc,101085
287
287
  aws_cdk/aws_workspacesthinclient/__init__.py,sha256=3Gvr9Lw4Z82ZIukKFpOTHQTiAG4UrVo6m6IsfWaCK-w,49529
288
288
  aws_cdk/aws_workspacesweb/__init__.py,sha256=CppQEMxEhUPkEPh6MmFFfhsm1c2TybopdiZGuuiAEfA,280980
289
289
  aws_cdk/aws_xray/__init__.py,sha256=xEfRY-cPsnAqrrYueXFUxXskU4CxwejB1wrTMGrNKCc,106868
@@ -296,9 +296,9 @@ aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=ssdgQwTnWcr4HFK6euFpZ93
296
296
  aws_cdk/pipelines/__init__.py,sha256=5iOtEZ3bLc2t8l3qfUfAispqsOGs5CI26NoMCVDjZyk,403113
297
297
  aws_cdk/region_info/__init__.py,sha256=5GAO_ld0t-3caLW28eV9FWHMrqRq5CyV1L4pFALx9Y4,39656
298
298
  aws_cdk/triggers/__init__.py,sha256=ItMJLn-7KoW5XFFLrWy7aglFEqDU-fTpL6Z5ATzWKVI,123842
299
- aws_cdk_lib-2.196.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
300
- aws_cdk_lib-2.196.0.dist-info/METADATA,sha256=XWsc1Fn9ASSS2sM-AXe1gz3iKN0hAEaVRjTG5w4mR80,62895
301
- aws_cdk_lib-2.196.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
302
- aws_cdk_lib-2.196.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
303
- aws_cdk_lib-2.196.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
304
- aws_cdk_lib-2.196.0.dist-info/RECORD,,
299
+ aws_cdk_lib-2.197.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
300
+ aws_cdk_lib-2.197.0.dist-info/METADATA,sha256=7n55Svj1p2WLE_AfuSchvCdNMqBkfsEZKyPMX-x-MOg,62895
301
+ aws_cdk_lib-2.197.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
302
+ aws_cdk_lib-2.197.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
303
+ aws_cdk_lib-2.197.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
304
+ aws_cdk_lib-2.197.0.dist-info/RECORD,,