aws-cdk-lib 2.218.0__py3-none-any.whl → 2.219.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 (35) hide show
  1. aws_cdk/__init__.py +19 -19
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.218.0.jsii.tgz → aws-cdk-lib@2.219.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amazonmq/__init__.py +98 -87
  5. aws_cdk/aws_apigateway/__init__.py +39 -0
  6. aws_cdk/aws_bcmdataexports/__init__.py +9 -0
  7. aws_cdk/aws_bedrock/__init__.py +356 -1
  8. aws_cdk/aws_bedrockagentcore/__init__.py +297 -157
  9. aws_cdk/aws_codebuild/__init__.py +339 -62
  10. aws_cdk/aws_connect/__init__.py +9 -9
  11. aws_cdk/aws_cur/__init__.py +5 -3
  12. aws_cdk/aws_datasync/__init__.py +44 -22
  13. aws_cdk/aws_datazone/__init__.py +35 -33
  14. aws_cdk/aws_directoryservice/__init__.py +0 -29
  15. aws_cdk/aws_dms/__init__.py +3 -5
  16. aws_cdk/aws_ec2/__init__.py +2622 -22
  17. aws_cdk/aws_ecs/__init__.py +2681 -79
  18. aws_cdk/aws_entityresolution/__init__.py +18 -0
  19. aws_cdk/aws_greengrassv2/__init__.py +29 -0
  20. aws_cdk/aws_msk/__init__.py +4 -2
  21. aws_cdk/aws_networkfirewall/__init__.py +6 -2
  22. aws_cdk/aws_networkmanager/__init__.py +29 -29
  23. aws_cdk/aws_opensearchservice/__init__.py +58 -0
  24. aws_cdk/aws_opsworkscm/__init__.py +0 -29
  25. aws_cdk/aws_quicksight/__init__.py +38 -0
  26. aws_cdk/aws_rds/__init__.py +33 -14
  27. aws_cdk/aws_route53/__init__.py +8 -2
  28. aws_cdk/aws_servicecatalog/__init__.py +78 -86
  29. aws_cdk/aws_smsvoice/__init__.py +319 -0
  30. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/METADATA +2 -2
  31. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/RECORD +35 -35
  32. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/LICENSE +0 -0
  33. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/NOTICE +0 -0
  34. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/WHEEL +0 -0
  35. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/top_level.txt +0 -0
@@ -152,12 +152,12 @@ class CfnBrowserCustomProps:
152
152
  ) -> None:
153
153
  '''Properties for defining a ``CfnBrowserCustom``.
154
154
 
155
- :param name: The name of the browser.
156
- :param network_configuration: Network configuration for browser.
157
- :param description: The description of the browser.
158
- :param execution_role_arn: The Amazon Resource Name (ARN) of the IAM role.
159
- :param recording_config: Recording configuration for browser.
160
- :param tags: A map of tag keys and values.
155
+ :param name: The name of the custom browser.
156
+ :param network_configuration: The network configuration for a code interpreter. This structure defines how the code interpreter connects to the network.
157
+ :param description: The custom browser.
158
+ :param execution_role_arn: The Amazon Resource Name (ARN) of the execution role.
159
+ :param recording_config: THe custom browser configuration.
160
+ :param tags: The tags for the custom browser.
161
161
 
162
162
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html
163
163
  :exampleMetadata: fixture=_generated
@@ -212,7 +212,7 @@ class CfnBrowserCustomProps:
212
212
 
213
213
  @builtins.property
214
214
  def name(self) -> builtins.str:
215
- '''The name of the browser.
215
+ '''The name of the custom browser.
216
216
 
217
217
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-name
218
218
  '''
@@ -224,7 +224,9 @@ class CfnBrowserCustomProps:
224
224
  def network_configuration(
225
225
  self,
226
226
  ) -> typing.Union[_IResolvable_da3f097b, "CfnBrowserCustom.BrowserNetworkConfigurationProperty"]:
227
- '''Network configuration for browser.
227
+ '''The network configuration for a code interpreter.
228
+
229
+ This structure defines how the code interpreter connects to the network.
228
230
 
229
231
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-networkconfiguration
230
232
  '''
@@ -234,7 +236,7 @@ class CfnBrowserCustomProps:
234
236
 
235
237
  @builtins.property
236
238
  def description(self) -> typing.Optional[builtins.str]:
237
- '''The description of the browser.
239
+ '''The custom browser.
238
240
 
239
241
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-description
240
242
  '''
@@ -243,7 +245,7 @@ class CfnBrowserCustomProps:
243
245
 
244
246
  @builtins.property
245
247
  def execution_role_arn(self) -> typing.Optional[builtins.str]:
246
- '''The Amazon Resource Name (ARN) of the IAM role.
248
+ '''The Amazon Resource Name (ARN) of the execution role.
247
249
 
248
250
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-executionrolearn
249
251
  '''
@@ -254,7 +256,7 @@ class CfnBrowserCustomProps:
254
256
  def recording_config(
255
257
  self,
256
258
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnBrowserCustom.RecordingConfigProperty"]]:
257
- '''Recording configuration for browser.
259
+ '''THe custom browser configuration.
258
260
 
259
261
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-recordingconfig
260
262
  '''
@@ -263,7 +265,7 @@ class CfnBrowserCustomProps:
263
265
 
264
266
  @builtins.property
265
267
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
266
- '''A map of tag keys and values.
268
+ '''The tags for the custom browser.
267
269
 
268
270
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-tags
269
271
  '''
@@ -305,11 +307,11 @@ class CfnCodeInterpreterCustomProps:
305
307
  ) -> None:
306
308
  '''Properties for defining a ``CfnCodeInterpreterCustom``.
307
309
 
308
- :param name: The name of the sandbox.
309
- :param network_configuration: Network configuration for code interpreter.
310
- :param description: Description of the code interpreter.
311
- :param execution_role_arn: The ARN of the IAM role.
312
- :param tags: A map of tag keys and values.
310
+ :param name: The name of the code interpreter.
311
+ :param network_configuration: The network configuration for a code interpreter. This structure defines how the code interpreter connects to the network.
312
+ :param description: The code interpreter description.
313
+ :param execution_role_arn: The Amazon Resource Name (ARN) of the execution role.
314
+ :param tags: The tags for the code interpreter.
313
315
 
314
316
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html
315
317
  :exampleMetadata: fixture=_generated
@@ -354,7 +356,7 @@ class CfnCodeInterpreterCustomProps:
354
356
 
355
357
  @builtins.property
356
358
  def name(self) -> builtins.str:
357
- '''The name of the sandbox.
359
+ '''The name of the code interpreter.
358
360
 
359
361
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-name
360
362
  '''
@@ -366,7 +368,9 @@ class CfnCodeInterpreterCustomProps:
366
368
  def network_configuration(
367
369
  self,
368
370
  ) -> typing.Union[_IResolvable_da3f097b, "CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty"]:
369
- '''Network configuration for code interpreter.
371
+ '''The network configuration for a code interpreter.
372
+
373
+ This structure defines how the code interpreter connects to the network.
370
374
 
371
375
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-networkconfiguration
372
376
  '''
@@ -376,7 +380,7 @@ class CfnCodeInterpreterCustomProps:
376
380
 
377
381
  @builtins.property
378
382
  def description(self) -> typing.Optional[builtins.str]:
379
- '''Description of the code interpreter.
383
+ '''The code interpreter description.
380
384
 
381
385
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-description
382
386
  '''
@@ -385,7 +389,7 @@ class CfnCodeInterpreterCustomProps:
385
389
 
386
390
  @builtins.property
387
391
  def execution_role_arn(self) -> typing.Optional[builtins.str]:
388
- '''The ARN of the IAM role.
392
+ '''The Amazon Resource Name (ARN) of the execution role.
389
393
 
390
394
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-executionrolearn
391
395
  '''
@@ -394,7 +398,7 @@ class CfnCodeInterpreterCustomProps:
394
398
 
395
399
  @builtins.property
396
400
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
397
- '''A map of tag keys and values.
401
+ '''The tags for the code interpreter.
398
402
 
399
403
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-tags
400
404
  '''
@@ -436,11 +440,11 @@ class CfnRuntimeEndpointProps:
436
440
  ) -> None:
437
441
  '''Properties for defining a ``CfnRuntimeEndpoint``.
