aws-cdk-lib 2.194.0__py3-none-any.whl → 2.196.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 (108) hide show
  1. aws_cdk/__init__.py +435 -20
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.194.0.jsii.tgz → aws-cdk-lib@2.196.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +1 -1
  5. aws_cdk/aws_amazonmq/__init__.py +2 -2
  6. aws_cdk/aws_apigateway/__init__.py +208 -70
  7. aws_cdk/aws_apigatewayv2/__init__.py +155 -24
  8. aws_cdk/aws_appconfig/__init__.py +24 -0
  9. aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
  10. aws_cdk/aws_appmesh/__init__.py +42 -0
  11. aws_cdk/aws_appsync/__init__.py +92 -20
  12. aws_cdk/aws_autoscaling/__init__.py +24 -0
  13. aws_cdk/aws_backup/__init__.py +53 -14
  14. aws_cdk/aws_batch/__init__.py +72 -0
  15. aws_cdk/aws_bedrock/__init__.py +1201 -18
  16. aws_cdk/aws_budgets/__init__.py +569 -0
  17. aws_cdk/aws_certificatemanager/__init__.py +21 -0
  18. aws_cdk/aws_chatbot/__init__.py +6 -0
  19. aws_cdk/aws_cloudfront/__init__.py +277 -120
  20. aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
  21. aws_cdk/aws_cloudtrail/__init__.py +6 -0
  22. aws_cdk/aws_cloudwatch/__init__.py +18 -0
  23. aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
  24. aws_cdk/aws_codebuild/__init__.py +48 -0
  25. aws_cdk/aws_codecommit/__init__.py +6 -0
  26. aws_cdk/aws_codedeploy/__init__.py +63 -0
  27. aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
  28. aws_cdk/aws_codepipeline/__init__.py +114 -0
  29. aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
  30. aws_cdk/aws_codestarnotifications/__init__.py +6 -0
  31. aws_cdk/aws_cognito/__init__.py +215 -10
  32. aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
  33. aws_cdk/aws_config/__init__.py +36 -0
  34. aws_cdk/aws_datazone/__init__.py +1013 -100
  35. aws_cdk/aws_docdb/__init__.py +27 -3
  36. aws_cdk/aws_dsql/__init__.py +29 -12
  37. aws_cdk/aws_dynamodb/__init__.py +25 -11
  38. aws_cdk/aws_ec2/__init__.py +408 -23
  39. aws_cdk/aws_ecr/__init__.py +22 -14
  40. aws_cdk/aws_ecr_assets/__init__.py +6 -0
  41. aws_cdk/aws_ecs/__init__.py +116 -34
  42. aws_cdk/aws_ecs_patterns/__init__.py +58 -0
  43. aws_cdk/aws_efs/__init__.py +12 -0
  44. aws_cdk/aws_eks/__init__.py +42 -0
  45. aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
  46. aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
  47. aws_cdk/aws_elasticsearch/__init__.py +9 -0
  48. aws_cdk/aws_events/__init__.py +36 -0
  49. aws_cdk/aws_events_targets/__init__.py +10 -10
  50. aws_cdk/aws_fsx/__init__.py +8 -3
  51. aws_cdk/aws_globalaccelerator/__init__.py +18 -0
  52. aws_cdk/aws_iam/__init__.py +66 -0
  53. aws_cdk/aws_imagebuilder/__init__.py +181 -26
  54. aws_cdk/aws_inspector/__init__.py +6 -0
  55. aws_cdk/aws_kinesis/__init__.py +19 -1
  56. aws_cdk/aws_kinesisanalytics/__init__.py +7 -7
  57. aws_cdk/aws_kinesisanalyticsv2/__init__.py +7 -7
  58. aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
  59. aws_cdk/aws_kms/__init__.py +16 -4
  60. aws_cdk/aws_lambda/__init__.py +76 -6
  61. aws_cdk/aws_lambda_nodejs/__init__.py +6 -0
  62. aws_cdk/aws_logs/__init__.py +155 -12
  63. aws_cdk/aws_medialive/__init__.py +4 -6
  64. aws_cdk/aws_mediatailor/__init__.py +115 -0
  65. aws_cdk/aws_oam/__init__.py +43 -10
  66. aws_cdk/aws_opensearchservice/__init__.py +12 -0
  67. aws_cdk/aws_qbusiness/__init__.py +2 -2
  68. aws_cdk/aws_quicksight/__init__.py +22 -22
  69. aws_cdk/aws_rds/__init__.py +347 -36
  70. aws_cdk/aws_redshiftserverless/__init__.py +7 -7
  71. aws_cdk/aws_route53/__init__.py +735 -33
  72. aws_cdk/aws_route53_targets/__init__.py +62 -1
  73. aws_cdk/aws_route53profiles/__init__.py +1 -1
  74. aws_cdk/aws_s3/__init__.py +37 -10
  75. aws_cdk/aws_s3_deployment/__init__.py +6 -0
  76. aws_cdk/aws_s3_notifications/__init__.py +5 -5
  77. aws_cdk/aws_sagemaker/__init__.py +452 -8
  78. aws_cdk/aws_scheduler/__init__.py +12 -0
  79. aws_cdk/aws_secretsmanager/__init__.py +24 -0
  80. aws_cdk/aws_servicecatalog/__init__.py +24 -0
  81. aws_cdk/aws_servicediscovery/__init__.py +48 -0
  82. aws_cdk/aws_ses/__init__.py +133 -33
  83. aws_cdk/aws_signer/__init__.py +6 -0
  84. aws_cdk/aws_sns/__init__.py +18 -0
  85. aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
  86. aws_cdk/aws_sqs/__init__.py +12 -0
  87. aws_cdk/aws_ssm/__init__.py +12 -0
  88. aws_cdk/aws_ssmcontacts/__init__.py +53 -2
  89. aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
  90. aws_cdk/aws_stepfunctions/__init__.py +153 -7
  91. aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
  92. aws_cdk/aws_synthetics/__init__.py +32 -0
  93. aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
  94. aws_cdk/aws_vpclattice/__init__.py +3 -1
  95. aws_cdk/aws_wisdom/__init__.py +6 -4
  96. aws_cdk/cloud_assembly_schema/__init__.py +7 -1
  97. aws_cdk/custom_resources/__init__.py +18 -0
  98. aws_cdk/cx_api/__init__.py +33 -0
  99. aws_cdk/lambda_layer_awscli/__init__.py +6 -0
  100. aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
  101. aws_cdk/pipelines/__init__.py +10 -10
  102. aws_cdk/triggers/__init__.py +6 -0
  103. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/METADATA +84 -6
  104. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/RECORD +108 -107
  105. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/LICENSE +0 -0
  106. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/NOTICE +0 -0
  107. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/WHEEL +0 -0
  108. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/top_level.txt +0 -0
@@ -2296,6 +2296,8 @@ class AppSyncDataSourceType(enum.Enum):
2296
2296
  '''Relational DB data source type.'''
2297
2297
  BEDROCK = "BEDROCK"
2298
2298
  '''Bedrock runtime data source type.'''
2299
+ ELASTICSEARCH = "ELASTICSEARCH"
2300
+ '''Elasticsearch data source type.'''
2299
2301
 
2300
2302
 
2301
2303
  @jsii.data_type(
@@ -6636,14 +6638,14 @@ class CfnChannelNamespace(
6636
6638
  '''
6637
6639
  :param scope: Scope in which this resource is defined.
6638
6640
  :param id: Construct identifier for this resource (unique in its scope).
6639
- :param api_id: AppSync Api Id that this Channel Namespace belongs to.
6640
- :param name: Namespace indentifier.
6641
- :param code_handlers: String of APPSYNC_JS code to be used by the handlers.
6641
+ :param api_id: The ``Api`` ID.
6642
+ :param name: The name of the channel namespace. This name must be unique within the ``Api`` .
6643
+ :param code_handlers: The event handler functions that run custom business logic to process published events and subscribe requests.
6642
6644
  :param code_s3_location: The Amazon S3 endpoint where the code is located.
6643
6645
  :param handler_configs:
6644
6646
  :param publish_auth_modes: The authorization mode to use for publishing messages on the channel namespace. This configuration overrides the default ``Api`` authorization configuration.
6645
6647
  :param subscribe_auth_modes: The authorization mode to use for subscribing to messages on the channel namespace. This configuration overrides the default ``Api`` authorization configuration.
6646
- :param tags: An arbitrary set of tags (key-value pairs) for this AppSync API.
6648
+ :param tags: A set of tags (key-value pairs) for this channel namespace.
6647
6649
  '''
6648
6650
  if __debug__:
6649
6651
  type_hints = typing.get_type_hints(_typecheckingstub__a093c57f7353830d56f8cde41e8653e333d0f0b91da87dd9ca86d72460c39119)
@@ -6695,7 +6697,7 @@ class CfnChannelNamespace(
6695
6697
  @builtins.property
6696
6698
  @jsii.member(jsii_name="attrChannelNamespaceArn")
6697
6699
  def attr_channel_namespace_arn(self) -> builtins.str:
6698
- '''The Amazon Resource Name (ARN) for the Channel Namespace.
6700
+ '''The Amazon Resource Name (ARN) of the channel namespace.
6699
6701
 
6700
6702
  :cloudformationAttribute: ChannelNamespaceArn
6701
6703
  '''
@@ -6715,7 +6717,7 @@ class CfnChannelNamespace(
6715
6717
  @builtins.property
6716
6718
  @jsii.member(jsii_name="apiId")
6717
6719
  def api_id(self) -> builtins.str:
6718
- '''AppSync Api Id that this Channel Namespace belongs to.'''
6720
+ '''The ``Api`` ID.'''
6719
6721
  return typing.cast(builtins.str, jsii.get(self, "apiId"))
6720
6722
 
6721
6723
  @api_id.setter
@@ -6728,7 +6730,7 @@ class CfnChannelNamespace(
6728
6730
  @builtins.property
6729
6731
  @jsii.member(jsii_name="name")
6730
6732
  def name(self) -> builtins.str:
6731
- '''Namespace indentifier.'''
6733
+ '''The name of the channel namespace.'''
6732
6734
  return typing.cast(builtins.str, jsii.get(self, "name"))
6733
6735
 
6734
6736
  @name.setter
@@ -6741,7 +6743,7 @@ class CfnChannelNamespace(
6741
6743
  @builtins.property
6742
6744
  @jsii.member(jsii_name="codeHandlers")
6743
6745
  def code_handlers(self) -> typing.Optional[builtins.str]:
6744
- '''String of APPSYNC_JS code to be used by the handlers.'''
6746
+ '''The event handler functions that run custom business logic to process published events and subscribe requests.'''
6745
6747
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "codeHandlers"))
6746
6748
 
6747
6749
  @code_handlers.setter
@@ -6820,7 +6822,7 @@ class CfnChannelNamespace(
6820
6822
  @builtins.property
6821
6823
  @jsii.member(jsii_name="tags")
6822
6824
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
6823
- '''An arbitrary set of tags (key-value pairs) for this AppSync API.'''
6825
+ '''A set of tags (key-value pairs) for this channel namespace.'''
6824
6826
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
6825
6827
 
6826
6828
  @tags.setter
@@ -6837,9 +6839,11 @@ class CfnChannelNamespace(
6837
6839
  )
6838
6840
  class AuthModeProperty:
6839
6841
  def __init__(self, *, auth_type: typing.Optional[builtins.str] = None) -> None:
6840
- '''An auth mode.
6842
+ '''Describes an authorization configuration.
6843
+
6844
+ Use ``AuthMode`` to specify the publishing and subscription authorization configuration for an Event API.
6841
6845
 
6842
- :param auth_type: Security configuration for your AppSync API.
6846
+ :param auth_type: The authorization type.
6843
6847
 
6844
6848
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-authmode.html
6845
6849
  :exampleMetadata: fixture=_generated
@@ -6863,7 +6867,7 @@ class CfnChannelNamespace(
6863
6867
 
6864
6868
  @builtins.property
6865
6869
  def auth_type(self) -> typing.Optional[builtins.str]:
6866
- '''Security configuration for your AppSync API.
6870
+ '''The authorization type.
6867
6871
 
6868
6872
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-authmode.html#cfn-appsync-channelnamespace-authmode-authtype
6869
6873
  '''
@@ -7209,14 +7213,14 @@ class CfnChannelNamespaceProps:
7209
7213
  ) -> None:
7210
7214
  '''Properties for defining a ``CfnChannelNamespace``.
7211
7215
 
7212
- :param api_id: AppSync Api Id that this Channel Namespace belongs to.
7213
- :param name: Namespace indentifier.
7214
- :param code_handlers: String of APPSYNC_JS code to be used by the handlers.
7216
+ :param api_id: The ``Api`` ID.
7217
+ :param name: The name of the channel namespace. This name must be unique within the ``Api`` .
7218
+ :param code_handlers: The event handler functions that run custom business logic to process published events and subscribe requests.
7215
7219
  :param code_s3_location: The Amazon S3 endpoint where the code is located.
7216
7220
  :param handler_configs:
7217
7221
  :param publish_auth_modes: The authorization mode to use for publishing messages on the channel namespace. This configuration overrides the default ``Api`` authorization configuration.
7218
7222
  :param subscribe_auth_modes: The authorization mode to use for subscribing to messages on the channel namespace. This configuration overrides the default ``Api`` authorization configuration.
7219
- :param tags: An arbitrary set of tags (key-value pairs) for this AppSync API.
7223
+ :param tags: A set of tags (key-value pairs) for this channel namespace.
7220
7224
 
7221
7225
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-channelnamespace.html
7222
7226
  :exampleMetadata: fixture=_generated
@@ -7299,7 +7303,7 @@ class CfnChannelNamespaceProps:
7299
7303
 
7300
7304
  @builtins.property
7301
7305
  def api_id(self) -> builtins.str:
7302
- '''AppSync Api Id that this Channel Namespace belongs to.
7306
+ '''The ``Api`` ID.
7303
7307
 
7304
7308
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-channelnamespace.html#cfn-appsync-channelnamespace-apiid
7305
7309
  '''
@@ -7309,7 +7313,9 @@ class CfnChannelNamespaceProps:
7309
7313
 
7310
7314
  @builtins.property
7311
7315
  def name(self) -> builtins.str:
7312
- '''Namespace indentifier.
7316
+ '''The name of the channel namespace.
7317
+
7318
+ This name must be unique within the ``Api`` .
7313
7319
 
7314
7320
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-channelnamespace.html#cfn-appsync-channelnamespace-name
7315
7321
  '''
@@ -7319,7 +7325,7 @@ class CfnChannelNamespaceProps:
7319
7325
 
7320
7326
  @builtins.property
7321
7327
  def code_handlers(self) -> typing.Optional[builtins.str]:
7322
- '''String of APPSYNC_JS code to be used by the handlers.
7328
+ '''The event handler functions that run custom business logic to process published events and subscribe requests.
7323
7329
 
7324
7330
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-channelnamespace.html#cfn-appsync-channelnamespace-codehandlers
7325
7331
  '''
@@ -7373,7 +7379,7 @@ class CfnChannelNamespaceProps:
7373
7379
 
7374
7380
  @builtins.property
7375
7381
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
7376
- '''An arbitrary set of tags (key-value pairs) for this AppSync API.
7382
+ '''A set of tags (key-value pairs) for this channel namespace.
7377
7383
 
7378
7384
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-channelnamespace.html#cfn-appsync-channelnamespace-tags
7379
7385
  '''
@@ -20147,6 +20153,12 @@ class SourceApiAssociation(
20147
20153
 
20148
20154
  return typing.cast(ISourceApiAssociation, jsii.sinvoke(cls, "fromSourceApiAssociationAttributes", [scope, id, attrs]))
20149
20155
 
20156
+ @jsii.python.classproperty
20157
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
20158
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
20159
+ '''Uniquely identifies this class.'''
20160
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
20161
+
20150
20162
  @builtins.property
20151
20163
  @jsii.member(jsii_name="association")
20152
20164
  def association(self) -> CfnSourceApiAssociation:
@@ -22470,6 +22482,12 @@ class AppsyncFunction(
22470
22482
 
22471
22483
  return typing.cast(IAppsyncFunction, jsii.sinvoke(cls, "fromAppsyncFunctionAttributes", [scope, id, attrs]))
22472
22484
 
22485
+ @jsii.python.classproperty
22486
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
22487
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
22488
+ '''Uniquely identifies this class.'''
22489
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
22490
+
22473
22491
  @builtins.property
22474
22492
  @jsii.member(jsii_name="dataSource")
22475
22493
  def data_source(self) -> BaseDataSource:
@@ -23110,6 +23128,12 @@ class ChannelNamespace(
23110
23128
  check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
23111
23129
  return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantSubscribe", [grantee]))
23112
23130
 
23131
+ @jsii.python.classproperty
23132
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
23133
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
23134
+ '''Uniquely identifies this class.'''
23135
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
23136
+
23113
23137
  @builtins.property
23114
23138
  @jsii.member(jsii_name="channelNamespaceArn")
23115
23139
  def channel_namespace_arn(self) -> builtins.str:
@@ -23217,6 +23241,12 @@ class DynamoDbDataSource(
23217
23241
 
23218
23242
  jsii.create(self.__class__, self, [scope, id, props])
23219
23243
 
23244
+ @jsii.python.classproperty
23245
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
23246
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
23247
+ '''Uniquely identifies this class.'''
23248
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
23249
+
23220
23250
 
23221
23251
  @jsii.data_type(
23222
23252
  jsii_type="aws-cdk-lib.aws_appsync.DynamoDbDataSourceProps",
@@ -23990,6 +24020,12 @@ class EventBridgeDataSource(
23990
24020
 
23991
24021
  jsii.create(self.__class__, self, [scope, id, props])
23992
24022
 
24023
+ @jsii.python.classproperty
24024
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
24025
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
24026
+ '''Uniquely identifies this class.'''
24027
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
24028
+
23993
24029
 
23994
24030
  @jsii.data_type(
23995
24031
  jsii_type="aws-cdk-lib.aws_appsync.EventBridgeDataSourceProps",
@@ -24666,6 +24702,12 @@ class HttpDataSource(
24666
24702
 
24667
24703
  jsii.create(self.__class__, self, [scope, id, props])
24668
24704
 
24705
+ @jsii.python.classproperty
24706
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
24707
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
24708
+ '''Uniquely identifies this class.'''
24709
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
24710
+
24669
24711
 
24670
24712
  @jsii.data_type(
24671
24713
  jsii_type="aws-cdk-lib.aws_appsync.HttpDataSourceProps",
@@ -24876,6 +24918,12 @@ class LambdaDataSource(
24876
24918
 
24877
24919
  jsii.create(self.__class__, self, [scope, id, props])
24878
24920
 
24921
+ @jsii.python.classproperty
24922
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
24923
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
24924
+ '''Uniquely identifies this class.'''
24925
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
24926
+
24879
24927
 
24880
24928
  @jsii.data_type(
24881
24929
  jsii_type="aws-cdk-lib.aws_appsync.LambdaDataSourceProps",
@@ -25084,6 +25132,12 @@ class OpenSearchDataSource(
25084
25132
 
25085
25133
  jsii.create(self.__class__, self, [scope, id, props])
25086
25134
 
25135
+ @jsii.python.classproperty
25136
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
25137
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
25138
+ '''Uniquely identifies this class.'''
25139
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
25140
+
25087
25141
 
25088
25142
  @jsii.data_type(
25089
25143
  jsii_type="aws-cdk-lib.aws_appsync.OpenSearchDataSourceProps",
@@ -25364,6 +25418,12 @@ class RdsDataSource(
25364
25418
 
25365
25419
  jsii.create(self.__class__, self, [scope, id, props])
25366
25420
 
25421
+ @jsii.python.classproperty
25422
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
25423
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
25424
+ '''Uniquely identifies this class.'''
25425
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
25426
+
25367
25427
 
25368
25428
  @jsii.data_type(
25369
25429
  jsii_type="aws-cdk-lib.aws_appsync.RdsDataSourceProps",
@@ -25789,6 +25849,12 @@ class EventApi(
25789
25849
 
25790
25850
  return typing.cast(IEventApi, jsii.sinvoke(cls, "fromEventApiAttributes", [scope, id, attrs]))
25791
25851
 
25852
+ @jsii.python.classproperty
25853
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
25854
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
25855
+ '''Uniquely identifies this class.'''
25856
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
25857
+
25792
25858
  @builtins.property
25793
25859
  @jsii.member(jsii_name="apiArn")
25794
25860
  def api_arn(self) -> builtins.str:
@@ -26026,6 +26092,12 @@ class GraphqlApi(
26026
26092
  check_type(argname="argument construct", value=construct, expected_type=type_hints["construct"])
26027
26093
  return typing.cast(builtins.bool, jsii.invoke(self, "addSchemaDependency", [construct]))
26028
26094
 
26095
+ @jsii.python.classproperty
26096
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
26097
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
26098
+ '''Uniquely identifies this class.'''
26099
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
26100
+
26029
26101
  @builtins.property
26030
26102
  @jsii.member(jsii_name="apiId")
26031
26103
  def api_id(self) -> builtins.str:
@@ -16224,6 +16224,12 @@ class LifecycleHook(
16224
16224
 
16225
16225
  jsii.create(self.__class__, self, [scope, id, props])
16226
16226
 
16227
+ @jsii.python.classproperty
16228
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
16229
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
16230
+ '''Uniquely identifies this class.'''
16231
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
16232
+
16227
16233
  @builtins.property
16228
16234
  @jsii.member(jsii_name="lifecycleHookName")
16229
16235
  def lifecycle_hook_name(self) -> builtins.str:
@@ -17661,6 +17667,12 @@ class ScheduledAction(
17661
17667
 
17662
17668
  jsii.create(self.__class__, self, [scope, id, props])
17663
17669
 
17670
+ @jsii.python.classproperty
17671
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
17672
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
17673
+ '''Uniquely identifies this class.'''
17674
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
17675
+
17664
17676
  @builtins.property
17665
17677
  @jsii.member(jsii_name="scheduledActionName")
17666
17678
  def scheduled_action_name(self) -> builtins.str:
@@ -19193,6 +19205,12 @@ class WarmPool(
19193
19205
 
19194
19206
  jsii.create(self.__class__, self, [scope, id, props])
19195
19207
 
19208
+ @jsii.python.classproperty
19209
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
19210
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
19211
+ '''Uniquely identifies this class.'''
19212
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
19213
+
19196
19214
 
19197
19215
  @jsii.data_type(
19198
19216
  jsii_type="aws-cdk-lib.aws_autoscaling.WarmPoolOptions",
@@ -20058,6 +20076,12 @@ class AutoScalingGroup(
20058
20076
 
20059
20077
  return typing.cast(TargetTrackingScalingPolicy, jsii.invoke(self, "scaleToTrackMetric", [id, props]))
20060
20078
 
20079
+ @jsii.python.classproperty
20080
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
20081
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
20082
+ '''Uniquely identifies this class.'''
20083
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
20084
+
20061
20085
  @builtins.property
20062
20086
  @jsii.member(jsii_name="autoScalingGroupArn")
20063
20087
  def auto_scaling_group_arn(self) -> builtins.str:
@@ -1160,6 +1160,12 @@ class BackupSelection(
1160
1160
 
1161
1161
  jsii.create(self.__class__, self, [scope, id, props])
1162
1162
 
1163
+ @jsii.python.classproperty
1164
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
1165
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
1166
+ '''Uniquely identifies this class.'''
1167
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
1168
+
1163
1169
  @builtins.property
1164
1170
  @jsii.member(jsii_name="backupPlanId")
1165
1171
  def backup_plan_id(self) -> builtins.str:
@@ -2183,7 +2189,7 @@ class CfnBackupPlan(
2183
2189
  :param completion_window_minutes: A value in minutes after a backup job is successfully started before it must be completed or it is canceled by AWS Backup .
2184
2190
  :param copy_actions: An array of CopyAction objects, which contains the details of the copy operation.
2185
2191
  :param enable_continuous_backup: Enables continuous backup and point-in-time restores (PITR).
2186
- :param index_actions:
2192
+ :param index_actions: There can up to one IndexAction in each BackupRule, as each backup can have 0 or 1 backup index associated with it. Within the array is ResourceTypes. Only 1 resource type will be accepted for each BackupRule. Valid values: - ``EBS`` for Amazon Elastic Block Store - ``S3`` for Amazon Simple Storage Service (Amazon S3)
2187
2193
  :param lifecycle: The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. AWS Backup transitions and expires backups automatically according to the lifecycle that you define.
2188
2194
  :param recovery_point_tags: The tags to assign to the resources.
2189
2195
  :param schedule_expression: A CRON expression specifying when AWS Backup initiates a backup job.
@@ -2325,7 +2331,13 @@ class CfnBackupPlan(
2325
2331
  def index_actions(
2326
2332
  self,
2327
2333
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnBackupPlan.IndexActionsResourceTypeProperty"]]]]:
2328
- '''
2334
+ '''There can up to one IndexAction in each BackupRule, as each backup can have 0 or 1 backup index associated with it.
2335
+
2336
+ Within the array is ResourceTypes. Only 1 resource type will be accepted for each BackupRule. Valid values:
2337
+
2338
+ - ``EBS`` for Amazon Elastic Block Store
2339
+ - ``S3`` for Amazon Simple Storage Service (Amazon S3)
2340
+
2329
2341
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupruleresourcetype.html#cfn-backup-backupplan-backupruleresourcetype-indexactions
2330
2342
  '''
2331
2343
  result = self._values.get("index_actions")
@@ -2496,8 +2508,9 @@ class CfnBackupPlan(
2496
2508
  *,
2497
2509
  resource_types: typing.Optional[typing.Sequence[builtins.str]] = None,
2498
2510
  ) -> None:
2499
- '''
2500
- :param resource_types:
2511
+ '''Specifies index actions.
2512
+
2513
+ :param resource_types: 0 or 1 index action will be accepted for each BackupRule. Valid values: - ``EBS`` for Amazon Elastic Block Store - ``S3`` for Amazon Simple Storage Service (Amazon S3)
2501
2514
 
2502
2515
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-indexactionsresourcetype.html
2503
2516
  :exampleMetadata: fixture=_generated
@@ -2521,7 +2534,13 @@ class CfnBackupPlan(
2521
2534
 
2522
2535
  @builtins.property
2523
2536
  def resource_types(self) -> typing.Optional[typing.List[builtins.str]]:
2524
- '''
2537
+ '''0 or 1 index action will be accepted for each BackupRule.
2538
+
2539
+ Valid values:
2540
+
2541
+ - ``EBS`` for Amazon Elastic Block Store
2542
+ - ``S3`` for Amazon Simple Storage Service (Amazon S3)
2543
+
2525
2544
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-indexactionsresourcetype.html#cfn-backup-backupplan-indexactionsresourcetype-resourcetypes
2526
2545
  '''
2527
2546
  result = self._values.get("resource_types")
@@ -2557,8 +2576,8 @@ class CfnBackupPlan(
2557
2576
  ) -> None:
2558
2577
  '''Specifies an object containing an array of ``Transition`` objects that determine how long in days before a recovery point transitions to cold storage or is deleted.
2559
2578
 
2560
- :param delete_after_days: Specifies the number of days after creation that a recovery point is deleted. Must be greater than ``MoveToColdStorageAfterDays`` .
2561
- :param move_to_cold_storage_after_days: Specifies the number of days after creation that a recovery point is moved to cold storage.
2579
+ :param delete_after_days: The number of days after creation that a recovery point is deleted. This value must be at least 90 days after the number of days specified in ``MoveToColdStorageAfterDays`` .
2580
+ :param move_to_cold_storage_after_days: The number of days after creation that a recovery point is moved to cold storage.
2562
2581
  :param opt_in_to_archive_for_supported_resources: If the value is true, your backup plan transitions supported resources to archive (cold) storage tier in accordance with your lifecycle settings.
2563
2582
 
2564
2583
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-lifecycleresourcetype.html
@@ -2591,9 +2610,9 @@ class CfnBackupPlan(
2591
2610
 
2592
2611
  @builtins.property
2593
2612
  def delete_after_days(self) -> typing.Optional[jsii.Number]:
2594
- '''Specifies the number of days after creation that a recovery point is deleted.
2613
+ '''The number of days after creation that a recovery point is deleted.
2595
2614
 
2596
- Must be greater than ``MoveToColdStorageAfterDays`` .
2615
+ This value must be at least 90 days after the number of days specified in ``MoveToColdStorageAfterDays`` .
2597
2616
 
2598
2617
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-lifecycleresourcetype.html#cfn-backup-backupplan-lifecycleresourcetype-deleteafterdays
2599
2618
  '''
@@ -2602,7 +2621,7 @@ class CfnBackupPlan(
2602
2621
 
2603
2622
  @builtins.property
2604
2623
  def move_to_cold_storage_after_days(self) -> typing.Optional[jsii.Number]:
2605
- '''Specifies the number of days after creation that a recovery point is moved to cold storage.
2624
+ '''The number of days after creation that a recovery point is moved to cold storage.
2606
2625
 
2607
2626
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-lifecycleresourcetype.html#cfn-backup-backupplan-lifecycleresourcetype-movetocoldstorageafterdays
2608
2627
  '''
@@ -4828,7 +4847,8 @@ class CfnLogicallyAirGappedBackupVault(
4828
4847
  @builtins.property
4829
4848
  @jsii.member(jsii_name="attrBackupVaultArn")
4830
4849
  def attr_backup_vault_arn(self) -> builtins.str:
4831
- '''
4850
+ '''The ARN of the backup vault.
4851
+
4832
4852
  :cloudformationAttribute: BackupVaultArn
4833
4853
  '''
4834
4854
  return typing.cast(builtins.str, jsii.get(self, "attrBackupVaultArn"))
@@ -4836,7 +4856,8 @@ class CfnLogicallyAirGappedBackupVault(
4836
4856
  @builtins.property
4837
4857
  @jsii.member(jsii_name="attrEncryptionKeyArn")
4838
4858
  def attr_encryption_key_arn(self) -> builtins.str:
4839
- '''
4859
+ '''The ARN of the server-side encryption key.
4860
+
4840
4861
  :cloudformationAttribute: EncryptionKeyArn
4841
4862
  '''
4842
4863
  return typing.cast(builtins.str, jsii.get(self, "attrEncryptionKeyArn"))
@@ -4844,7 +4865,10 @@ class CfnLogicallyAirGappedBackupVault(
4844
4865
  @builtins.property
4845
4866
  @jsii.member(jsii_name="attrVaultState")
4846
4867
  def attr_vault_state(self) -> builtins.str:
4847
- '''
4868
+ '''The vault state.
4869
+
4870
+ The possible values are ``CREATING`` , ``AVAILABLE`` , and ``FAILED`` .
4871
+
4848
4872
  :cloudformationAttribute: VaultState
4849
4873
  '''
4850
4874
  return typing.cast(builtins.str, jsii.get(self, "attrVaultState"))
@@ -4852,7 +4876,10 @@ class CfnLogicallyAirGappedBackupVault(
4852
4876
  @builtins.property
4853
4877
  @jsii.member(jsii_name="attrVaultType")
4854
4878
  def attr_vault_type(self) -> builtins.str:
4855
- '''
4879
+ '''The vault type.
4880
+
4881
+ The possible values are ``BACKUP_VAULT`` and ``LOGICALLY_AIR_GAPPED_BACKUP_VAULT`` .
4882
+
4856
4883
  :cloudformationAttribute: VaultType
4857
4884
  '''
4858
4885
  return typing.cast(builtins.str, jsii.get(self, "attrVaultType"))
@@ -7396,6 +7423,12 @@ class BackupPlan(
7396
7423
 
7397
7424
  return typing.cast(BackupSelection, jsii.invoke(self, "addSelection", [id, options]))
7398
7425
 
7426
+ @jsii.python.classproperty
7427
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
7428
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
7429
+ '''Uniquely identifies this class.'''
7430
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
7431
+
7399
7432
  @builtins.property
7400
7433
  @jsii.member(jsii_name="backupPlanArn")
7401
7434
  def backup_plan_arn(self) -> builtins.str:
@@ -7564,6 +7597,12 @@ class BackupVault(
7564
7597
  check_type(argname="argument actions", value=actions, expected_type=typing.Tuple[type_hints["actions"], ...]) # pyright: ignore [reportGeneralTypeIssues]
7565
7598
  return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grant", [grantee, *actions]))
7566
7599
 
7600
+ @jsii.python.classproperty
7601
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
7602
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
7603
+ '''Uniquely identifies this class.'''
7604
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
7605
+
7567
7606
  @builtins.property
7568
7607
  @jsii.member(jsii_name="backupVaultArn")
7569
7608
  def backup_vault_arn(self) -> builtins.str:
@@ -17585,6 +17585,12 @@ class JobQueue(
17585
17585
  check_type(argname="argument order", value=order, expected_type=type_hints["order"])
17586
17586
  return typing.cast(None, jsii.invoke(self, "addComputeEnvironment", [compute_environment, order]))
17587
17587
 
17588
+ @jsii.python.classproperty
17589
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
17590
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
17591
+ '''Uniquely identifies this class.'''
17592
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
17593
+
17588
17594
  @builtins.property
17589
17595
  @jsii.member(jsii_name="computeEnvironments")
17590
17596
  def compute_environments(self) -> typing.List["OrderedComputeEnvironment"]:
@@ -18710,6 +18716,12 @@ class ManagedEc2EcsComputeEnvironment(
18710
18716
  check_type(argname="argument instance_type", value=instance_type, expected_type=type_hints["instance_type"])
18711
18717
  return typing.cast(None, jsii.invoke(self, "addInstanceType", [instance_type]))
18712
18718
 
18719
+ @jsii.python.classproperty
18720
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
18721
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
18722
+ '''Uniquely identifies this class.'''
18723
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
18724
+
18713
18725
  @builtins.property
18714
18726
  @jsii.member(jsii_name="computeEnvironmentArn")
18715
18727
  def compute_environment_arn(self) -> builtins.str:
@@ -19591,6 +19603,12 @@ class ManagedEc2EksComputeEnvironment(
19591
19603
  check_type(argname="argument instance_type", value=instance_type, expected_type=type_hints["instance_type"])
19592
19604
  return typing.cast(None, jsii.invoke(self, "addInstanceType", [instance_type]))
19593
19605
 
19606
+ @jsii.python.classproperty
19607
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
19608
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
19609
+ '''Uniquely identifies this class.'''
19610
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
19611
+
19594
19612
  @builtins.property
19595
19613
  @jsii.member(jsii_name="computeEnvironmentArn")
19596
19614
  def compute_environment_arn(self) -> builtins.str:
@@ -20607,6 +20625,12 @@ class MultiNodeJobDefinition(
20607
20625
  check_type(argname="argument strategy", value=strategy, expected_type=type_hints["strategy"])
20608
20626
  return typing.cast(None, jsii.invoke(self, "addRetryStrategy", [strategy]))
20609
20627
 
20628
+ @jsii.python.classproperty
20629
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
20630
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
20631
+ '''Uniquely identifies this class.'''
20632
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
20633
+
20610
20634
  @builtins.property
20611
20635
  @jsii.member(jsii_name="containers")
20612
20636
  def containers(self) -> typing.List[MultiNodeContainer]:
@@ -22014,6 +22038,12 @@ class UnmanagedComputeEnvironment(
22014
22038
  check_type(argname="argument unmanaged_compute_environment_arn", value=unmanaged_compute_environment_arn, expected_type=type_hints["unmanaged_compute_environment_arn"])
22015
22039
  return typing.cast(IUnmanagedComputeEnvironment, jsii.sinvoke(cls, "fromUnmanagedComputeEnvironmentArn", [scope, id, unmanaged_compute_environment_arn]))
22016
22040
 
22041
+ @jsii.python.classproperty
22042
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
22043
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
22044
+ '''Uniquely identifies this class.'''
22045
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
22046
+
22017
22047
  @builtins.property
22018
22048
  @jsii.member(jsii_name="computeEnvironmentArn")
22019
22049
  def compute_environment_arn(self) -> builtins.str:
@@ -22319,6 +22349,12 @@ class EcsEc2ContainerDefinition(
22319
22349
  check_type(argname="argument volume", value=volume, expected_type=type_hints["volume"])
22320
22350
  return typing.cast(None, jsii.invoke(self, "addVolume", [volume]))
22321
22351
 
22352
+ @jsii.python.classproperty
22353
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
22354
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
22355
+ '''Uniquely identifies this class.'''
22356
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
22357
+
22322
22358
  @builtins.property
22323
22359
  @jsii.member(jsii_name="cpu")
22324
22360
  def cpu(self) -> jsii.Number:
@@ -22549,6 +22585,12 @@ class EcsFargateContainerDefinition(
22549
22585
  check_type(argname="argument volume", value=volume, expected_type=type_hints["volume"])
22550
22586
  return typing.cast(None, jsii.invoke(self, "addVolume", [volume]))
22551
22587
 
22588
+ @jsii.python.classproperty
22589
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
22590
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
22591
+ '''Uniquely identifies this class.'''
22592
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
22593
+
22552
22594
  @builtins.property
22553
22595
  @jsii.member(jsii_name="cpu")
22554
22596
  def cpu(self) -> jsii.Number:
@@ -22817,6 +22859,12 @@ class EcsJobDefinition(
22817
22859
  check_type(argname="argument queue", value=queue, expected_type=type_hints["queue"])
22818
22860
  return typing.cast(None, jsii.invoke(self, "grantSubmitJob", [identity, queue]))
22819
22861
 
22862
+ @jsii.python.classproperty
22863
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
22864
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
22865
+ '''Uniquely identifies this class.'''
22866
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
22867
+
22820
22868
  @builtins.property
22821
22869
  @jsii.member(jsii_name="container")
22822
22870
  def container(self) -> IEcsContainerDefinition:
@@ -23183,6 +23231,12 @@ class EksContainerDefinition(
23183
23231
  check_type(argname="argument volume", value=volume, expected_type=type_hints["volume"])
23184
23232
  return typing.cast(None, jsii.invoke(self, "addVolume", [volume]))
23185
23233
 
23234
+ @jsii.python.classproperty
23235
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
23236
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
23237
+ '''Uniquely identifies this class.'''
23238
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
23239
+
23186
23240
  @builtins.property
23187
23241
  @jsii.member(jsii_name="image")
23188
23242
  def image(self) -> _ContainerImage_94af1b43:
@@ -24256,6 +24310,12 @@ class EksJobDefinition(
24256
24310
  check_type(argname="argument strategy", value=strategy, expected_type=type_hints["strategy"])
24257
24311
  return typing.cast(None, jsii.invoke(self, "addRetryStrategy", [strategy]))
24258
24312
 
24313
+ @jsii.python.classproperty
24314
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
24315
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
24316
+ '''Uniquely identifies this class.'''
24317
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
24318
+
24259
24319
  @builtins.property
24260
24320
  @jsii.member(jsii_name="container")
24261
24321
  def container(self) -> EksContainerDefinition:
@@ -24445,6 +24505,12 @@ class FairshareSchedulingPolicy(
24445
24505
 
24446
24506
  return typing.cast(None, jsii.invoke(self, "addShare", [share]))
24447
24507
 
24508
+ @jsii.python.classproperty
24509
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
24510
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
24511
+ '''Uniquely identifies this class.'''
24512
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
24513
+
24448
24514
  @builtins.property
24449
24515
  @jsii.member(jsii_name="schedulingPolicyArn")
24450
24516
  def scheduling_policy_arn(self) -> builtins.str:
@@ -24606,6 +24672,12 @@ class FargateComputeEnvironment(
24606
24672
  check_type(argname="argument fargate_compute_environment_arn", value=fargate_compute_environment_arn, expected_type=type_hints["fargate_compute_environment_arn"])
24607
24673
  return typing.cast(IFargateComputeEnvironment, jsii.sinvoke(cls, "fromFargateComputeEnvironmentArn", [scope, id, fargate_compute_environment_arn]))
24608
24674
 
24675
+ @jsii.python.classproperty
24676
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
24677
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
24678
+ '''Uniquely identifies this class.'''
24679
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
24680
+
24609
24681
  @builtins.property
24610
24682
  @jsii.member(jsii_name="computeEnvironmentArn")
24611
24683
  def compute_environment_arn(self) -> builtins.str: