aws-cdk-lib 2.203.1__py3-none-any.whl → 2.205.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 (62) hide show
  1. aws_cdk/__init__.py +208 -92
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.203.1.jsii.tgz → aws-cdk-lib@2.205.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_aiops/__init__.py +89 -39
  5. aws_cdk/aws_apigateway/__init__.py +164 -0
  6. aws_cdk/aws_apigatewayv2/__init__.py +412 -0
  7. aws_cdk/aws_applicationautoscaling/__init__.py +2 -2
  8. aws_cdk/aws_arczonalshift/__init__.py +4 -1
  9. aws_cdk/aws_b2bi/__init__.py +32 -16
  10. aws_cdk/aws_bedrock/__init__.py +198 -10
  11. aws_cdk/aws_cassandra/__init__.py +156 -0
  12. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  13. aws_cdk/aws_chatbot/__init__.py +28 -0
  14. aws_cdk/aws_cloudformation/__init__.py +74 -72
  15. aws_cdk/aws_cloudfront/__init__.py +1273 -485
  16. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  17. aws_cdk/aws_cloudfront_origins/__init__.py +26 -21
  18. aws_cdk/aws_cloudwatch/__init__.py +278 -23
  19. aws_cdk/aws_codebuild/__init__.py +300 -36
  20. aws_cdk/aws_datasync/__init__.py +2 -2
  21. aws_cdk/aws_docdb/__init__.py +78 -0
  22. aws_cdk/aws_dynamodb/__init__.py +523 -37
  23. aws_cdk/aws_ec2/__init__.py +126 -30
  24. aws_cdk/aws_ecs/__init__.py +64 -19
  25. aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
  26. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  27. aws_cdk/aws_emrserverless/__init__.py +5 -5
  28. aws_cdk/aws_events/__init__.py +58 -3
  29. aws_cdk/aws_events_targets/__init__.py +7 -2
  30. aws_cdk/aws_evs/__init__.py +7 -7
  31. aws_cdk/aws_fsx/__init__.py +138 -78
  32. aws_cdk/aws_gamelift/__init__.py +19 -0
  33. aws_cdk/aws_glue/__init__.py +3 -3
  34. aws_cdk/aws_iot/__init__.py +1 -1
  35. aws_cdk/aws_kinesis/__init__.py +391 -13
  36. aws_cdk/aws_kinesisfirehose/__init__.py +128 -1
  37. aws_cdk/aws_lambda/__init__.py +144 -0
  38. aws_cdk/aws_lex/__init__.py +36 -19
  39. aws_cdk/aws_logs/__init__.py +58 -0
  40. aws_cdk/aws_neptune/__init__.py +12 -12
  41. aws_cdk/aws_odb/__init__.py +4049 -0
  42. aws_cdk/aws_omics/__init__.py +1 -1
  43. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  44. aws_cdk/aws_qbusiness/__init__.py +471 -4
  45. aws_cdk/aws_quicksight/__init__.py +185 -16
  46. aws_cdk/aws_rds/__init__.py +553 -17
  47. aws_cdk/aws_redshiftserverless/__init__.py +72 -45
  48. aws_cdk/aws_route53/__init__.py +41 -19
  49. aws_cdk/aws_s3tables/__init__.py +1005 -0
  50. aws_cdk/aws_sagemaker/__init__.py +20 -0
  51. aws_cdk/aws_scheduler/__init__.py +210 -0
  52. aws_cdk/aws_sns/__init__.py +164 -0
  53. aws_cdk/aws_sqs/__init__.py +164 -0
  54. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  55. aws_cdk/aws_synthetics/__init__.py +159 -37
  56. aws_cdk/aws_transfer/__init__.py +23 -1
  57. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/METADATA +2 -2
  58. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/RECORD +62 -61
  59. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/LICENSE +0 -0
  60. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/NOTICE +0 -0
  61. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/WHEEL +0 -0
  62. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/top_level.txt +0 -0
@@ -221,7 +221,7 @@ class CfnApplication(
221
221
  :param architecture: The CPU architecture of an application.
222
222
  :param auto_start_configuration: The configuration for an application to automatically start on job submission.
223
223
  :param auto_stop_configuration: The configuration for an application to automatically stop after a certain amount of time being idle.
224
- :param identity_center_configuration: The IAM IdentityCenter configuration for trusted-identity-propagation on this application. Supported with release labels emr-7.8.0 and above.
224
+ :param identity_center_configuration: A configuration specification to be used when provisioning an application. A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.
225
225
  :param image_configuration: The image configuration applied to all worker types.
226
226
  :param initial_capacity: The initial capacity of the application.
227
227
  :param interactive_configuration: The interactive configuration object that enables the interactive use cases for an application.
@@ -399,7 +399,7 @@ class CfnApplication(
399
399
  def identity_center_configuration(
400
400
  self,
401
401
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.IdentityCenterConfigurationProperty"]]:
402
- '''The IAM IdentityCenter configuration for trusted-identity-propagation on this application.'''
402
+ '''A configuration specification to be used when provisioning an application.'''
403
403
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.IdentityCenterConfigurationProperty"]], jsii.get(self, "identityCenterConfiguration"))
404
404
 
405
405
  @identity_center_configuration.setter
@@ -2201,7 +2201,7 @@ class CfnApplicationProps:
2201
2201
  :param architecture: The CPU architecture of an application.
2202
2202
  :param auto_start_configuration: The configuration for an application to automatically start on job submission.
2203
2203
  :param auto_stop_configuration: The configuration for an application to automatically stop after a certain amount of time being idle.
2204
- :param identity_center_configuration: The IAM IdentityCenter configuration for trusted-identity-propagation on this application. Supported with release labels emr-7.8.0 and above.
2204
+ :param identity_center_configuration: A configuration specification to be used when provisioning an application. A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.
2205
2205
  :param image_configuration: The image configuration applied to all worker types.
2206
2206
  :param initial_capacity: The initial capacity of the application.
2207
2207
  :param interactive_configuration: The interactive configuration object that enables the interactive use cases for an application.
@@ -2432,9 +2432,9 @@ class CfnApplicationProps:
2432
2432
  def identity_center_configuration(
2433
2433
  self,
2434
2434
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.IdentityCenterConfigurationProperty]]:
2435
- '''The IAM IdentityCenter configuration for trusted-identity-propagation on this application.
2435
+ '''A configuration specification to be used when provisioning an application.
2436
2436
 
2437
- Supported with release labels emr-7.8.0 and above.
2437
+ A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.
2438
2438
 
2439
2439
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrserverless-application.html#cfn-emrserverless-application-identitycenterconfiguration
2440
2440
  '''
@@ -404,6 +404,7 @@ from ..aws_sqs import IQueue as _IQueue_7ed6f679
404
404
  name_mapping={
405
405
  "api_destination_arn": "apiDestinationArn",
406
406
  "connection": "connection",
407
+ "api_destination_arn_for_policy": "apiDestinationArnForPolicy",
407
408
  },
408
409
  )
409
410
  class ApiDestinationAttributes:
@@ -412,11 +413,13 @@ class ApiDestinationAttributes:
412
413
  *,
413
414
  api_destination_arn: builtins.str,
414
415
  connection: "IConnection",
416
+ api_destination_arn_for_policy: typing.Optional[builtins.str] = None,
415
417
  ) -> None:
416
418
  '''The properties to import an existing Api Destination.
417
419
 
418
420
  :param api_destination_arn: The ARN of the Api Destination.
419
421
  :param connection: The Connection to associate with the Api Destination.
422
+ :param api_destination_arn_for_policy: The Amazon Resource Name (ARN) of an API destination in resource format. Default: undefined - Imported API destination does not have ARN in resource format
420
423
 
421
424
  :exampleMetadata: infused
422
425
 
@@ -424,8 +427,13 @@ class ApiDestinationAttributes:
424
427
 
425
428
  connection = events.Connection.from_event_bus_arn(self, "Connection", "arn:aws:events:us-east-1:123456789012:event-bus/EventBusName", "arn:aws:secretsmanager:us-east-1:123456789012:secret:SecretName-f3gDy9")
426
429
 
427
- api_destination_arn = "arn:aws:events:us-east-1:123456789012:api-destination/DestinationName"
428
- destination = events.ApiDestination.from_api_destination_attributes(self, "Destination", api_destination_arn=api_destination_arn, connection=connection)
430
+ api_destination_arn = "arn:aws:events:us-east-1:123456789012:api-destination/DestinationName/11111111-1111-1111-1111-111111111111"
431
+ api_destination_arn_for_policy = "arn:aws:events:us-east-1:123456789012:api-destination/DestinationName"
432
+ destination = events.ApiDestination.from_api_destination_attributes(self, "Destination",
433
+ api_destination_arn=api_destination_arn,
434
+ connection=connection,
435
+ api_destination_arn_for_policy=api_destination_arn_for_policy
436
+ )
429
437
 
430
438
  rule = events.Rule(self, "OtherRule",
431
439
  schedule=events.Schedule.rate(Duration.minutes(10)),
@@ -436,10 +444,13 @@ class ApiDestinationAttributes:
436
444
  type_hints = typing.get_type_hints(_typecheckingstub__803612bfb0a8da2a8e0ca427792d066e933032d6f722156869f61949617c8303)
437
445
  check_type(argname="argument api_destination_arn", value=api_destination_arn, expected_type=type_hints["api_destination_arn"])
438
446
  check_type(argname="argument connection", value=connection, expected_type=type_hints["connection"])
447
+ check_type(argname="argument api_destination_arn_for_policy", value=api_destination_arn_for_policy, expected_type=type_hints["api_destination_arn_for_policy"])
439
448
  self._values: typing.Dict[builtins.str, typing.Any] = {
440
449
  "api_destination_arn": api_destination_arn,
441
450
  "connection": connection,
442
451
  }
452
+ if api_destination_arn_for_policy is not None:
453
+ self._values["api_destination_arn_for_policy"] = api_destination_arn_for_policy
443
454
 
444
455
  @builtins.property
445
456
  def api_destination_arn(self) -> builtins.str:
@@ -455,6 +466,15 @@ class ApiDestinationAttributes:
455
466
  assert result is not None, "Required property 'connection' is missing"
456
467
  return typing.cast("IConnection", result)
457
468
 
469
+ @builtins.property
470
+ def api_destination_arn_for_policy(self) -> typing.Optional[builtins.str]:
471
+ '''The Amazon Resource Name (ARN) of an API destination in resource format.
472
+
473
+ :default: undefined - Imported API destination does not have ARN in resource format
474
+ '''
475
+ result = self._values.get("api_destination_arn_for_policy")
476
+ return typing.cast(typing.Optional[builtins.str], result)
477
+
458
478
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
459
479
  return isinstance(rhs, self.__class__) and rhs._values == self._values
460
480
 
@@ -9477,6 +9497,16 @@ class IApiDestination(_IResource_c80c4260, typing_extensions.Protocol):
9477
9497
  '''
9478
9498
  ...
9479
9499
 
9500
+ @builtins.property
9501
+ @jsii.member(jsii_name="apiDestinationArnForPolicy")
9502
+ def api_destination_arn_for_policy(self) -> typing.Optional[builtins.str]:
9503
+ '''The Amazon Resource Name (ARN) of an API destination in resource format, so it can be used in the Resource element of IAM permission policy statements.
9504
+
9505
+ :see: https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoneventbridge.html#amazoneventbridge-resources-for-iam-policies
9506
+ :attribute: true
9507
+ '''
9508
+ ...
9509
+
9480
9510
 
9481
9511
  class _IApiDestinationProxy(
9482
9512
  jsii.proxy_for(_IResource_c80c4260), # type: ignore[misc]
@@ -9503,6 +9533,16 @@ class _IApiDestinationProxy(
9503
9533
  '''
9504
9534
  return typing.cast(builtins.str, jsii.get(self, "apiDestinationName"))
9505
9535
 
9536
+ @builtins.property
9537
+ @jsii.member(jsii_name="apiDestinationArnForPolicy")
9538
+ def api_destination_arn_for_policy(self) -> typing.Optional[builtins.str]:
9539
+ '''The Amazon Resource Name (ARN) of an API destination in resource format, so it can be used in the Resource element of IAM permission policy statements.
9540
+
9541
+ :see: https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoneventbridge.html#amazoneventbridge-resources-for-iam-policies
9542
+ :attribute: true
9543
+ '''
9544
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "apiDestinationArnForPolicy"))
9545
+
9506
9546
  # Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
9507
9547
  typing.cast(typing.Any, IApiDestination).__jsii_proxy_class__ = lambda : _IApiDestinationProxy
9508
9548
 
@@ -11758,6 +11798,7 @@ class ApiDestination(
11758
11798
  *,
11759
11799
  api_destination_arn: builtins.str,
11760
11800
  connection: IConnection,
11801
+ api_destination_arn_for_policy: typing.Optional[builtins.str] = None,
11761
11802
  ) -> "ApiDestination":
11762
11803
  '''Create an Api Destination construct from an existing Api Destination ARN.
11763
11804
 
@@ -11765,13 +11806,16 @@ class ApiDestination(
11765
11806
  :param id: The construct's id.
11766
11807
  :param api_destination_arn: The ARN of the Api Destination.
11767
11808
  :param connection: The Connection to associate with the Api Destination.
11809
+ :param api_destination_arn_for_policy: The Amazon Resource Name (ARN) of an API destination in resource format. Default: undefined - Imported API destination does not have ARN in resource format
11768
11810
  '''
11769
11811
  if __debug__:
11770
11812
  type_hints = typing.get_type_hints(_typecheckingstub__e49376311071a64effa3b8c1dd1bd3ee0e1b2ef0514b800dd0053110fa18cb55)
11771
11813
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
11772
11814
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
11773
11815
  attrs = ApiDestinationAttributes(
11774
- api_destination_arn=api_destination_arn, connection=connection
11816
+ api_destination_arn=api_destination_arn,
11817
+ connection=connection,
11818
+ api_destination_arn_for_policy=api_destination_arn_for_policy,
11775
11819
  )
11776
11820
 
11777
11821
  return typing.cast("ApiDestination", jsii.sinvoke(cls, "fromApiDestinationAttributes", [scope, id, attrs]))
@@ -11806,6 +11850,15 @@ class ApiDestination(
11806
11850
  '''The Connection to associate with Api Destination.'''
11807
11851
  return typing.cast(IConnection, jsii.get(self, "connection"))
11808
11852
 
11853
+ @builtins.property
11854
+ @jsii.member(jsii_name="apiDestinationArnForPolicy")
11855
+ def api_destination_arn_for_policy(self) -> typing.Optional[builtins.str]:
11856
+ '''The Amazon Resource Name (ARN) of an API destination in resource format.
11857
+
11858
+ :attribute: true
11859
+ '''
11860
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "apiDestinationArnForPolicy"))
11861
+
11809
11862
 