438
442
 
439
- :param agent_runtime_id: The ID of the parent Agent Runtime.
440
- :param name:
441
- :param agent_runtime_version:
442
- :param description:
443
- :param tags: A map of tag keys and values.
443
+ :param agent_runtime_id: The agent runtime ID.
444
+ :param name: The name of the AgentCore Runtime endpoint.
445
+ :param agent_runtime_version: The version of the agent.
446
+ :param description: Contains information about an agent runtime endpoint. An agent runtime is the execution environment for a Amazon Bedrock Agent.
447
+ :param tags: The tags for the AgentCore Runtime endpoint.
444
448
 
445
449
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html
446
450
  :exampleMetadata: fixture=_generated
@@ -483,7 +487,7 @@ class CfnRuntimeEndpointProps:
483
487
 
484
488
  @builtins.property
485
489
  def agent_runtime_id(self) -> builtins.str:
486
- '''The ID of the parent Agent Runtime.
490
+ '''The agent runtime ID.
487
491
 
488
492
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-agentruntimeid
489
493
  '''
@@ -493,7 +497,8 @@ class CfnRuntimeEndpointProps:
493
497
 
494
498
  @builtins.property
495
499
  def name(self) -> builtins.str:
496
- '''
500
+ '''The name of the AgentCore Runtime endpoint.
501
+
497
502
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-name
498
503
  '''
499
504
  result = self._values.get("name")
@@ -502,7 +507,8 @@ class CfnRuntimeEndpointProps:
502
507
 
503
508
  @builtins.property
504
509
  def agent_runtime_version(self) -> typing.Optional[builtins.str]:
505
- '''
510
+ '''The version of the agent.
511
+
506
512
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-agentruntimeversion
507
513
  '''
508
514
  result = self._values.get("agent_runtime_version")
@@ -510,7 +516,10 @@ class CfnRuntimeEndpointProps:
510
516
 
511
517
  @builtins.property
512
518
  def description(self) -> typing.Optional[builtins.str]:
513
- '''
519
+ '''Contains information about an agent runtime endpoint.
520
+
521
+ An agent runtime is the execution environment for a Amazon Bedrock Agent.
522
+
514
523
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-description
515
524
  '''
516
525
  result = self._values.get("description")
@@ -518,7 +527,7 @@ class CfnRuntimeEndpointProps:
518
527
 
519
528
  @builtins.property
520
529
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
521
- '''A map of tag keys and values.
530
+ '''The tags for the AgentCore Runtime endpoint.
522
531
 
523
532
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-tags
524
533
  '''
@@ -568,15 +577,15 @@ class CfnRuntimeProps:
568
577
  ) -> None:
569
578
  '''Properties for defining a ``CfnRuntime``.
570
579
 
571
- :param agent_runtime_artifact:
572
- :param agent_runtime_name:
573
- :param network_configuration:
574
- :param role_arn:
575
- :param authorizer_configuration: Configuration for the authorizer.
576
- :param description:
577
- :param environment_variables: Environment variable attributes.
578
- :param protocol_configuration:
579
- :param tags: A map of tag keys and values.
580
+ :param agent_runtime_artifact: The artifact of the agent.
581
+ :param agent_runtime_name: The name of the AgentCore Runtime endpoint.
582
+ :param network_configuration: The network configuration.
583
+ :param role_arn: The Amazon Resource Name (ARN) for for the role.
584
+ :param authorizer_configuration: Represents inbound authorization configuration options used to authenticate incoming requests.
585
+ :param description: The agent runtime description.
586
+ :param environment_variables: The environment variables for the agent.
587
+ :param protocol_configuration: The protocol configuration for an agent runtime. This structure defines how the agent runtime communicates with clients.
588
+ :param tags: The tags for the agent.
580
589
 
581
590
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html
582
591
  :exampleMetadata: fixture=_generated
@@ -651,7 +660,8 @@ class CfnRuntimeProps:
651
660
  def agent_runtime_artifact(
652
661
  self,
653
662
  ) -> typing.Union[_IResolvable_da3f097b, "CfnRuntime.AgentRuntimeArtifactProperty"]:
654
- '''
663
+ '''The artifact of the agent.
664
+
655
665
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-agentruntimeartifact
656
666
  '''
657
667
  result = self._values.get("agent_runtime_artifact")
@@ -660,7 +670,8 @@ class CfnRuntimeProps:
660
670
 
661
671
  @builtins.property
662
672
  def agent_runtime_name(self) -> builtins.str:
663
- '''
673
+ '''The name of the AgentCore Runtime endpoint.
674
+
664
675
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-agentruntimename
665
676
  '''
666
677
  result = self._values.get("agent_runtime_name")
@@ -671,7 +682,8 @@ class CfnRuntimeProps:
671
682
  def network_configuration(
672
683
  self,
673
684
  ) -> typing.Union[_IResolvable_da3f097b, "CfnRuntime.NetworkConfigurationProperty"]:
674
- '''
685
+ '''The network configuration.
686
+
675
687
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-networkconfiguration
676
688
  '''
677
689
  result = self._values.get("network_configuration")
@@ -680,7 +692,8 @@ class CfnRuntimeProps:
680
692
 
681
693
  @builtins.property
682
694
  def role_arn(self) -> builtins.str:
683
- '''
695
+ '''The Amazon Resource Name (ARN) for for the role.
696
+
684
697
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-rolearn
685
698
  '''
686
699
  result = self._values.get("role_arn")
