aws-cdk-lib 2.212.0__py3-none-any.whl → 2.214.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (65) hide show
  1. aws_cdk/__init__.py +23 -3
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.212.0.jsii.tgz → aws-cdk-lib@2.214.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_appconfig/__init__.py +18 -6
  5. aws_cdk/aws_appintegrations/__init__.py +4 -4
  6. aws_cdk/aws_apprunner/__init__.py +5 -8
  7. aws_cdk/aws_aps/__init__.py +243 -10
  8. aws_cdk/aws_b2bi/__init__.py +1015 -128
  9. aws_cdk/aws_batch/__init__.py +33 -11
  10. aws_cdk/aws_bedrock/__init__.py +22 -216
  11. aws_cdk/aws_budgets/__init__.py +18 -0
  12. aws_cdk/aws_certificatemanager/__init__.py +96 -15
  13. aws_cdk/aws_cloudformation/__init__.py +3 -3
  14. aws_cdk/aws_cloudwatch/__init__.py +80 -49
  15. aws_cdk/aws_cognito/__init__.py +76 -5
  16. aws_cdk/aws_connect/__init__.py +188 -2
  17. aws_cdk/aws_datazone/__init__.py +2267 -0
  18. aws_cdk/aws_deadline/__init__.py +6 -5
  19. aws_cdk/aws_dynamodb/__init__.py +418 -56
  20. aws_cdk/aws_ec2/__init__.py +51 -10
  21. aws_cdk/aws_ecs/__init__.py +288 -25
  22. aws_cdk/aws_ecs_patterns/__init__.py +2 -0
  23. aws_cdk/aws_eks/__init__.py +124 -0
  24. aws_cdk/aws_elasticloadbalancingv2/__init__.py +6 -2
  25. aws_cdk/aws_entityresolution/__init__.py +107 -0
  26. aws_cdk/aws_events/__init__.py +153 -55
  27. aws_cdk/aws_events_targets/__init__.py +87 -36
  28. aws_cdk/aws_fsx/__init__.py +62 -0
  29. aws_cdk/aws_gameliftstreams/__init__.py +1 -1
  30. aws_cdk/aws_glue/__init__.py +205 -23
  31. aws_cdk/aws_guardduty/__init__.py +205 -100
  32. aws_cdk/aws_iam/__init__.py +18 -0
  33. aws_cdk/aws_inspectorv2/__init__.py +125 -80
  34. aws_cdk/aws_iot/__init__.py +37 -19
  35. aws_cdk/aws_iotsitewise/__init__.py +111 -75
  36. aws_cdk/aws_ivs/__init__.py +17 -17
  37. aws_cdk/aws_kinesisanalytics/__init__.py +122 -3
  38. aws_cdk/aws_kinesisanalyticsv2/__init__.py +122 -3
  39. aws_cdk/aws_lambda/__init__.py +23 -2
  40. aws_cdk/aws_logs/__init__.py +20 -15
  41. aws_cdk/aws_mediapackagev2/__init__.py +2 -2
  42. aws_cdk/aws_networkfirewall/__init__.py +6 -6
  43. aws_cdk/aws_omics/__init__.py +477 -2
  44. aws_cdk/aws_qbusiness/__init__.py +4 -2
  45. aws_cdk/aws_rds/__init__.py +132 -4
  46. aws_cdk/aws_route53/__init__.py +18 -11
  47. aws_cdk/aws_s3/__init__.py +4 -4
  48. aws_cdk/aws_s3_deployment/__init__.py +45 -0
  49. aws_cdk/aws_sagemaker/__init__.py +653 -0
  50. aws_cdk/aws_servicediscovery/__init__.py +22 -37
  51. aws_cdk/aws_sns/__init__.py +12 -2
  52. aws_cdk/aws_sns_subscriptions/__init__.py +3 -1
  53. aws_cdk/aws_sqs/__init__.py +5 -5
  54. aws_cdk/aws_ssm/__init__.py +8 -3
  55. aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
  56. aws_cdk/aws_synthetics/__init__.py +222 -12
  57. aws_cdk/aws_transfer/__init__.py +15 -2
  58. aws_cdk/aws_vpclattice/__init__.py +41 -0
  59. aws_cdk/aws_workspacesweb/__init__.py +71 -41
  60. {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/METADATA +2 -2
  61. {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/RECORD +65 -65
  62. {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/LICENSE +0 -0
  63. {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/NOTICE +0 -0
  64. {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/WHEEL +0 -0
  65. {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/top_level.txt +0 -0
@@ -2010,6 +2010,7 @@ class CfnResourceGateway(
2010
2010
 
2011
2011
  # the properties below are optional
2012
2012
  ip_address_type="ipAddressType",
2013
+ ipv4_addresses_per_eni=123,
2013
2014
  security_group_ids=["securityGroupIds"],
2014
2015
  tags=[CfnTag(
2015
2016
  key="key",
@@ -2027,6 +2028,7 @@ class CfnResourceGateway(
2027
2028
  subnet_ids: typing.Sequence[builtins.str],
2028
2029
  vpc_identifier: builtins.str,
2029
2030
  ip_address_type: typing.Optional[builtins.str] = None,
2031
+ ipv4_addresses_per_eni: typing.Optional[jsii.Number] = None,
2030
2032
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
2031
2033
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
2032
2034
  ) -> None:
@@ -2037,6 +2039,7 @@ class CfnResourceGateway(
2037
2039
  :param subnet_ids: The IDs of the VPC subnets for the resource gateway.
2038
2040
  :param vpc_identifier: The ID of the VPC for the resource gateway.
2039
2041
  :param ip_address_type: The type of IP address used by the resource gateway.
2042
+ :param ipv4_addresses_per_eni: The number of IPv4 addresses to allocate per ENI for the resource gateway.
2040
2043
  :param security_group_ids: The IDs of the security groups applied to the resource gateway.
2041
2044
  :param tags: The tags for the resource gateway.
2042
2045
  '''
@@ -2049,6 +2052,7 @@ class CfnResourceGateway(
2049
2052
  subnet_ids=subnet_ids,
2050
2053
  vpc_identifier=vpc_identifier,
2051
2054
  ip_address_type=ip_address_type,
2055
+ ipv4_addresses_per_eni=ipv4_addresses_per_eni,
2052
2056
  security_group_ids=security_group_ids,
2053
2057
  tags=tags,
2054
2058
  )
@@ -2166,6 +2170,19 @@ class CfnResourceGateway(
2166
2170
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2167
2171
  jsii.set(self, "ipAddressType", value) # pyright: ignore[reportArgumentType]
2168
2172
 
2173
+ @builtins.property
2174
+ @jsii.member(jsii_name="ipv4AddressesPerEni")
2175
+ def ipv4_addresses_per_eni(self) -> typing.Optional[jsii.Number]:
2176
+ '''The number of IPv4 addresses to allocate per ENI for the resource gateway.'''
2177
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "ipv4AddressesPerEni"))
2178
+
2179
+ @ipv4_addresses_per_eni.setter
2180
+ def ipv4_addresses_per_eni(self, value: typing.Optional[jsii.Number]) -> None:
2181
+ if __debug__:
2182
+ type_hints = typing.get_type_hints(_typecheckingstub__5ebc10ed1c8e6c6821b6b7f4cd71006b4e3ce26c6b201ba4637014b8908140fd)
2183
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2184
+ jsii.set(self, "ipv4AddressesPerEni", value) # pyright: ignore[reportArgumentType]
2185
+
2169
2186
  @builtins.property
2170
2187
  @jsii.member(jsii_name="securityGroupIds")
2171
2188
  def security_group_ids(self) -> typing.Optional[typing.List[builtins.str]]:
@@ -2204,6 +2221,7 @@ class CfnResourceGateway(
2204
2221
  "subnet_ids": "subnetIds",
2205
2222
  "vpc_identifier": "vpcIdentifier",
2206
2223
  "ip_address_type": "ipAddressType",
2224
+ "ipv4_addresses_per_eni": "ipv4AddressesPerEni",
2207
2225
  "security_group_ids": "securityGroupIds",
2208
2226
  "tags": "tags",
2209
2227
  },
@@ -2216,6 +2234,7 @@ class CfnResourceGatewayProps:
2216
2234
  subnet_ids: typing.Sequence[builtins.str],
2217
2235
  vpc_identifier: builtins.str,
2218
2236
  ip_address_type: typing.Optional[builtins.str] = None,
2237
+ ipv4_addresses_per_eni: typing.Optional[jsii.Number] = None,
2219
2238
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
2220
2239
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
2221
2240
  ) -> None:
@@ -2225,6 +2244,7 @@ class CfnResourceGatewayProps:
2225
2244
  :param subnet_ids: The IDs of the VPC subnets for the resource gateway.
2226
2245
  :param vpc_identifier: The ID of the VPC for the resource gateway.
2227
2246
  :param ip_address_type: The type of IP address used by the resource gateway.
2247
+ :param ipv4_addresses_per_eni: The number of IPv4 addresses to allocate per ENI for the resource gateway.
2228
2248
  :param security_group_ids: The IDs of the security groups applied to the resource gateway.
2229
2249
  :param tags: The tags for the resource gateway.
2230
2250
 
@@ -2244,6 +2264,7 @@ class CfnResourceGatewayProps:
2244
2264
 
2245
2265
  # the properties below are optional
2246
2266
  ip_address_type="ipAddressType",
2267
+ ipv4_addresses_per_eni=123,
2247
2268
  security_group_ids=["securityGroupIds"],
2248
2269
  tags=[CfnTag(
2249
2270
  key="key",
@@ -2257,6 +2278,7 @@ class CfnResourceGatewayProps:
2257
2278
  check_type(argname="argument subnet_ids", value=subnet_ids, expected_type=type_hints["subnet_ids"])
2258
2279
  check_type(argname="argument vpc_identifier", value=vpc_identifier, expected_type=type_hints["vpc_identifier"])
2259
2280
  check_type(argname="argument ip_address_type", value=ip_address_type, expected_type=type_hints["ip_address_type"])
2281
+ check_type(argname="argument ipv4_addresses_per_eni", value=ipv4_addresses_per_eni, expected_type=type_hints["ipv4_addresses_per_eni"])
2260
2282
  check_type(argname="argument security_group_ids", value=security_group_ids, expected_type=type_hints["security_group_ids"])
2261
2283
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
2262
2284
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -2266,6 +2288,8 @@ class CfnResourceGatewayProps:
2266
2288
  }
2267
2289
  if ip_address_type is not None:
2268
2290
  self._values["ip_address_type"] = ip_address_type
2291
+ if ipv4_addresses_per_eni is not None:
2292
+ self._values["ipv4_addresses_per_eni"] = ipv4_addresses_per_eni
2269
2293
  if security_group_ids is not None:
2270
2294
  self._values["security_group_ids"] = security_group_ids
2271
2295
  if tags is not None:
@@ -2310,6 +2334,15 @@ class CfnResourceGatewayProps:
2310
2334
  result = self._values.get("ip_address_type")
2311
2335
  return typing.cast(typing.Optional[builtins.str], result)
2312
2336
 
2337
+ @builtins.property
2338
+ def ipv4_addresses_per_eni(self) -> typing.Optional[jsii.Number]:
2339
+ '''The number of IPv4 addresses to allocate per ENI for the resource gateway.
2340
+
2341
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-ipv4addressespereni
2342
+ '''
2343
+ result = self._values.get("ipv4_addresses_per_eni")
2344
+ return typing.cast(typing.Optional[jsii.Number], result)
2345
+
2313
2346
  @builtins.property
2314
2347
  def security_group_ids(self) -> typing.Optional[typing.List[builtins.str]]:
2315
2348
  '''The IDs of the security groups applied to the resource gateway.
@@ -7074,6 +7107,7 @@ def _typecheckingstub__c33d35acb93670756de87bb99dc9b48c5bdce217c8b7068ec8d831a66
7074
7107
  subnet_ids: typing.Sequence[builtins.str],
7075
7108
  vpc_identifier: builtins.str,
7076
7109
  ip_address_type: typing.Optional[builtins.str] = None,
7110
+ ipv4_addresses_per_eni: typing.Optional[jsii.Number] = None,
7077
7111
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
7078
7112
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
7079
7113
  ) -> None:
@@ -7116,6 +7150,12 @@ def _typecheckingstub__da193673158e2d7b463232edae7461c41e04d65f3e9a6058fb5136fae
7116
7150
  """Type checking stubs"""
7117
7151
  pass
7118
7152
 
7153
+ def _typecheckingstub__5ebc10ed1c8e6c6821b6b7f4cd71006b4e3ce26c6b201ba4637014b8908140fd(
7154
+ value: typing.Optional[jsii.Number],
7155
+ ) -> None:
7156
+ """Type checking stubs"""
7157
+ pass
7158
+
7119
7159
  def _typecheckingstub__7e2e4828934d008108e9f5f74e2c02dbd9f159db6f7be2e11295977601d1296b(
7120
7160
  value: typing.Optional[typing.List[builtins.str]],
7121
7161
  ) -> None:
@@ -7134,6 +7174,7 @@ def _typecheckingstub__ed2c643634b9016a56acc1cdf5c3044eaa6f62d982922519a82cdbd49
7134
7174
  subnet_ids: typing.Sequence[builtins.str],
7135
7175
  vpc_identifier: builtins.str,
7136
7176
  ip_address_type: typing.Optional[builtins.str] = None,
7177
+ ipv4_addresses_per_eni: typing.Optional[jsii.Number] = None,
7137
7178
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
7138
7179
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
7139
7180
  ) -> None:
@@ -2506,7 +2506,7 @@ class CfnPortal(
2506
2506
  :param ip_access_settings_arn: The ARN of the IP access settings that is associated with the web portal.
2507
2507
  :param max_concurrent_sessions: The maximum number of concurrent sessions for the portal.
2508
2508
  :param network_settings_arn: The ARN of the network settings that is associated with the web portal.
2509
- :param session_logger_arn:
2509
+ :param session_logger_arn: The ARN of the session logger that is assocaited with the portal.
2510
2510
  :param tags: The tags to add to the web portal. A tag is a key-value pair.
2511
2511
  :param trust_store_arn: The ARN of the trust store that is associated with the web portal.
2512
2512
  :param user_access_logging_settings_arn: The ARN of the user access logging settings that is associated with the web portal.
@@ -2793,6 +2793,7 @@ class CfnPortal(
2793
2793
  @builtins.property
2794
2794
  @jsii.member(jsii_name="sessionLoggerArn")
2795
2795
  def session_logger_arn(self) -> typing.Optional[builtins.str]:
2796
+ '''The ARN of the session logger that is assocaited with the portal.'''
2796
2797
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "sessionLoggerArn"))
2797
2798
 
2798
2799
  @session_logger_arn.setter
@@ -2911,7 +2912,7 @@ class CfnPortalProps:
2911
2912
  :param ip_access_settings_arn: The ARN of the IP access settings that is associated with the web portal.
2912
2913
  :param max_concurrent_sessions: The maximum number of concurrent sessions for the portal.
2913
2914
  :param network_settings_arn: The ARN of the network settings that is associated with the web portal.
2914
- :param session_logger_arn:
2915
+ :param session_logger_arn: The ARN of the session logger that is assocaited with the portal.
2915
2916
  :param tags: The tags to add to the web portal. A tag is a key-value pair.
2916
2917
  :param trust_store_arn: The ARN of the trust store that is associated with the web portal.
2917
2918
  :param user_access_logging_settings_arn: The ARN of the user access logging settings that is associated with the web portal.
@@ -3103,7 +3104,8 @@ class CfnPortalProps:
3103
3104
 
3104
3105
  @builtins.property
3105
3106
  def session_logger_arn(self) -> typing.Optional[builtins.str]:
3106
- '''
3107
+ '''The ARN of the session logger that is assocaited with the portal.
3108
+
3107
3109
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-portal.html#cfn-workspacesweb-portal-sessionloggerarn
3108
3110
  '''
3109
3111
  result = self._values.get("session_logger_arn")
@@ -3165,7 +3167,7 @@ class CfnSessionLogger(
3165
3167
  metaclass=jsii.JSIIMeta,
3166
3168
  jsii_type="aws-cdk-lib.aws_workspacesweb.CfnSessionLogger",
3167
3169
  ):
3168
- '''Definition of AWS::WorkSpacesWeb::SessionLogger Resource Type.
3170
+ '''The session logger resource.
3169
3171
 
3170
3172
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html
3171
3173
  :cloudformationResource: AWS::WorkSpacesWeb::SessionLogger
@@ -3224,11 +3226,11 @@ class CfnSessionLogger(
3224
3226
  '''
3225
3227
  :param scope: Scope in which this resource is defined.
3226
3228
  :param id: Construct identifier for this resource (unique in its scope).
3227
- :param event_filter:
3228
- :param log_configuration:
3229
- :param additional_encryption_context:
3230
- :param customer_managed_key:
3231
- :param display_name:
3229
+ :param event_filter: The filter that specifies which events to monitor.
3230
+ :param log_configuration: The configuration that specifies where logs are fowarded.
3231
+ :param additional_encryption_context: The additional encryption context of the session logger.
3232
+ :param customer_managed_key: The custom managed key of the session logger.
3233
+ :param display_name: The human-readable display name.
3232
3234
  :param tags:
3233
3235
  '''
3234
3236
  if __debug__:
@@ -3279,7 +3281,8 @@ class CfnSessionLogger(
3279
3281
  @builtins.property
3280
3282
  @jsii.member(jsii_name="attrAssociatedPortalArns")
3281
3283
  def attr_associated_portal_arns(self) -> typing.List[builtins.str]:
3282
- '''
3284
+ '''The associated portal ARN.
3285
+
3283
3286
  :cloudformationAttribute: AssociatedPortalArns
3284
3287
  '''
3285
3288
  return typing.cast(typing.List[builtins.str], jsii.get(self, "attrAssociatedPortalArns"))
@@ -3287,7 +3290,8 @@ class CfnSessionLogger(
3287
3290
  @builtins.property
3288
3291
  @jsii.member(jsii_name="attrCreationDate")
3289
3292
  def attr_creation_date(self) -> builtins.str:
3290
- '''
3293
+ '''The date the session logger resource was created.
3294
+
3291
3295
  :cloudformationAttribute: CreationDate
3292
3296
  '''
3293
3297
  return typing.cast(builtins.str, jsii.get(self, "attrCreationDate"))
@@ -3295,7 +3299,8 @@ class CfnSessionLogger(
3295
3299
  @builtins.property
3296
3300
  @jsii.member(jsii_name="attrSessionLoggerArn")
3297
3301
  def attr_session_logger_arn(self) -> builtins.str:
3298
- '''
3302
+ '''The ARN of the session logger resource.
3303
+
3299
3304
  :cloudformationAttribute: SessionLoggerArn
3300
3305
  '''
3301
3306
  return typing.cast(builtins.str, jsii.get(self, "attrSessionLoggerArn"))
@@ -3316,6 +3321,7 @@ class CfnSessionLogger(
3316
3321
  def event_filter(
3317
3322
  self,
3318
3323
  ) -> typing.Union[_IResolvable_da3f097b, "CfnSessionLogger.EventFilterProperty"]:
3324
+ '''The filter that specifies which events to monitor.'''
3319
3325
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnSessionLogger.EventFilterProperty"], jsii.get(self, "eventFilter"))
3320
3326
 
3321
3327
  @event_filter.setter
@@ -3333,6 +3339,7 @@ class CfnSessionLogger(
3333
3339
  def log_configuration(
3334
3340
  self,
3335
3341
  ) -> typing.Union[_IResolvable_da3f097b, "CfnSessionLogger.LogConfigurationProperty"]:
3342
+ '''The configuration that specifies where logs are fowarded.'''
3336
3343
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnSessionLogger.LogConfigurationProperty"], jsii.get(self, "logConfiguration"))
3337
3344
 
3338
3345
  @log_configuration.setter
@@ -3350,6 +3357,7 @@ class CfnSessionLogger(
3350
3357
  def additional_encryption_context(
3351
3358
  self,
3352
3359
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
3360
+ '''The additional encryption context of the session logger.'''
3353
3361
  return typing.cast(typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]], jsii.get(self, "additionalEncryptionContext"))
3354
3362
 
3355
3363
  @additional_encryption_context.setter
@@ -3365,6 +3373,7 @@ class CfnSessionLogger(
3365
3373
  @builtins.property
3366
3374
  @jsii.member(jsii_name="customerManagedKey")
3367
3375
  def customer_managed_key(self) -> typing.Optional[builtins.str]:
3376
+ '''The custom managed key of the session logger.'''
3368
3377
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "customerManagedKey"))
3369
3378
 
3370
3379
  @customer_managed_key.setter
@@ -3377,6 +3386,7 @@ class CfnSessionLogger(
3377
3386
  @builtins.property
3378
3387
  @jsii.member(jsii_name="displayName")
3379
3388
  def display_name(self) -> typing.Optional[builtins.str]:
3389
+ '''The human-readable display name.'''
3380
3390
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "displayName"))
3381
3391
 
3382
3392
  @display_name.setter
@@ -3410,9 +3420,10 @@ class CfnSessionLogger(
3410
3420
  all: typing.Any = None,
3411
3421
  include: typing.Optional[typing.Sequence[builtins.str]] = None,
3412
3422
  ) -> None:
3413
- '''
3414
- :param all:
3415
- :param include:
3423
+ '''The filter that specifies the events to monitor.
3424
+
3425
+ :param all: The filter that monitors all of the available events, including any new events emitted in the future.
3426
+ :param include: The filter that monitors only the listed set of events. New events are not auto-monitored.
3416
3427
 
3417
3428
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-eventfilter.html
3418
3429
  :exampleMetadata: fixture=_generated
@@ -3442,7 +3453,8 @@ class CfnSessionLogger(
3442
3453
 
3443
3454
  @builtins.property
3444
3455
  def all(self) -> typing.Any:
3445
- '''
3456
+ '''The filter that monitors all of the available events, including any new events emitted in the future.
3457
+
3446
3458
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-eventfilter.html#cfn-workspacesweb-sessionlogger-eventfilter-all
3447
3459
  '''
3448
3460
  result = self._values.get("all")
@@ -3450,7 +3462,10 @@ class CfnSessionLogger(
3450
3462
 
3451
3463
  @builtins.property
3452
3464
  def include(self) -> typing.Optional[typing.List[builtins.str]]:
3453
- '''
3465
+ '''The filter that monitors only the listed set of events.
3466
+
3467
+ New events are not auto-monitored.
3468
+
3454
3469
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-eventfilter.html#cfn-workspacesweb-sessionlogger-eventfilter-include
3455
3470
  '''
3456
3471
  result = self._values.get("include")
@@ -3478,8 +3493,9 @@ class CfnSessionLogger(
3478
3493
  *,
3479
3494
  s3: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSessionLogger.S3LogConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3480
3495
  ) -> None:
3481
- '''
3482
- :param s3:
3496
+ '''The configuration of the log.
3497
+
3498
+ :param s3: The configuration for delivering the logs to S3.
3483
3499
 
3484
3500
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-logconfiguration.html
3485
3501
  :exampleMetadata: fixture=_generated
@@ -3513,7 +3529,8 @@ class CfnSessionLogger(
3513
3529
  def s3(
3514
3530
  self,
3515
3531
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnSessionLogger.S3LogConfigurationProperty"]]:
3516
- '''
3532
+ '''The configuration for delivering the logs to S3.
3533
+
3517
3534
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-logconfiguration.html#cfn-workspacesweb-sessionlogger-logconfiguration-s3
3518
3535
  '''
3519
3536
  result = self._values.get("s3")
@@ -3551,12 +3568,13 @@ class CfnSessionLogger(
3551
3568
  bucket_owner: typing.Optional[builtins.str] = None,
3552
3569
  key_prefix: typing.Optional[builtins.str] = None,
3553
3570
  ) -> None:
3554
- '''
3555
- :param bucket:
3556
- :param folder_structure:
3557
- :param log_file_format:
3558
- :param bucket_owner:
3559
- :param key_prefix:
3571
+ '''The S3 log configuration.
3572
+
3573
+ :param bucket: The S3 bucket name where logs are delivered.
3574
+ :param folder_structure: The folder structure that defines the organizational structure for log files in S3.
3575
+ :param log_file_format: The format of the LogFile that is written to S3.
3576
+ :param bucket_owner: The expected bucket owner of the target S3 bucket. The caller must have permissions to write to the target bucket.
3577
+ :param key_prefix: The S3 path prefix that determines where log files are stored.
3560
3578
 
3561
3579
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-s3logconfiguration.html
3562
3580
  :exampleMetadata: fixture=_generated
@@ -3596,7 +3614,8 @@ class CfnSessionLogger(
3596
3614
 
3597
3615
  @builtins.property
3598
3616
  def bucket(self) -> builtins.str:
3599
- '''
3617
+ '''The S3 bucket name where logs are delivered.
3618
+
3600
3619
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-s3logconfiguration.html#cfn-workspacesweb-sessionlogger-s3logconfiguration-bucket
3601
3620
  '''
3602
3621
  result = self._values.get("bucket")
@@ -3605,7 +3624,8 @@ class CfnSessionLogger(
3605
3624
 
3606
3625
  @builtins.property
3607
3626
  def folder_structure(self) -> builtins.str:
3608
- '''
3627
+ '''The folder structure that defines the organizational structure for log files in S3.
3628
+
3609
3629
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-s3logconfiguration.html#cfn-workspacesweb-sessionlogger-s3logconfiguration-folderstructure
3610
3630
  '''
3611
3631
  result = self._values.get("folder_structure")
@@ -3614,7 +3634,8 @@ class CfnSessionLogger(
3614
3634
 
3615
3635
  @builtins.property
3616
3636
  def log_file_format(self) -> builtins.str:
3617
- '''
3637
+ '''The format of the LogFile that is written to S3.
3638
+
3618
3639
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-s3logconfiguration.html#cfn-workspacesweb-sessionlogger-s3logconfiguration-logfileformat
3619
3640
  '''
3620
3641
  result = self._values.get("log_file_format")
@@ -3623,7 +3644,10 @@ class CfnSessionLogger(
3623
3644
 
3624
3645
  @builtins.property
3625
3646
  def bucket_owner(self) -> typing.Optional[builtins.str]:
3626
- '''
3647
+ '''The expected bucket owner of the target S3 bucket.
3648
+
3649
+ The caller must have permissions to write to the target bucket.
3650
+
3627
3651
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-s3logconfiguration.html#cfn-workspacesweb-sessionlogger-s3logconfiguration-bucketowner
3628
3652
  '''
3629
3653
  result = self._values.get("bucket_owner")
@@ -3631,7 +3655,8 @@ class CfnSessionLogger(
3631
3655
 
3632
3656
  @builtins.property
3633
3657
  def key_prefix(self) -> typing.Optional[builtins.str]:
3634
- '''
3658
+ '''The S3 path prefix that determines where log files are stored.
3659
+
3635
3660
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-s3logconfiguration.html#cfn-workspacesweb-sessionlogger-s3logconfiguration-keyprefix
3636
3661
  '''
3637
3662
  result = self._values.get("key_prefix")
@@ -3674,11 +3699,11 @@ class CfnSessionLoggerProps:
3674
3699
  ) -> None:
3675
3700
  '''Properties for defining a ``CfnSessionLogger``.
3676
3701
 
3677
- :param event_filter:
3678
- :param log_configuration:
3679
- :param additional_encryption_context:
3680
- :param customer_managed_key:
3681
- :param display_name:
3702
+ :param event_filter: The filter that specifies which events to monitor.
3703
+ :param log_configuration: The configuration that specifies where logs are fowarded.
3704
+ :param additional_encryption_context: The additional encryption context of the session logger.
3705
+ :param customer_managed_key: The custom managed key of the session logger.
3706
+ :param display_name: The human-readable display name.
3682
3707
  :param tags:
3683
3708
 
3684
3709
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html
@@ -3746,7 +3771,8 @@ class CfnSessionLoggerProps:
3746
3771
  def event_filter(
3747
3772
  self,
3748
3773
  ) -> typing.Union[_IResolvable_da3f097b, CfnSessionLogger.EventFilterProperty]:
3749
- '''
3774
+ '''The filter that specifies which events to monitor.
3775
+
3750
3776
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html#cfn-workspacesweb-sessionlogger-eventfilter
3751
3777
  '''
3752
3778
  result = self._values.get("event_filter")
@@ -3757,7 +3783,8 @@ class CfnSessionLoggerProps:
3757
3783
  def log_configuration(
3758
3784
  self,
3759
3785
  ) -> typing.Union[_IResolvable_da3f097b, CfnSessionLogger.LogConfigurationProperty]:
3760
- '''
3786
+ '''The configuration that specifies where logs are fowarded.
3787
+
3761
3788
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html#cfn-workspacesweb-sessionlogger-logconfiguration
3762
3789
  '''
3763
3790
  result = self._values.get("log_configuration")
@@ -3768,7 +3795,8 @@ class CfnSessionLoggerProps:
3768
3795
  def additional_encryption_context(
3769
3796
  self,
3770
3797
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
3771
- '''
3798
+ '''The additional encryption context of the session logger.
3799
+
3772
3800
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html#cfn-workspacesweb-sessionlogger-additionalencryptioncontext
3773
3801
  '''
3774
3802
  result = self._values.get("additional_encryption_context")
@@ -3776,7 +3804,8 @@ class CfnSessionLoggerProps:
3776
3804
 
3777
3805
  @builtins.property
3778
3806
  def customer_managed_key(self) -> typing.Optional[builtins.str]:
3779
- '''
3807
+ '''The custom managed key of the session logger.
3808
+
3780
3809
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html#cfn-workspacesweb-sessionlogger-customermanagedkey
3781
3810
  '''
3782
3811
  result = self._values.get("customer_managed_key")
@@ -3784,7 +3813,8 @@ class CfnSessionLoggerProps:
3784
3813
 
3785
3814
  @builtins.property
3786
3815
  def display_name(self) -> typing.Optional[builtins.str]:
3787
- '''
3816
+ '''The human-readable display name.
3817
+
3788
3818
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html#cfn-workspacesweb-sessionlogger-displayname
3789
3819
  '''
3790
3820
  result = self._values.get("display_name")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.212.0
3
+ Version: 2.214.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
@@ -22,7 +22,7 @@ License-File: LICENSE
22
22
  License-File: NOTICE
23
23
  Requires-Dist: aws-cdk.asset-awscli-v1 ==2.2.242
24
24
  Requires-Dist: aws-cdk.asset-node-proxy-agent-v6 <3.0.0,>=2.1.0
25
- Requires-Dist: aws-cdk.cloud-assembly-schema <49.0.0,>=48.3.0
25
+ Requires-Dist: aws-cdk.cloud-assembly-schema <49.0.0,>=48.6.0
26
26
  Requires-Dist: constructs <11.0.0,>=10.0.0
27
27
  Requires-Dist: jsii <2.0.0,>=1.113.0
28
28
  Requires-Dist: publication >=0.0.3