11810
11863
  @jsii.data_type(
11811
11864
  jsii_type="aws-cdk-lib.aws_events.ArchiveProps",
@@ -12401,6 +12454,7 @@ def _typecheckingstub__803612bfb0a8da2a8e0ca427792d066e933032d6f722156869f619496
12401
12454
  *,
12402
12455
  api_destination_arn: builtins.str,
12403
12456
  connection: IConnection,
12457
+ api_destination_arn_for_policy: typing.Optional[builtins.str] = None,
12404
12458
  ) -> None:
12405
12459
  """Type checking stubs"""
12406
12460
  pass
@@ -13801,6 +13855,7 @@ def _typecheckingstub__e49376311071a64effa3b8c1dd1bd3ee0e1b2ef0514b800dd0053110f
13801
13855
  *,
13802
13856
  api_destination_arn: builtins.str,
13803
13857
  connection: IConnection,
13858
+ api_destination_arn_for_policy: typing.Optional[builtins.str] = None,
13804
13859
  ) -> None:
13805
13860
  """Type checking stubs"""
13806
13861
  pass
@@ -370,8 +370,13 @@ to create additional rules:
370
370
  ```python
371
371
  connection = events.Connection.from_event_bus_arn(self, "Connection", "arn:aws:events:us-east-1:123456789012:event-bus/EventBusName", "arn:aws:secretsmanager:us-east-1:123456789012:secret:SecretName-f3gDy9")
372
372
 
373
- api_destination_arn = "arn:aws:events:us-east-1:123456789012:api-destination/DestinationName"
374
- destination = events.ApiDestination.from_api_destination_attributes(self, "Destination", api_destination_arn=api_destination_arn, connection=connection)
373
+ api_destination_arn = "arn:aws:events:us-east-1:123456789012:api-destination/DestinationName/11111111-1111-1111-1111-111111111111"
374
+ api_destination_arn_for_policy = "arn:aws:events:us-east-1:123456789012:api-destination/DestinationName"
375
+ destination = events.ApiDestination.from_api_destination_attributes(self, "Destination",
376
+ api_destination_arn=api_destination_arn,
377
+ connection=connection,
378
+ api_destination_arn_for_policy=api_destination_arn_for_policy
379
+ )
375
380
 
376
381
  rule = events.Rule(self, "OtherRule",
377
382
  schedule=events.Schedule.rate(Duration.minutes(10)),
@@ -211,7 +211,7 @@ class CfnEnvironment(
211
211
  :param scope: Scope in which this resource is defined.
212
212
  :param id: Construct identifier for this resource (unique in its scope).
213
213
  :param connectivity_info: The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.
214
- :param license_info: The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
214
+ :param license_info: The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. The VCF solution key must cover a minimum of 256 cores. The vSAN license key must provide at least 110 TiB of vSAN capacity.
215
215
  :param service_access_subnet_id: The subnet that is used to establish connectivity between the Amazon EVS control plane and VPC. Amazon EVS uses this subnet to perform validations and create the environment.
216
216
  :param site_id: The Broadcom Site ID that is associated with your Amazon EVS environment. Amazon EVS uses the Broadcom Site ID that you provide to meet Broadcom VCF license usage reporting requirements for Amazon EVS.
217
217
  :param terms_accepted: Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance.
@@ -1237,8 +1237,8 @@ class CfnEnvironment(
1237
1237
 
1238
1238
  The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
1239
1239
 
1240
- :param solution_key: The VCF solution key. This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server.
1241
- :param vsan_key: The VSAN license key. This license unlocks vSAN features.
1240
+ :param solution_key: The VCF solution key. This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server. The VCF solution key must cover a minimum of 256 cores.
1241
+ :param vsan_key: The VSAN license key. This license unlocks vSAN features. The vSAN license key must provide at least 110 TiB of vSAN capacity.
1242
1242
 
1243
1243
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-licenseinfo.html
1244
1244
  :exampleMetadata: fixture=_generated
@@ -1267,7 +1267,7 @@ class CfnEnvironment(
1267
1267
  def solution_key(self) -> builtins.str:
1268
1268
  '''The VCF solution key.
1269
1269
 
1270
- This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server.
1270
+ This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server. The VCF solution key must cover a minimum of 256 cores.
1271
1271
 
1272
1272
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-licenseinfo.html#cfn-evs-environment-licenseinfo-solutionkey
1273
1273
  '''
@@ -1279,7 +1279,7 @@ class CfnEnvironment(
1279
1279
  def vsan_key(self) -> builtins.str:
1280
1280
  '''The VSAN license key.
1281
1281
 
1282
- This license unlocks vSAN features.
1282
+ This license unlocks vSAN features. The vSAN license key must provide at least 110 TiB of vSAN capacity.
1283
1283
 
1284
1284
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-licenseinfo.html#cfn-evs-environment-licenseinfo-vsankey
1285
1285
  '''
@@ -1647,7 +1647,7 @@ class CfnEnvironmentProps:
1647
1647
  '''Properties for defining a ``CfnEnvironment``.
1648
1648
 
1649
1649
  :param connectivity_info: The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.
1650
- :param license_info: The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
1650
+ :param license_info: The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. The VCF solution key must cover a minimum of 256 cores. The vSAN license key must provide at least 110 TiB of vSAN capacity.
1651
1651
  :param service_access_subnet_id: The subnet that is used to establish connectivity between the Amazon EVS control plane and VPC. Amazon EVS uses this subnet to perform validations and create the environment.
1652
1652
  :param site_id: The Broadcom Site ID that is associated with your Amazon EVS environment. Amazon EVS uses the Broadcom Site ID that you provide to meet Broadcom VCF license usage reporting requirements for Amazon EVS.
1653
1653
  :param terms_accepted: Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance.
@@ -1807,7 +1807,7 @@ class CfnEnvironmentProps:
1807
1807
  ) -> typing.Union[_IResolvable_da3f097b, CfnEnvironment.LicenseInfoProperty]:
1808
1808
  '''The license information that Amazon EVS requires to create an environment.
1809
1809
 
1810
- Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
1810
+ Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. The VCF solution key must cover a minimum of 256 cores. The vSAN license key must provide at least 110 TiB of vSAN capacity.
1811
1811
 
1812
1812
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-licenseinfo
1813
1813
  '''