@@ -691,7 +704,7 @@ class CfnRuntimeProps:
691
704
  def authorizer_configuration(
692
705
  self,
693
706
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRuntime.AuthorizerConfigurationProperty"]]:
694
- '''Configuration for the authorizer.
707
+ '''Represents inbound authorization configuration options used to authenticate incoming requests.
695
708
 
696
709
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-authorizerconfiguration
697
710
  '''
@@ -700,7 +713,8 @@ class CfnRuntimeProps:
700
713
 
701
714
  @builtins.property
702
715
  def description(self) -> typing.Optional[builtins.str]:
703
- '''
716
+ '''The agent runtime description.
717
+
704
718
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-description
705
719
  '''
706
720
  result = self._values.get("description")
@@ -710,7 +724,7 @@ class CfnRuntimeProps:
710
724
  def environment_variables(
711
725
  self,
712
726
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
713
- '''Environment variable attributes.
727
+ '''The environment variables for the agent.
714
728
 
715
729
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-environmentvariables
716
730
  '''
@@ -719,7 +733,10 @@ class CfnRuntimeProps:
719
733
 
720
734
  @builtins.property
721
735
  def protocol_configuration(self) -> typing.Optional[builtins.str]:
722
- '''
736
+ '''The protocol configuration for an agent runtime.
737
+
738
+ This structure defines how the agent runtime communicates with clients.
739
+
723
740
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-protocolconfiguration
724
741
  '''
725
742
  result = self._values.get("protocol_configuration")
@@ -727,7 +744,7 @@ class CfnRuntimeProps:
727
744
 
728
745
  @builtins.property
729
746
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
730
- '''A map of tag keys and values.
747
+ '''The tags for the agent.
731
748
 
732
749
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-tags
733
750
  '''
@@ -1062,7 +1079,15 @@ class CfnBrowserCustom(
1062
1079
  metaclass=jsii.JSIIMeta,
1063
1080
  jsii_type="aws-cdk-lib.aws_bedrockagentcore.CfnBrowserCustom",
1064
1081
  ):
1065
- '''Resource definition for AWS::BedrockAgentCore::BrowserCustom.
1082
+ '''.. epigraph::
1083
+
1084
+ Amazon Bedrock AgentCore is in preview release and is subject to change.
1085
+
1086
+ AgentCore Browser tool provides a fast, secure, cloud-based browser runtime to enable AI agents to interact with websites at scale.
1087
+
1088
+ For more information about using the custom browser, see `Interact with web applications using Amazon Bedrock AgentCore Browser <https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/browser-tool.html>`_ .
1089
+
1090
+ See the *Properties* section below for descriptions of both the required and optional properties.
1066
1091
 
1067
1092
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html
1068
1093
  :cloudformationResource: AWS::BedrockAgentCore::BrowserCustom
@@ -1111,12 +1136,12 @@ class CfnBrowserCustom(
1111
1136
  '''
1112
1137
  :param scope: Scope in which this resource is defined.
1113
1138
  :param id: Construct identifier for this resource (unique in its scope).
1114
- :param name: The name of the browser.
1115
- :param network_configuration: Network configuration for browser.
1116
- :param description: The description of the browser.
1117
- :param execution_role_arn: The Amazon Resource Name (ARN) of the IAM role.
1118
- :param recording_config: Recording configuration for browser.
1119
- :param tags: A map of tag keys and values.
1139
+ :param name: The name of the custom browser.
1140
+ :param network_configuration: The network configuration for a code interpreter. This structure defines how the code interpreter connects to the network.
1141
+ :param description: The custom browser.
1142
+ :param execution_role_arn: The Amazon Resource Name (ARN) of the execution role.
1143
+ :param recording_config: THe custom browser configuration.
1144
+ :param tags: The tags for the custom browser.
1120
1145
  '''
1121
1146
  if __debug__:
1122
1147
  type_hints = typing.get_type_hints(_typecheckingstub__e817ad5ee6496ab54cf569758c4d73da62a4d6f5cf0c34866960f6e4677343e1)
@@ -1133,6 +1158,27 @@ class CfnBrowserCustom(
1133
1158
 
1134
1159
  jsii.create(self.__class__, self, [scope, id, props])
1135
1160
 
1161
+ @jsii.member(jsii_name="fromBrowserId")
1162
+ @builtins.classmethod
1163
+ def from_browser_id(
1164
+ cls,
1165
+ scope: _constructs_77d1e7e8.Construct,
1166
+ id: builtins.str,
1167
+ browser_id: builtins.str,
1168
+ ) -> IBrowserCustomRef:
1169
+ '''Creates a new IBrowserCustomRef from a browserId.
1170
+
1171
+ :param scope: -
1172
+ :param id: -
1173
+ :param browser_id: -
1174
+ '''
1175
+ if __debug__:
1176
+ type_hints = typing.get_type_hints(_typecheckingstub__1a5d38dc7619d36a2a4f39c13ec237b55f560a41ac9a162b787880e8e6ba2f47)
1177
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
1178
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1179
+ check_type(argname="argument browser_id", value=browser_id, expected_type=type_hints["browser_id"])
1180
+ return typing.cast(IBrowserCustomRef, jsii.sinvoke(cls, "fromBrowserId", [scope, id, browser_id]))
1181
+
1136
1182
  @jsii.member(jsii_name="inspect")
1137
1183
  def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
1138
1184
  '''Examines the CloudFormation resource and discloses attributes.
@@ -1166,7 +1212,7 @@ class CfnBrowserCustom(
1166
1212
  @builtins.property
1167
1213
  @jsii.member(jsii_name="attrBrowserArn")
1168
1214
  def attr_browser_arn(self) -> builtins.str:
1169
- '''The ARN of a Browser resource.
1215
+ '''The ARN for the custom browser.
1170
1216
 
1171
1217
  :cloudformationAttribute: BrowserArn
1172
1218
  '''
@@ -1175,7 +1221,7 @@ class CfnBrowserCustom(
1175
1221
  @builtins.property
1176
1222
  @jsii.member(jsii_name="attrBrowserId")
1177
1223
  def attr_browser_id(self) -> builtins.str:
1178
- '''The id of the browser.
1224
+ '''The ID for the custom browser.
1179
1225
 
1180
1226
  :cloudformationAttribute: BrowserId
1181
1227
  '''
@@ -1184,7 +1230,7 @@ class CfnBrowserCustom(
1184
1230
  @builtins.property
1185
1231
  @jsii.member(jsii_name="attrCreatedAt")
1186
1232
  def attr_created_at(self) -> builtins.str:
1187
- '''Timestamp when the browser was created.
1233
+ '''The time at which the custom browser was created.
1188
1234
 
1189
1235
  :cloudformationAttribute: CreatedAt
1190
1236
  '''
@@ -1193,7 +1239,7 @@ class CfnBrowserCustom(
1193
1239
  @builtins.property
1194
1240
  @jsii.member(jsii_name="attrLastUpdatedAt")
1195
1241
  def attr_last_updated_at(self) -> builtins.str:
1196
- '''Timestamp when the browser was last updated.
1242
+ '''The time at which the custom browser was last updated.
1197
1243
 
1198
1244
  :cloudformationAttribute: LastUpdatedAt
1199
1245
  '''
@@ -1202,7 +1248,7 @@ class CfnBrowserCustom(
1202
1248
  @builtins.property
1203
1249
  @jsii.member(jsii_name="attrStatus")
1204
1250
  def attr_status(self) -> builtins.str:
1205
- '''Status of browser.
1251
+ '''The status of the custom browser.
1206
1252
 
1207
1253
  :cloudformationAttribute: Status
1208
1254
  '''
@@ -1228,7 +1274,7 @@ class CfnBrowserCustom(
1228
1274
  @builtins.property
1229
1275
  @jsii.member(jsii_name="name")
1230
1276
  def name(self) -> builtins.str:
1231
- '''The name of the browser.'''
1277
+ '''The name of the custom browser.'''
1232
1278
  return typing.cast(builtins.str, jsii.get(self, "name"))
1233
1279
 
1234
1280
  @name.setter
@@ -1243,7 +1289,7 @@ class CfnBrowserCustom(
1243
1289
  def network_configuration(
1244
1290
  self,
1245
1291
  ) -> typing.Union[_IResolvable_da3f097b, "CfnBrowserCustom.BrowserNetworkConfigurationProperty"]:
1246
- '''Network configuration for browser.'''
1292
+ '''The network configuration for a code interpreter.'''
1247
1293
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnBrowserCustom.BrowserNetworkConfigurationProperty"], jsii.get(self, "networkConfiguration"))
1248
1294
 
1249
1295
  @network_configuration.setter
@@ -1259,7 +1305,7 @@ class CfnBrowserCustom(
1259
1305
  @builtins.property
1260
1306
  @jsii.member(jsii_name="description")
1261
1307
  def description(self) -> typing.Optional[builtins.str]:
1262
- '''The description of the browser.'''
1308
+ '''The custom browser.'''
1263
1309
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
1264
1310
 
1265
1311
  @description.setter
@@ -1272,7 +1318,7 @@ class CfnBrowserCustom(
1272
1318
  @builtins.property
1273
1319
  @jsii.member(jsii_name="executionRoleArn")
1274
1320
  def execution_role_arn(self) -> typing.Optional[builtins.str]:
1275
- '''The Amazon Resource Name (ARN) of the IAM role.'''
1321
+ '''The Amazon Resource Name (ARN) of the execution role.'''
1276
1322
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "executionRoleArn"))
1277
1323
 
1278
1324
  @execution_role_arn.setter
@@ -1287,7 +1333,7 @@ class CfnBrowserCustom(
1287
1333
  def recording_config(
1288
1334
  self,
1289
1335
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnBrowserCustom.RecordingConfigProperty"]]:
1290
- '''Recording configuration for browser.'''
1336
+ '''THe custom browser configuration.'''
1291
1337
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnBrowserCustom.RecordingConfigProperty"]], jsii.get(self, "recordingConfig"))
1292
1338
 
1293
1339
  @recording_config.setter
@@ -1303,7 +1349,7 @@ class CfnBrowserCustom(
1303
1349
  @builtins.property
1304
1350
  @jsii.member(jsii_name="tags")
1305
1351
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
1306
- '''A map of tag keys and values.'''
1352
+ '''The tags for the custom browser.'''
1307
1353
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
1308
1354
 
1309
1355
  @tags.setter
@@ -1323,9 +1369,9 @@ class CfnBrowserCustom(
1323
1369
  )
1324
1370
  class BrowserNetworkConfigurationProperty:
1325
1371
  def __init__(self, *, network_mode: builtins.str) -> None:
1326
- '''Network configuration for browser.
1372
+ '''The network configuration.
1327
1373
 
1328
- :param network_mode: Network modes supported by browser.
1374
+ :param network_mode: The network mode.
1329
1375
 
1330
1376
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkconfiguration.html
1331
1377
  :exampleMetadata: fixture=_generated
@@ -1349,7 +1395,7 @@ class CfnBrowserCustom(
1349
1395
 
1350
1396
  @builtins.property
1351
1397
  def network_mode(self) -> builtins.str:
1352
- '''Network modes supported by browser.
1398
+ '''The network mode.
1353
1399
 
1354
1400
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkconfiguration.html#cfn-bedrockagentcore-browsercustom-browsernetworkconfiguration-networkmode
1355
1401
  '''
@@ -1380,10 +1426,10 @@ class CfnBrowserCustom(
1380
1426
  enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1381
1427
  s3_location: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnBrowserCustom.S3LocationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1382
1428
  ) -> None:
1383
- '''Recording configuration for browser.
1429
+ '''The recording configuration.
1384
1430
 
1385
- :param enabled: Default: - false
1386
- :param s3_location: S3 Location Configuration.
1431
+ :param enabled: The recording configuration for a browser. This structure defines how browser sessions are recorded. Default: - false
1432
+ :param s3_location: The S3 location.
1387
1433
 
1388
1434
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-recordingconfig.html
1389
1435
  :exampleMetadata: fixture=_generated
@@ -1416,7 +1462,10 @@ class CfnBrowserCustom(
1416
1462
  def enabled(
1417
1463
  self,
1418
1464
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
1419
- '''
1465
+ '''The recording configuration for a browser.
1466
+
1467
+ This structure defines how browser sessions are recorded.
1468
+
1420
1469
  :default: - false
1421
1470
 
1422
1471
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-recordingconfig.html#cfn-bedrockagentcore-browsercustom-recordingconfig-enabled
@@ -1428,7 +1477,7 @@ class CfnBrowserCustom(
1428
1477
  def s3_location(
1429
1478
  self,
1430
1479
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnBrowserCustom.S3LocationProperty"]]:
1431
- '''S3 Location Configuration.
1480
+ '''The S3 location.
1432
1481
 
1433
1482
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-recordingconfig.html#cfn-bedrockagentcore-browsercustom-recordingconfig-s3location
1434
1483
  '''
@@ -1453,10 +1502,10 @@ class CfnBrowserCustom(
1453
1502
  )
1454
1503
  class S3LocationProperty:
1455
1504
  def __init__(self, *, bucket: builtins.str, prefix: builtins.str) -> None:
1456
- '''S3 Location Configuration.
1505
+ '''The S3 location.
1457
1506
 
1458
- :param bucket:
1459
- :param prefix:
1507
+ :param bucket: The S3 location bucket name.
1508
+ :param prefix: The S3 location object prefix.
1460
1509
 
1461
1510
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-s3location.html
1462
1511
  :exampleMetadata: fixture=_generated
@@ -1483,7 +1532,8 @@ class CfnBrowserCustom(
1483
1532
 
1484
1533
  @builtins.property
1485
1534
  def bucket(self) -> builtins.str:
1486
- '''
1535
+ '''The S3 location bucket name.
1536
+
1487
1537
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-s3location.html#cfn-bedrockagentcore-browsercustom-s3location-bucket
1488
1538
  '''
1489
1539
  result = self._values.get("bucket")
@@ -1492,7 +1542,8 @@ class CfnBrowserCustom(
1492
1542
 
1493
1543
  @builtins.property
1494
1544
  def prefix(self) -> builtins.str:
1495
- '''
1545
+ '''The S3 location object prefix.
1546
+
1496
1547
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-s3location.html#cfn-bedrockagentcore-browsercustom-s3location-prefix
1497
1548
  '''
1498
1549
  result = self._values.get("prefix")
@@ -1517,7 +1568,15 @@ class CfnCodeInterpreterCustom(
1517
1568
  metaclass=jsii.JSIIMeta,
1518
1569
  jsii_type="aws-cdk-lib.aws_bedrockagentcore.CfnCodeInterpreterCustom",
1519
1570
  ):
1520
- '''Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom.
1571
+ '''.. epigraph::
1572
+
1573
+ Amazon Bedrock AgentCore is in preview release and is subject to change.
1574
+
1575
+ The AgentCore Code Interpreter tool enables agents to securely execute code in isolated sandbox environments. It offers advanced configuration support and seamless integration with popular frameworks.
1576
+
1577
+ For more information about using the custom code interpreter, see `Execute code and analyze data using Amazon Bedrock AgentCore Code Interpreter <https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/code-interpreter-tool.html>`_ .
1578
+
1579
+ See the *Properties* section below for descriptions of both the required and optional properties.
1521
1580
 
1522
1581
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html
1523
1582
  :cloudformationResource: AWS::BedrockAgentCore::CodeInterpreterCustom
@@ -1558,11 +1617,11 @@ class CfnCodeInterpreterCustom(
1558
1617
  '''
1559
1618
  :param scope: Scope in which this resource is defined.
1560
1619
  :param id: Construct identifier for this resource (unique in its scope).
1561
- :param name: The name of the sandbox.
1562
- :param network_configuration: Network configuration for code interpreter.
1563
- :param description: Description of the code interpreter.
1564
- :param execution_role_arn: The ARN of the IAM role.
1565
- :param tags: A map of tag keys and values.
1620
+ :param name: The name of the code interpreter.
1621
+ :param network_configuration: The network configuration for a code interpreter. This structure defines how the code interpreter connects to the network.
1622
+ :param description: The code interpreter description.
1623
+ :param execution_role_arn: The Amazon Resource Name (ARN) of the execution role.
1624
+ :param tags: The tags for the code interpreter.
1566
1625
  '''
1567
1626
  if __debug__:
1568
1627
  type_hints = typing.get_type_hints(_typecheckingstub__1aaa167a6af98d626969b5bd2de9377658de4e8d04df0b48dc5916f9e503a029)
@@ -1578,6 +1637,27 @@ class CfnCodeInterpreterCustom(
1578
1637
 
1579
1638
  jsii.create(self.__class__, self, [scope, id, props])
1580
1639
 
1640
+ @jsii.member(jsii_name="fromCodeInterpreterId")
1641
+ @builtins.classmethod
1642
+ def from_code_interpreter_id(
1643
+ cls,
1644
+ scope: _constructs_77d1e7e8.Construct,
1645
+ id: builtins.str,
1646
+ code_interpreter_id: builtins.str,
1647
+ ) -> ICodeInterpreterCustomRef:
1648
+ '''Creates a new ICodeInterpreterCustomRef from a codeInterpreterId.
1649
+
1650
+ :param scope: -
1651
+ :param id: -
1652
+ :param code_interpreter_id: -
1653
+ '''
1654
+ if __debug__:
1655
+ type_hints = typing.get_type_hints(_typecheckingstub__d2e6193c6a8378455a4decc0c525a09a78674fd7ad426e58017e57035bc1789a)
1656
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
1657
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1658
+ check_type(argname="argument code_interpreter_id", value=code_interpreter_id, expected_type=type_hints["code_interpreter_id"])
1659
+ return typing.cast(ICodeInterpreterCustomRef, jsii.sinvoke(cls, "fromCodeInterpreterId", [scope, id, code_interpreter_id]))
1660
+
1581
1661
  @jsii.member(jsii_name="inspect")
1582
1662
  def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
1583
1663
  '''Examines the CloudFormation resource and discloses attributes.
@@ -1611,7 +1691,7 @@ class CfnCodeInterpreterCustom(
1611
1691
  @builtins.property
1612
1692
  @jsii.member(jsii_name="attrCodeInterpreterArn")
1613
1693
  def attr_code_interpreter_arn(self) -> builtins.str:
1614
- '''The ARN of a CodeInterpreter resource.
1694
+ '''The code interpreter Amazon Resource Name (ARN).
1615
1695
 
1616
1696
  :cloudformationAttribute: CodeInterpreterArn
1617
1697
  '''
@@ -1620,7 +1700,7 @@ class CfnCodeInterpreterCustom(
1620
1700
  @builtins.property
1621
1701
  @jsii.member(jsii_name="attrCodeInterpreterId")
1622
1702
  def attr_code_interpreter_id(self) -> builtins.str:
1623
- '''The id of the code interpreter.
1703
+ '''The ID of the code interpreter.
1624
1704
 
1625
1705
  :cloudformationAttribute: CodeInterpreterId
1626
1706
  '''
@@ -1629,7 +1709,7 @@ class CfnCodeInterpreterCustom(
1629
1709
  @builtins.property
1630
1710
  @jsii.member(jsii_name="attrCreatedAt")
1631
1711
  def attr_created_at(self) -> builtins.str:
1632
- '''Timestamp when the code interpreter was created.
1712
+ '''The time at which the code interpreter was created.
1633
1713
 
1634
1714
  :cloudformationAttribute: CreatedAt
1635
1715
  '''
@@ -1638,7 +1718,7 @@ class CfnCodeInterpreterCustom(
1638
1718
  @builtins.property
1639
1719
  @jsii.member(jsii_name="attrLastUpdatedAt")
1640
1720
  def attr_last_updated_at(self) -> builtins.str:
1641
- '''Timestamp when the code interpreter was last updated.
1721
+ '''The time at which the code interpreter was last updated.
1642
1722
 
1643
1723
  :cloudformationAttribute: LastUpdatedAt
1644
1724
  '''
@@ -1647,7 +1727,7 @@ class CfnCodeInterpreterCustom(
1647
1727
  @builtins.property
1648
1728
  @jsii.member(jsii_name="attrStatus")
1649
1729
  def attr_status(self) -> builtins.str:
1650
- '''Status of Code interpreter.
1730
+ '''The status of the custom code interpreter.
1651
1731
 
1652
1732
  :cloudformationAttribute: Status
1653
1733
  '''
@@ -1673,7 +1753,7 @@ class CfnCodeInterpreterCustom(
1673
1753
  @builtins.property
1674
1754
  @jsii.member(jsii_name="name")
1675
1755
  def name(self) -> builtins.str:
1676
- '''The name of the sandbox.'''
1756
+ '''The name of the code interpreter.'''
1677
1757
  return typing.cast(builtins.str, jsii.get(self, "name"))
1678
1758
 
1679
1759
  @name.setter
@@ -1688,7 +1768,7 @@ class CfnCodeInterpreterCustom(
1688
1768
  def network_configuration(
1689
1769
  self,
1690
1770
  ) -> typing.Union[_IResolvable_da3f097b, "CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty"]:
1691
- '''Network configuration for code interpreter.'''
1771
+ '''The network configuration for a code interpreter.'''
1692
1772
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty"], jsii.get(self, "networkConfiguration"))
1693
1773
 
1694
1774
  @network_configuration.setter
@@ -1704,7 +1784,7 @@ class CfnCodeInterpreterCustom(
1704
1784
  @builtins.property
1705
1785
  @jsii.member(jsii_name="description")
1706
1786
  def description(self) -> typing.Optional[builtins.str]:
1707
- '''Description of the code interpreter.'''
1787
+ '''The code interpreter description.'''
1708
1788
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
1709
1789
 
1710
1790
  @description.setter
@@ -1717,7 +1797,7 @@ class CfnCodeInterpreterCustom(
1717
1797
  @builtins.property
1718
1798
  @jsii.member(jsii_name="executionRoleArn")
1719
1799
  def execution_role_arn(self) -> typing.Optional[builtins.str]:
1720
- '''The ARN of the IAM role.'''
1800
+ '''The Amazon Resource Name (ARN) of the execution role.'''
1721
1801
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "executionRoleArn"))
1722
1802
 
1723
1803
  @execution_role_arn.setter
@@ -1730,7 +1810,7 @@ class CfnCodeInterpreterCustom(
1730
1810
  @builtins.property
1731
1811
  @jsii.member(jsii_name="tags")
1732
1812
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
1733
- '''A map of tag keys and values.'''
1813
+ '''The tags for the code interpreter.'''
1734
1814
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
1735
1815
 
1736
1816
  @tags.setter
@@ -1750,9 +1830,9 @@ class CfnCodeInterpreterCustom(
1750
1830
  )
1751
1831
  class CodeInterpreterNetworkConfigurationProperty:
1752
1832
  def __init__(self, *, network_mode: builtins.str) -> None:
1753
- '''Network configuration for code interpreter.
1833
+ '''The network configuration.
1754
1834
 
1755
- :param network_mode: Network modes supported by code interpreter.
1835
+ :param network_mode: The network mode.
1756
1836
 
1757
1837
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkconfiguration.html
1758
1838
  :exampleMetadata: fixture=_generated
@@ -1776,7 +1856,7 @@ class CfnCodeInterpreterCustom(
1776
1856
 
1777
1857
  @builtins.property
1778
1858
  def network_mode(self) -> builtins.str:
1779
- '''Network modes supported by code interpreter.
1859
+ '''The network mode.
1780
1860
 
1781
1861
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkconfiguration.html#cfn-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkconfiguration-networkmode
1782
1862
  '''
@@ -1802,7 +1882,17 @@ class CfnRuntime(
1802
1882
  metaclass=jsii.JSIIMeta,
1803
1883
  jsii_type="aws-cdk-lib.aws_bedrockagentcore.CfnRuntime",
1804
1884
  ):
1805
- '''Resource Type definition for AWS::BedrockAgentCore::Runtime.
1885
+ '''.. epigraph::
1886
+
1887
+ Amazon Bedrock AgentCore is in preview release and is subject to change.
1888
+
1889
+ Contains information about an agent runtime. An agent runtime is the execution environment for a Amazon Bedrock Agent.
1890
+
1891
+ AgentCore Runtime is a secure, serverless runtime purpose-built for deploying and scaling dynamic AI agents and tools using any open-source framework including LangGraph, CrewAI, and Strands Agents, any protocol, and any model.
1892
+
1893
+ For more information about using agent runtime in Amazon Bedrock AgentCore, see `Host agent or tools with Amazon Bedrock AgentCore Runtime <https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/agents-tools-runtime.html>`_ .
1894
+
1895
+ See the *Properties* section below for descriptions of both the required and optional properties.
1806
1896
 
1807
1897
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html
1808
1898
  :cloudformationResource: AWS::BedrockAgentCore::Runtime
@@ -1865,15 +1955,15 @@ class CfnRuntime(
1865
1955
  '''
1866
1956
  :param scope: Scope in which this resource is defined.
1867
1957
  :param id: Construct identifier for this resource (unique in its scope).
1868
- :param agent_runtime_artifact:
1869
- :param agent_runtime_name:
1870
- :param network_configuration:
1871
- :param role_arn:
1872
- :param authorizer_configuration: Configuration for the authorizer.
1873
- :param description:
1874
- :param environment_variables: Environment variable attributes.
1875
- :param protocol_configuration:
1876
- :param tags: A map of tag keys and values.
1958
+ :param agent_runtime_artifact: The artifact of the agent.
1959
+ :param agent_runtime_name: The name of the AgentCore Runtime endpoint.
1960
+ :param network_configuration: The network configuration.
1961
+ :param role_arn: The Amazon Resource Name (ARN) for for the role.
1962
+ :param authorizer_configuration: Represents inbound authorization configuration options used to authenticate incoming requests.
1963
+ :param description: The agent runtime description.
1964
+ :param environment_variables: The environment variables for the agent.
1965
+ :param protocol_configuration: The protocol configuration for an agent runtime. This structure defines how the agent runtime communicates with clients.
1966
+ :param tags: The tags for the agent.
1877
1967
  '''
1878
1968
  if __debug__:
1879
1969
  type_hints = typing.get_type_hints(_typecheckingstub__d8f75c2b58380182b53165109480fecdbf9bcd35c2fcfcfea5141466ba05b7e7)
@@ -1926,7 +2016,8 @@ class CfnRuntime(
1926
2016
  @builtins.property
1927
2017
  @jsii.member(jsii_name="attrAgentRuntimeArn")
1928
2018
  def attr_agent_runtime_arn(self) -> builtins.str:
1929
- '''
2019
+ '''The agent runtime ARN.
2020
+
1930
2021
  :cloudformationAttribute: AgentRuntimeArn
1931
2022
  '''
1932
2023
  return typing.cast(builtins.str, jsii.get(self, "attrAgentRuntimeArn"))
@@ -1934,7 +2025,8 @@ class CfnRuntime(
1934
2025
  @builtins.property
1935
2026
  @jsii.member(jsii_name="attrAgentRuntimeId")
1936
2027
  def attr_agent_runtime_id(self) -> builtins.str:
1937
- '''
2028
+ '''The ID for the agent runtime.
2029
+
1938
2030
  :cloudformationAttribute: AgentRuntimeId
1939
2031
  '''
1940
2032
  return typing.cast(builtins.str, jsii.get(self, "attrAgentRuntimeId"))
@@ -1942,7 +2034,8 @@ class CfnRuntime(
1942
2034
  @builtins.property
1943
2035
  @jsii.member(jsii_name="attrAgentRuntimeVersion")
1944
2036
  def attr_agent_runtime_version(self) -> builtins.str:
1945
- '''
2037
+ '''The version for the agent runtime.
2038
+
1946
2039
  :cloudformationAttribute: AgentRuntimeVersion
1947
2040
  '''
1948
2041
  return typing.cast(builtins.str, jsii.get(self, "attrAgentRuntimeVersion"))
@@ -1950,7 +2043,8 @@ class CfnRuntime(
1950
2043
  @builtins.property
1951
2044
  @jsii.member(jsii_name="attrCreatedAt")
1952
2045
  def attr_created_at(self) -> builtins.str:
1953
- '''
2046
+ '''The time at which the runtime was created.
2047
+
1954
2048
  :cloudformationAttribute: CreatedAt
1955
2049
  '''
1956
2050
  return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
@@ -1958,7 +2052,8 @@ class CfnRuntime(
1958
2052
  @builtins.property
1959
2053
  @jsii.member(jsii_name="attrLastUpdatedAt")
1960
2054
  def attr_last_updated_at(self) -> builtins.str:
1961
- '''
2055
+ '''The time at which the runtime was last updated.
2056
+
1962
2057
  :cloudformationAttribute: LastUpdatedAt
1963
2058
  '''
1964
2059
  return typing.cast(builtins.str, jsii.get(self, "attrLastUpdatedAt"))
@@ -1966,7 +2061,8 @@ class CfnRuntime(
1966
2061
  @builtins.property
1967
2062
  @jsii.member(jsii_name="attrStatus")
1968
2063
  def attr_status(self) -> builtins.str:
1969
- '''
2064
+ '''The status for the agent runtime.
2065
+
1970
2066
  :cloudformationAttribute: Status
1971
2067
  '''
1972
2068
  return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
@@ -2002,6 +2098,7 @@ class CfnRuntime(
2002
2098
  def agent_runtime_artifact(
2003
2099
  self,
2004
2100
  ) -> typing.Union[_IResolvable_da3f097b, "CfnRuntime.AgentRuntimeArtifactProperty"]:
2101
+ '''The artifact of the agent.'''
2005
2102
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnRuntime.AgentRuntimeArtifactProperty"], jsii.get(self, "agentRuntimeArtifact"))
2006
2103
 
2007
2104
  @agent_runtime_artifact.setter
@@ -2017,6 +2114,7 @@ class CfnRuntime(
2017
2114
  @builtins.property
2018
2115
  @jsii.member(jsii_name="agentRuntimeName")
2019
2116
  def agent_runtime_name(self) -> builtins.str:
2117
+ '''The name of the AgentCore Runtime endpoint.'''
2020
2118
  return typing.cast(builtins.str, jsii.get(self, "agentRuntimeName"))
2021
2119
 
2022
2120
  @agent_runtime_name.setter
@@ -2031,6 +2129,7 @@ class CfnRuntime(
2031
2129
  def network_configuration(
2032
2130
  self,
2033
2131
  ) -> typing.Union[_IResolvable_da3f097b, "CfnRuntime.NetworkConfigurationProperty"]:
2132
+ '''The network configuration.'''
2034
2133
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnRuntime.NetworkConfigurationProperty"], jsii.get(self, "networkConfiguration"))
2035
2134
 
2036
2135
  @network_configuration.setter
@@ -2046,6 +2145,7 @@ class CfnRuntime(
2046
2145
  @builtins.property
2047
2146
  @jsii.member(jsii_name="roleArn")
2048
2147
  def role_arn(self) -> builtins.str:
2148
+ '''The Amazon Resource Name (ARN) for for the role.'''
2049
2149
  return typing.cast(builtins.str, jsii.get(self, "roleArn"))
2050
2150
 
2051
2151
  @role_arn.setter
@@ -2060,7 +2160,7 @@ class CfnRuntime(
2060
2160
  def authorizer_configuration(
2061
2161
  self,
2062
2162
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRuntime.AuthorizerConfigurationProperty"]]:
2063
- '''Configuration for the authorizer.'''
2163
+ '''Represents inbound authorization configuration options used to authenticate incoming requests.'''
2064
2164
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRuntime.AuthorizerConfigurationProperty"]], jsii.get(self, "authorizerConfiguration"))
2065
2165
 
2066
2166
  @authorizer_configuration.setter
@@ -2076,6 +2176,7 @@ class CfnRuntime(
2076
2176
  @builtins.property
2077
2177
  @jsii.member(jsii_name="description")
2078
2178
  def description(self) -> typing.Optional[builtins.str]:
2179
+ '''The agent runtime description.'''
2079
2180
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
2080
2181
 
2081
2182
  @description.setter
@@ -2090,7 +2191,7 @@ class CfnRuntime(
2090
2191
  def environment_variables(
2091
2192
  self,
2092
2193
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
2093
- '''Environment variable attributes.'''
2194
+ '''The environment variables for the agent.'''
2094
2195
  return typing.cast(typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]], jsii.get(self, "environmentVariables"))
2095
2196
 
2096
2197
  @environment_variables.setter
@@ -2106,6 +2207,7 @@ class CfnRuntime(
2106
2207
  @builtins.property
2107
2208
  @jsii.member(jsii_name="protocolConfiguration")
2108
2209
  def protocol_configuration(self) -> typing.Optional[builtins.str]:
2210
+ '''The protocol configuration for an agent runtime.'''
2109
2211
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "protocolConfiguration"))
2110
2212
 
2111
2213
  @protocol_configuration.setter
@@ -2118,7 +2220,7 @@ class CfnRuntime(
2118
2220
  @builtins.property
2119
2221
  @jsii.member(jsii_name="tags")
2120
2222
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
2121
- '''A map of tag keys and values.'''
2223
+ '''The tags for the agent.'''
2122
2224
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
2123
2225
 
2124
2226
  @tags.setter
@@ -2142,8 +2244,9 @@ class CfnRuntime(
2142
2244
  *,
2143
2245
  container_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRuntime.ContainerConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2144
2246
  ) -> None:
2145
- '''
2146
- :param container_configuration:
2247
+ '''The artifact of the agent.
2248
+
2249
+ :param container_configuration: Representation of a container configuration.
2147
2250
 
2148
2251
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-agentruntimeartifact.html
2149
2252
  :exampleMetadata: fixture=_generated
@@ -2171,7 +2274,8 @@ class CfnRuntime(
2171
2274
  def container_configuration(
2172
2275
  self,
2173
2276
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRuntime.ContainerConfigurationProperty"]]:
2174
- '''
2277
+ '''Representation of a container configuration.
2278
+
2175
2279
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-agentruntimeartifact.html#cfn-bedrockagentcore-runtime-agentruntimeartifact-containerconfiguration
2176
2280
  '''
2177
2281
  result = self._values.get("container_configuration")
@@ -2199,9 +2303,9 @@ class CfnRuntime(
2199
2303
  *,
2200
2304
  custom_jwt_authorizer: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRuntime.CustomJWTAuthorizerConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2201
2305
  ) -> None:
2202
- '''Configuration for the authorizer.
2306
+ '''The authorizer configuration.
2203
2307
 
2204
- :param custom_jwt_authorizer: Configuration for custom JWT authorizer.
2308
+ :param custom_jwt_authorizer: Represents inbound authorization configuration options used to authenticate incoming requests.
2205
2309
 
2206
2310
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-authorizerconfiguration.html
2207
2311
  :exampleMetadata: fixture=_generated
@@ -2233,7 +2337,7 @@ class CfnRuntime(
2233
2337
  def custom_jwt_authorizer(
2234
2338
  self,
2235
2339
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnRuntime.CustomJWTAuthorizerConfigurationProperty"]]:
2236
- '''Configuration for custom JWT authorizer.
2340
+ '''Represents inbound authorization configuration options used to authenticate incoming requests.
2237
2341
 
2238
2342
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-authorizerconfiguration.html#cfn-bedrockagentcore-runtime-authorizerconfiguration-customjwtauthorizer
2239
2343
  '''
@@ -2258,8 +2362,9 @@ class CfnRuntime(
2258
2362
  )
2259
2363
  class ContainerConfigurationProperty:
2260
2364
  def __init__(self, *, container_uri: builtins.str) -> None:
2261
- '''
2262
- :param container_uri: The ECR URI of the container.
2365
+ '''The container configuration.
2366
+
2367
+ :param container_uri: The container Uri.
2263
2368
 
2264
2369
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-containerconfiguration.html
2265
2370
  :exampleMetadata: fixture=_generated
@@ -2283,7 +2388,7 @@ class CfnRuntime(
2283
2388
 
2284
2389
  @builtins.property
2285
2390
  def container_uri(self) -> builtins.str:
2286
- '''The ECR URI of the container.
2391
+ '''The container Uri.
2287
2392
 
2288
2393
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-containerconfiguration.html#cfn-bedrockagentcore-runtime-containerconfiguration-containeruri
2289
2394
  '''
@@ -2321,9 +2426,9 @@ class CfnRuntime(
2321
2426
  ) -> None:
2322
2427
  '''Configuration for custom JWT authorizer.
2323
2428
 
2324
- :param discovery_url: OpenID Connect discovery URL.
2325
- :param allowed_audience: List of allowed audiences.
2326
- :param allowed_clients: List of allowed clients.
2429
+ :param discovery_url: The configuration authorization.
2430
+ :param allowed_audience: Represents inbound authorization configuration options used to authenticate incoming requests.
2431
+ :param allowed_clients: Represents individual client IDs that are validated in the incoming JWT token validation process.
2327
2432
 
2328
2433
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-customjwtauthorizerconfiguration.html
2329
2434
  :exampleMetadata: fixture=_generated
@@ -2357,7 +2462,7 @@ class CfnRuntime(
2357
2462
 
2358
2463
  @builtins.property
2359
2464
  def discovery_url(self) -> builtins.str:
2360
- '''OpenID Connect discovery URL.
2465
+ '''The configuration authorization.
2361
2466
 
2362
2467
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-customjwtauthorizerconfiguration.html#cfn-bedrockagentcore-runtime-customjwtauthorizerconfiguration-discoveryurl
2363
2468
  '''
@@ -2367,7 +2472,7 @@ class CfnRuntime(
2367
2472
 
2368
2473
  @builtins.property
2369
2474
  def allowed_audience(self) -> typing.Optional[typing.List[builtins.str]]:
2370
- '''List of allowed audiences.
2475
+ '''Represents inbound authorization configuration options used to authenticate incoming requests.
2371
2476
 
2372
2477
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-customjwtauthorizerconfiguration.html#cfn-bedrockagentcore-runtime-customjwtauthorizerconfiguration-allowedaudience
2373
2478
  '''
@@ -2376,7 +2481,7 @@ class CfnRuntime(
2376
2481
 
2377
2482
  @builtins.property
2378
2483
  def allowed_clients(self) -> typing.Optional[typing.List[builtins.str]]:
2379
- '''List of allowed clients.
2484
+ '''Represents individual client IDs that are validated in the incoming JWT token validation process.
2380
2485
 
2381
2486
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-customjwtauthorizerconfiguration.html#cfn-bedrockagentcore-runtime-customjwtauthorizerconfiguration-allowedclients
2382
2487
  '''
@@ -2401,8 +2506,9 @@ class CfnRuntime(
2401
2506
  )
2402
2507
  class NetworkConfigurationProperty:
2403
2508
  def __init__(self, *, network_mode: builtins.str) -> None:
2404
- '''
2405
- :param network_mode: Network mode configuration type.
2509
+ '''The network configuration for the agent.
2510
+
2511
+ :param network_mode: The network mode.
2406
2512
 
2407
2513
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkconfiguration.html
2408
2514
  :exampleMetadata: fixture=_generated
@@ -2426,7 +2532,7 @@ class CfnRuntime(
2426
2532
 
2427
2533
  @builtins.property
2428
2534
  def network_mode(self) -> builtins.str:
2429
- '''Network mode configuration type.
2535
+ '''The network mode.
2430
2536
 
2431
2537
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkconfiguration.html#cfn-bedrockagentcore-runtime-networkconfiguration-networkmode
2432
2538
  '''
@@ -2452,9 +2558,9 @@ class CfnRuntime(
2452
2558
  )
2453
2559
  class WorkloadIdentityDetailsProperty:
2454
2560
  def __init__(self, *, workload_identity_arn: builtins.str) -> None:
2455
- '''Configuration for workload identity.
2561
+ '''The workload identity details for the agent.
2456
2562
 
2457
- :param workload_identity_arn: ARN of the workload identity.
2563
+ :param workload_identity_arn: The Amazon Resource Name (ARN) for the workload identity.
2458
2564
 
2459
2565
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-workloadidentitydetails.html
2460
2566
  :exampleMetadata: fixture=_generated
@@ -2478,7 +2584,7 @@ class CfnRuntime(
2478
2584
 
2479
2585
  @builtins.property
2480
2586
  def workload_identity_arn(self) -> builtins.str:
2481
- '''ARN of the workload identity.
2587
+ '''The Amazon Resource Name (ARN) for the workload identity.
2482
2588
 
2483
2589
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-workloadidentitydetails.html#cfn-bedrockagentcore-runtime-workloadidentitydetails-workloadidentityarn
2484
2590
  '''
@@ -2504,7 +2610,15 @@ class CfnRuntimeEndpoint(
2504
2610
  metaclass=jsii.JSIIMeta,
2505
2611
  jsii_type="aws-cdk-lib.aws_bedrockagentcore.CfnRuntimeEndpoint",
2506
2612
  ):
2507
- '''Resource definition for AWS::BedrockAgentCore::RuntimeEndpoint.
2613
+ '''.. epigraph::
2614
+
2615
+ Amazon Bedrock AgentCore is in preview release and is subject to change.
2616
+
2617
+ AgentCore Runtime is a secure, serverless runtime purpose-built for deploying and scaling dynamic AI agents and tools using any open-source framework including LangGraph, CrewAI, and Strands Agents, any protocol, and any model.
2618
+
2619
+ For more information about using agent runtime endpoints in Amazon Bedrock AgentCore, see `AgentCore Runtime versioning and endpoints <https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/agent-runtime-versioning.html>`_ .
2620
+
2621
+ See the *Properties* section below for descriptions of both the required and optional properties.
2508
2622
 
2509
2623
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html
2510
2624
  :cloudformationResource: AWS::BedrockAgentCore::RuntimeEndpoint
@@ -2543,11 +2657,11 @@ class CfnRuntimeEndpoint(
2543
2657
  '''
2544
2658
  :param scope: Scope in which this resource is defined.
2545
2659
  :param id: Construct identifier for this resource (unique in its scope).
2546
- :param agent_runtime_id: The ID of the parent Agent Runtime.
2547
- :param name:
2548
- :param agent_runtime_version:
2549
- :param description:
2550
- :param tags: A map of tag keys and values.
2660
+ :param agent_runtime_id: The agent runtime ID.
2661
+ :param name: The name of the AgentCore Runtime endpoint.
2662
+ :param agent_runtime_version: The version of the agent.
2663
+ :param description: Contains information about an agent runtime endpoint. An agent runtime is the execution environment for a Amazon Bedrock Agent.
2664
+ :param tags: The tags for the AgentCore Runtime endpoint.
2551
2665
  '''
2552
2666
  if __debug__:
2553
2667
  type_hints = typing.get_type_hints(_typecheckingstub__f889c0edf8dd4715192bf69e6433f02f671ca35ed9b8e8f7622b298a7b14955a)
@@ -2596,7 +2710,8 @@ class CfnRuntimeEndpoint(
2596
2710
  @builtins.property
2597
2711
  @jsii.member(jsii_name="attrAgentRuntimeArn")
2598
2712
  def attr_agent_runtime_arn(self) -> builtins.str:
2599
- '''
2713
+ '''The Amazon Resource Name (ARN) of the runtime agent.
2714
+
2600
2715
  :cloudformationAttribute: AgentRuntimeArn
2601
2716
  '''
2602
2717
  return typing.cast(builtins.str, jsii.get(self, "attrAgentRuntimeArn"))
@@ -2604,7 +2719,8 @@ class CfnRuntimeEndpoint(
2604
2719
  @builtins.property
2605
2720
  @jsii.member(jsii_name="attrAgentRuntimeEndpointArn")
2606
2721
  def attr_agent_runtime_endpoint_arn(self) -> builtins.str:
2607
- '''
2722
+ '''The endpoint Amazon Resource Name (ARN).
2723
+
2608
2724
  :cloudformationAttribute: AgentRuntimeEndpointArn
2609
2725
  '''
2610
2726
  return typing.cast(builtins.str, jsii.get(self, "attrAgentRuntimeEndpointArn"))
@@ -2612,7 +2728,8 @@ class CfnRuntimeEndpoint(
2612
2728
  @builtins.property
2613
2729
  @jsii.member(jsii_name="attrCreatedAt")
2614
2730
  def attr_created_at(self) -> builtins.str:
2615
- '''
2731
+ '''The time at which the endpoint was created.
2732
+
2616
2733
  :cloudformationAttribute: CreatedAt
2617
2734
  '''
2618
2735
  return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
@@ -2620,7 +2737,7 @@ class CfnRuntimeEndpoint(
2620
2737
  @builtins.property
2621
2738
  @jsii.member(jsii_name="attrFailureReason")
2622
2739
  def attr_failure_reason(self) -> builtins.str:
2623
- '''The reason for failure if the endpoint is in a failed state.
2740
+ '''The reason for failure if the memory is in a failed state.
2624
2741
 
2625
2742
  :cloudformationAttribute: FailureReason
2626
2743
  '''
@@ -2629,7 +2746,7 @@ class CfnRuntimeEndpoint(
2629
2746
  @builtins.property
2630
2747
  @jsii.member(jsii_name="attrId")
2631
2748
  def attr_id(self) -> builtins.str:
2632
- '''The unique ID of the Agent Runtime Endpoint itself.
2749
+ '''The ID of the runtime endpoint.
2633
2750
 
2634
2751
  :cloudformationAttribute: Id
2635
2752
  '''
@@ -2638,7 +2755,8 @@ class CfnRuntimeEndpoint(
2638
2755
  @builtins.property
2639
2756
  @jsii.member(jsii_name="attrLastUpdatedAt")
2640
2757
  def attr_last_updated_at(self) -> builtins.str:
2641
- '''
2758
+ '''The time at which the endpoint was last updated.
2759
+
2642
2760
  :cloudformationAttribute: LastUpdatedAt
2643
2761
  '''
2644
2762
  return typing.cast(builtins.str, jsii.get(self, "attrLastUpdatedAt"))
@@ -2646,7 +2764,8 @@ class CfnRuntimeEndpoint(
2646
2764
  @builtins.property
2647
2765
  @jsii.member(jsii_name="attrLiveVersion")
2648
2766
  def attr_live_version(self) -> builtins.str:
2649
- '''
2767
+ '''The live version for the runtime endpoint.
2768
+
2650
2769
  :cloudformationAttribute: LiveVersion
2651
2770
  '''
2652
2771
  return typing.cast(builtins.str, jsii.get(self, "attrLiveVersion"))
@@ -2654,7 +2773,8 @@ class CfnRuntimeEndpoint(
2654
2773
  @builtins.property
2655
2774
  @jsii.member(jsii_name="attrStatus")
2656
2775
  def attr_status(self) -> builtins.str:
2657
- '''
2776
+ '''The status of the runtime endpoint.
2777
+
2658
2778
  :cloudformationAttribute: Status
2659
2779
  '''
2660
2780
  return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
@@ -2662,7 +2782,8 @@ class CfnRuntimeEndpoint(
2662
2782
  @builtins.property
2663
2783
  @jsii.member(jsii_name="attrTargetVersion")
2664
2784
  def attr_target_version(self) -> builtins.str:
2665
- '''
2785
+ '''The target version.
2786
+
2666
2787
  :cloudformationAttribute: TargetVersion
2667
2788
  '''
2668
2789
  return typing.cast(builtins.str, jsii.get(self, "attrTargetVersion"))
@@ -2687,7 +2808,7 @@ class CfnRuntimeEndpoint(
2687
2808
  @builtins.property
2688
2809
  @jsii.member(jsii_name="agentRuntimeId")
2689
2810
  def agent_runtime_id(self) -> builtins.str:
2690
- '''The ID of the parent Agent Runtime.'''
2811
+ '''The agent runtime ID.'''
2691
2812
  return typing.cast(builtins.str, jsii.get(self, "agentRuntimeId"))
2692
2813
 
2693
2814
  @agent_runtime_id.setter
@@ -2700,6 +2821,7 @@ class CfnRuntimeEndpoint(
2700
2821
  @builtins.property
2701
2822
  @jsii.member(jsii_name="name")
2702
2823
  def name(self) -> builtins.str:
2824
+ '''The name of the AgentCore Runtime endpoint.'''
2703
2825
  return typing.cast(builtins.str, jsii.get(self, "name"))
2704
2826
 
2705
2827
  @name.setter
@@ -2712,6 +2834,7 @@ class CfnRuntimeEndpoint(
2712
2834
  @builtins.property
2713
2835
  @jsii.member(jsii_name="agentRuntimeVersion")
2714
2836
  def agent_runtime_version(self) -> typing.Optional[builtins.str]:
2837
+ '''The version of the agent.'''
2715
2838
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "agentRuntimeVersion"))
2716
2839
 
2717
2840
  @agent_runtime_version.setter
@@ -2724,6 +2847,7 @@ class CfnRuntimeEndpoint(
2724
2847
  @builtins.property
2725
2848
  @jsii.member(jsii_name="description")
2726
2849
  def description(self) -> typing.Optional[builtins.str]:
2850
+ '''Contains information about an agent runtime endpoint.'''
2727
2851
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
2728
2852
 
2729
2853
  @description.setter
@@ -2736,7 +2860,7 @@ class CfnRuntimeEndpoint(
2736
2860
  @builtins.property
2737
2861
  @jsii.member(jsii_name="tags")
2738
2862
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
2739
- '''A map of tag keys and values.'''
2863
+ '''The tags for the AgentCore Runtime endpoint.'''
2740
2864
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
2741
2865
 
2742
2866
  @tags.setter
@@ -2862,6 +2986,14 @@ def _typecheckingstub__e817ad5ee6496ab54cf569758c4d73da62a4d6f5cf0c34866960f6e46
2862
2986
  """Type checking stubs"""
2863
2987
  pass
2864
2988
 
2989
+ def _typecheckingstub__1a5d38dc7619d36a2a4f39c13ec237b55f560a41ac9a162b787880e8e6ba2f47(
2990
+ scope: _constructs_77d1e7e8.Construct,
2991
+ id: builtins.str,
2992
+ browser_id: builtins.str,
2993
+ ) -> None:
2994
+ """Type checking stubs"""
2995
+ pass
2996
+
2865
2997
  def _typecheckingstub__12637c5685b21eb50c5acd05eb9308d8266fc2816549a6a2816d9399823e8551(
2866
2998
  inspector: _TreeInspector_488e0dd5,
2867
2999
  ) -> None:
@@ -2946,6 +3078,14 @@ def _typecheckingstub__1aaa167a6af98d626969b5bd2de9377658de4e8d04df0b48dc5916f9e
2946
3078
  """Type checking stubs"""
2947
3079
  pass
2948
3080
 
3081
+ def _typecheckingstub__d2e6193c6a8378455a4decc0c525a09a78674fd7ad426e58017e57035bc1789a(
3082
+ scope: _constructs_77d1e7e8.Construct,
3083
+ id: builtins.str,
3084
+ code_interpreter_id: builtins.str,
3085
+ ) -> None:
3086
+ """Type checking stubs"""
3087
+ pass
3088
+
2949
3089
  def _typecheckingstub__ab4b7a28e87b1af264773dfddc0e9da46bb99c921aa85fb942fcc7ca03680597(
2950
3090
  inspector: _TreeInspector_488e0dd5,
2951
3091
  ) -> None: