aws-cdk-lib 2.184.1__py3-none-any.whl → 2.186.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 (75) hide show
  1. aws_cdk/__init__.py +102 -29
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.184.1.jsii.tgz → aws-cdk-lib@2.186.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amazonmq/__init__.py +3 -2
  5. aws_cdk/aws_apigateway/__init__.py +1 -1
  6. aws_cdk/aws_apigatewayv2/__init__.py +9 -0
  7. aws_cdk/aws_appconfig/__init__.py +3 -3
  8. aws_cdk/aws_applicationsignals/__init__.py +495 -1
  9. aws_cdk/aws_appsync/__init__.py +65 -11
  10. aws_cdk/aws_athena/__init__.py +143 -0
  11. aws_cdk/aws_backup/__init__.py +4 -2
  12. aws_cdk/aws_batch/__init__.py +9 -0
  13. aws_cdk/aws_bedrock/__init__.py +645 -199
  14. aws_cdk/aws_cassandra/__init__.py +3 -5
  15. aws_cdk/aws_chatbot/__init__.py +41 -0
  16. aws_cdk/aws_cleanrooms/__init__.py +21 -9
  17. aws_cdk/aws_cloudformation/__init__.py +1 -5
  18. aws_cdk/aws_cloudfront/__init__.py +4 -1
  19. aws_cdk/aws_cloudfront_origins/__init__.py +4 -2
  20. aws_cdk/aws_codeartifact/__init__.py +20 -33
  21. aws_cdk/aws_codebuild/__init__.py +10 -3
  22. aws_cdk/aws_codepipeline/__init__.py +1328 -120
  23. aws_cdk/aws_cognito/__init__.py +1 -1
  24. aws_cdk/aws_cognito_identitypool/__init__.py +2303 -0
  25. aws_cdk/aws_config/__init__.py +1 -1
  26. aws_cdk/aws_connect/__init__.py +3 -7
  27. aws_cdk/aws_controltower/__init__.py +18 -26
  28. aws_cdk/aws_datasync/__init__.py +12 -14
  29. aws_cdk/aws_datazone/__init__.py +3471 -2
  30. aws_cdk/aws_ec2/__init__.py +701 -37
  31. aws_cdk/aws_ecr/__init__.py +84 -2
  32. aws_cdk/aws_ecs/__init__.py +20 -25
  33. aws_cdk/aws_eks/__init__.py +2 -0
  34. aws_cdk/aws_elasticloadbalancingv2/__init__.py +42 -5
  35. aws_cdk/aws_elasticsearch/__init__.py +1 -1
  36. aws_cdk/aws_events/__init__.py +37 -14
  37. aws_cdk/aws_events_targets/__init__.py +5 -5
  38. aws_cdk/aws_gamelift/__init__.py +165 -165
  39. aws_cdk/aws_gameliftstreams/__init__.py +199 -59
  40. aws_cdk/aws_iam/__init__.py +320 -25
  41. aws_cdk/aws_imagebuilder/__init__.py +15 -2
  42. aws_cdk/aws_iotfleetwise/__init__.py +15 -6
  43. aws_cdk/aws_kinesisfirehose/__init__.py +115 -113
  44. aws_cdk/aws_lambda/__init__.py +7 -1
  45. aws_cdk/aws_location/__init__.py +24 -7
  46. aws_cdk/aws_logs/__init__.py +21 -27
  47. aws_cdk/aws_msk/__init__.py +17 -50
  48. aws_cdk/aws_networkfirewall/__init__.py +16 -12
  49. aws_cdk/aws_oam/__init__.py +8 -37
  50. aws_cdk/aws_opensearchservice/__init__.py +1 -1
  51. aws_cdk/aws_pcs/__init__.py +33 -22
  52. aws_cdk/aws_quicksight/__init__.py +6 -69
  53. aws_cdk/aws_rds/__init__.py +8 -4
  54. aws_cdk/aws_redshiftserverless/__init__.py +192 -15
  55. aws_cdk/aws_rum/__init__.py +454 -43
  56. aws_cdk/aws_s3/__init__.py +4 -6
  57. aws_cdk/aws_s3_deployment/__init__.py +2 -0
  58. aws_cdk/aws_sagemaker/__init__.py +524 -0
  59. aws_cdk/aws_scheduler/__init__.py +3944 -121
  60. aws_cdk/aws_scheduler_targets/__init__.py +4472 -0
  61. aws_cdk/aws_ses/__init__.py +9 -9
  62. aws_cdk/aws_sns/__init__.py +12 -12
  63. aws_cdk/aws_ssmquicksetup/__init__.py +5 -3
  64. aws_cdk/aws_stepfunctions/__init__.py +17 -15
  65. aws_cdk/aws_timestream/__init__.py +4 -4
  66. aws_cdk/aws_wafv2/__init__.py +345 -0
  67. aws_cdk/aws_workspacesthinclient/__init__.py +4 -4
  68. aws_cdk/cx_api/__init__.py +53 -0
  69. aws_cdk/region_info/__init__.py +2 -2
  70. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/METADATA +1 -1
  71. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/RECORD +75 -73
  72. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/LICENSE +0 -0
  73. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/NOTICE +0 -0
  74. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/WHEEL +0 -0
  75. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/top_level.txt +0 -0
@@ -2101,7 +2101,7 @@ class CfnAgent(
2101
2101
 
2102
2102
  For more information, see `Advanced prompts <https://docs.aws.amazon.com/bedrock/latest/userguide/advanced-prompts.html>`_ .
2103
2103
 
2104
- :param additional_model_request_fields: Additional Model Request Fields for Prompt Configuration.
2104
+ :param additional_model_request_fields: If the Converse or ConverseStream operations support the model, ``additionalModelRequestFields`` contains additional inference parameters, beyond the base set of inference parameters in the ``inferenceConfiguration`` field. For more information, see `Inference request parameters and response fields for foundation models <https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html>`_ .
2105
2105
  :param base_prompt_template: Defines the prompt template with which to replace the default prompt template. You can use placeholder variables in the base prompt template to customize the prompt. For more information, see `Prompt template placeholder variables <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-placeholders.html>`_ . For more information, see `Configure the prompt templates <https://docs.aws.amazon.com/bedrock/latest/userguide/advanced-prompts-configure.html>`_ .
2106
2106
  :param foundation_model: The agent's foundation model.
2107
2107
  :param inference_configuration: Contains inference parameters to use when the agent invokes a foundation model in the part of the agent sequence defined by the ``promptType`` . For more information, see `Inference parameters for foundation models <https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html>`_ .
@@ -2168,7 +2168,9 @@ class CfnAgent(
2168
2168
 
2169
2169
  @builtins.property
2170
2170
  def additional_model_request_fields(self) -> typing.Any:
2171
- '''Additional Model Request Fields for Prompt Configuration.
2171
+ '''If the Converse or ConverseStream operations support the model, ``additionalModelRequestFields`` contains additional inference parameters, beyond the base set of inference parameters in the ``inferenceConfiguration`` field.
2172
+
2173
+ For more information, see `Inference request parameters and response fields for foundation models <https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html>`_ .
2172
2174
 
2173
2175
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-promptconfiguration.html#cfn-bedrock-agent-promptconfiguration-additionalmodelrequestfields
2174
2176
  '''
@@ -3992,7 +3994,7 @@ class CfnBlueprint(
3992
3994
  metaclass=jsii.JSIIMeta,
3993
3995
  jsii_type="aws-cdk-lib.aws_bedrock.CfnBlueprint",
3994
3996
  ):
3995
- '''Definition of AWS::Bedrock::Blueprint Resource Type.
3997
+ '''Details about a data automation blueprint.
3996
3998
 
3997
3999
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
3998
4000
  :cloudformationResource: AWS::Bedrock::Blueprint
@@ -4038,11 +4040,11 @@ class CfnBlueprint(
4038
4040
  '''
4039
4041
  :param scope: Scope in which this resource is defined.
4040
4042
  :param id: Construct identifier for this resource (unique in its scope).
4041
- :param blueprint_name: Name of the Blueprint.
4042
- :param schema: Schema of the blueprint.
4043
- :param type: Modality Type.
4044
- :param kms_encryption_context: KMS encryption context.
4045
- :param kms_key_id: KMS key identifier.
4043
+ :param blueprint_name: The blueprint's name.
4044
+ :param schema: The blueprint's schema.
4045
+ :param type: The blueprint's type.
4046
+ :param kms_encryption_context: Name-value pairs to include as an encryption context.
4047
+ :param kms_key_id: The AWS KMS key to use for encryption.
4046
4048
  :param tags: List of Tags.
4047
4049
  '''
4048
4050
  if __debug__:
@@ -4093,7 +4095,7 @@ class CfnBlueprint(
4093
4095
  @builtins.property
4094
4096
  @jsii.member(jsii_name="attrBlueprintArn")
4095
4097
  def attr_blueprint_arn(self) -> builtins.str:
4096
- '''ARN of a Blueprint.
4098
+ '''The blueprint's ARN.
4097
4099
 
4098
4100
  :cloudformationAttribute: BlueprintArn
4099
4101
  '''
@@ -4102,7 +4104,7 @@ class CfnBlueprint(
4102
4104
  @builtins.property
4103
4105
  @jsii.member(jsii_name="attrBlueprintStage")
4104
4106
  def attr_blueprint_stage(self) -> builtins.str:
4105
- '''Stage of the Blueprint.
4107
+ '''The blueprint's stage.
4106
4108
 
4107
4109
  :cloudformationAttribute: BlueprintStage
4108
4110
  '''
@@ -4111,7 +4113,7 @@ class CfnBlueprint(
4111
4113
  @builtins.property
4112
4114
  @jsii.member(jsii_name="attrCreationTime")
4113
4115
  def attr_creation_time(self) -> builtins.str:
4114
- '''Creation timestamp.
4116
+ '''When the blueprint was created.
4115
4117
 
4116
4118
  :cloudformationAttribute: CreationTime
4117
4119
  '''
@@ -4120,7 +4122,7 @@ class CfnBlueprint(
4120
4122
  @builtins.property
4121
4123
  @jsii.member(jsii_name="attrLastModifiedTime")
4122
4124
  def attr_last_modified_time(self) -> builtins.str:
4123
- '''Last modified timestamp.
4125
+ '''When the blueprint was last updated.
4124
4126
 
4125
4127
  :cloudformationAttribute: LastModifiedTime
4126
4128
  '''
@@ -4140,7 +4142,7 @@ class CfnBlueprint(
4140
4142
  @builtins.property
4141
4143
  @jsii.member(jsii_name="blueprintName")
4142
4144
  def blueprint_name(self) -> builtins.str:
4143
- '''Name of the Blueprint.'''
4145
+ '''The blueprint's name.'''
4144
4146
  return typing.cast(builtins.str, jsii.get(self, "blueprintName"))
4145
4147
 
4146
4148
  @blueprint_name.setter
@@ -4153,7 +4155,7 @@ class CfnBlueprint(
4153
4155
  @builtins.property
4154
4156
  @jsii.member(jsii_name="schema")
4155
4157
  def schema(self) -> typing.Any:
4156
- '''Schema of the blueprint.'''
4158
+ '''The blueprint's schema.'''
4157
4159
  return typing.cast(typing.Any, jsii.get(self, "schema"))
4158
4160
 
4159
4161
  @schema.setter
@@ -4166,7 +4168,7 @@ class CfnBlueprint(
4166
4168
  @builtins.property
4167
4169
  @jsii.member(jsii_name="type")
4168
4170
  def type(self) -> builtins.str:
4169
- '''Modality Type.'''
4171
+ '''The blueprint's type.'''
4170
4172
  return typing.cast(builtins.str, jsii.get(self, "type"))
4171
4173
 
4172
4174
  @type.setter
@@ -4181,7 +4183,7 @@ class CfnBlueprint(
4181
4183
  def kms_encryption_context(
4182
4184
  self,
4183
4185
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
4184
- '''KMS encryption context.'''
4186
+ '''Name-value pairs to include as an encryption context.'''
4185
4187
  return typing.cast(typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]], jsii.get(self, "kmsEncryptionContext"))
4186
4188
 
4187
4189
  @kms_encryption_context.setter
@@ -4197,7 +4199,7 @@ class CfnBlueprint(
4197
4199
  @builtins.property
4198
4200
  @jsii.member(jsii_name="kmsKeyId")
4199
4201
  def kms_key_id(self) -> typing.Optional[builtins.str]:
4200
- '''KMS key identifier.'''
4202
+ '''The AWS KMS key to use for encryption.'''
4201
4203
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
4202
4204
 
4203
4205
  @kms_key_id.setter
@@ -4246,11 +4248,11 @@ class CfnBlueprintProps:
4246
4248
  ) -> None:
4247
4249
  '''Properties for defining a ``CfnBlueprint``.
4248
4250
 
4249
- :param blueprint_name: Name of the Blueprint.
4250
- :param schema: Schema of the blueprint.
4251
- :param type: Modality Type.
4252
- :param kms_encryption_context: KMS encryption context.
4253
- :param kms_key_id: KMS key identifier.
4251
+ :param blueprint_name: The blueprint's name.
4252
+ :param schema: The blueprint's schema.
4253
+ :param type: The blueprint's type.
4254
+ :param kms_encryption_context: Name-value pairs to include as an encryption context.
4255
+ :param kms_key_id: The AWS KMS key to use for encryption.
4254
4256
  :param tags: List of Tags.
4255
4257
 
4256
4258
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
@@ -4302,7 +4304,7 @@ class CfnBlueprintProps:
4302
4304
 
4303
4305
  @builtins.property
4304
4306
  def blueprint_name(self) -> builtins.str:
4305
- '''Name of the Blueprint.
4307
+ '''The blueprint's name.
4306
4308
 
4307
4309
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html#cfn-bedrock-blueprint-blueprintname
4308
4310
  '''
@@ -4312,7 +4314,7 @@ class CfnBlueprintProps:
4312
4314
 
4313
4315
  @builtins.property
4314
4316
  def schema(self) -> typing.Any:
4315
- '''Schema of the blueprint.
4317
+ '''The blueprint's schema.
4316
4318
 
4317
4319
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html#cfn-bedrock-blueprint-schema
4318
4320
  '''
@@ -4322,7 +4324,7 @@ class CfnBlueprintProps:
4322
4324
 
4323
4325
  @builtins.property
4324
4326
  def type(self) -> builtins.str:
4325
- '''Modality Type.
4327
+ '''The blueprint's type.
4326
4328
 
4327
4329
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html#cfn-bedrock-blueprint-type
4328
4330
  '''
@@ -4334,7 +4336,7 @@ class CfnBlueprintProps:
4334
4336
  def kms_encryption_context(
4335
4337
  self,
4336
4338
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
4337
- '''KMS encryption context.
4339
+ '''Name-value pairs to include as an encryption context.
4338
4340
 
4339
4341
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html#cfn-bedrock-blueprint-kmsencryptioncontext
4340
4342
  '''
@@ -4343,7 +4345,7 @@ class CfnBlueprintProps:
4343
4345
 
4344
4346
  @builtins.property
4345
4347
  def kms_key_id(self) -> typing.Optional[builtins.str]:
4346
- '''KMS key identifier.
4348
+ '''The AWS KMS key to use for encryption.
4347
4349
 
4348
4350
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html#cfn-bedrock-blueprint-kmskeyid
4349
4351
  '''
@@ -4377,7 +4379,7 @@ class CfnDataAutomationProject(
4377
4379
  metaclass=jsii.JSIIMeta,
4378
4380
  jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject",
4379
4381
  ):
4380
- '''Definition of AWS::Bedrock::DataAutomationProject Resource Type.
4382
+ '''A data automation project.
4381
4383
 
4382
4384
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html
4383
4385
  :cloudformationResource: AWS::Bedrock::DataAutomationProject
@@ -4515,13 +4517,13 @@ class CfnDataAutomationProject(
4515
4517
  '''
4516
4518
  :param scope: Scope in which this resource is defined.
4517
4519
  :param id: Construct identifier for this resource (unique in its scope).
4518
- :param project_name: Name of the DataAutomationProject.
4519
- :param custom_output_configuration: Custom output configuration.
4520
- :param kms_encryption_context: KMS encryption context.
4521
- :param kms_key_id: KMS key identifier.
4522
- :param override_configuration: Override configuration.
4523
- :param project_description: Description of the DataAutomationProject.
4524
- :param standard_output_configuration: Standard output configuration.
4520
+ :param project_name: The project's name.
4521
+ :param custom_output_configuration: Blueprints to apply to objects processed by the project.
4522
+ :param kms_encryption_context: The AWS KMS encryption context to use for encryption.
4523
+ :param kms_key_id: The AWS KMS key to use for encryption.
4524
+ :param override_configuration: Additional settings for the project.
4525
+ :param project_description: The project's description.
4526
+ :param standard_output_configuration: The project's standard output configuration.
4525
4527
  :param tags: List of Tags.
4526
4528
  '''
4527
4529
  if __debug__:
@@ -4574,7 +4576,7 @@ class CfnDataAutomationProject(
4574
4576
  @builtins.property
4575
4577
  @jsii.member(jsii_name="attrCreationTime")
4576
4578
  def attr_creation_time(self) -> builtins.str:
4577
- '''Time Stamp.
4579
+ '''When the project was created.
4578
4580
 
4579
4581
  :cloudformationAttribute: CreationTime
4580
4582
  '''
@@ -4583,7 +4585,7 @@ class CfnDataAutomationProject(
4583
4585
  @builtins.property
4584
4586
  @jsii.member(jsii_name="attrLastModifiedTime")
4585
4587
  def attr_last_modified_time(self) -> builtins.str:
4586
- '''Time Stamp.
4588
+ '''When the project was last updated.
4587
4589
 
4588
4590
  :cloudformationAttribute: LastModifiedTime
4589
4591
  '''
@@ -4592,7 +4594,7 @@ class CfnDataAutomationProject(
4592
4594
  @builtins.property
4593
4595
  @jsii.member(jsii_name="attrProjectArn")
4594
4596
  def attr_project_arn(self) -> builtins.str:
4595
- '''ARN of a DataAutomationProject.
4597
+ '''The project's ARN.
4596
4598
 
4597
4599
  :cloudformationAttribute: ProjectArn
4598
4600
  '''
@@ -4601,7 +4603,7 @@ class CfnDataAutomationProject(
4601
4603
  @builtins.property
4602
4604
  @jsii.member(jsii_name="attrProjectStage")
4603
4605
  def attr_project_stage(self) -> builtins.str:
4604
- '''Stage of the Project.
4606
+ '''The project's stage.
4605
4607
 
4606
4608
  :cloudformationAttribute: ProjectStage
4607
4609
  '''
@@ -4610,7 +4612,8 @@ class CfnDataAutomationProject(
4610
4612
  @builtins.property
4611
4613
  @jsii.member(jsii_name="attrStatus")
4612
4614
  def attr_status(self) -> builtins.str:
4613
- '''
4615
+ '''The project's status.
4616
+
4614
4617
  :cloudformationAttribute: Status
4615
4618
  '''
4616
4619
  return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
@@ -4629,7 +4632,7 @@ class CfnDataAutomationProject(
4629
4632
  @builtins.property
4630
4633
  @jsii.member(jsii_name="projectName")
4631
4634
  def project_name(self) -> builtins.str:
4632
- '''Name of the DataAutomationProject.'''
4635
+ '''The project's name.'''
4633
4636
  return typing.cast(builtins.str, jsii.get(self, "projectName"))
4634
4637
 
4635
4638
  @project_name.setter
@@ -4644,7 +4647,7 @@ class CfnDataAutomationProject(
4644
4647
  def custom_output_configuration(
4645
4648
  self,
4646
4649
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.CustomOutputConfigurationProperty"]]:
4647
- '''Custom output configuration.'''
4650
+ '''Blueprints to apply to objects processed by the project.'''
4648
4651
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.CustomOutputConfigurationProperty"]], jsii.get(self, "customOutputConfiguration"))
4649
4652
 
4650
4653
  @custom_output_configuration.setter
@@ -4662,7 +4665,7 @@ class CfnDataAutomationProject(
4662
4665
  def kms_encryption_context(
4663
4666
  self,
4664
4667
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
4665
- '''KMS encryption context.'''
4668
+ '''The AWS KMS encryption context to use for encryption.'''
4666
4669
  return typing.cast(typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]], jsii.get(self, "kmsEncryptionContext"))
4667
4670
 
4668
4671
  @kms_encryption_context.setter
@@ -4678,7 +4681,7 @@ class CfnDataAutomationProject(
4678
4681
  @builtins.property
4679
4682
  @jsii.member(jsii_name="kmsKeyId")
4680
4683
  def kms_key_id(self) -> typing.Optional[builtins.str]:
4681
- '''KMS key identifier.'''
4684
+ '''The AWS KMS key to use for encryption.'''
4682
4685
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
4683
4686
 
4684
4687
  @kms_key_id.setter
@@ -4693,7 +4696,7 @@ class CfnDataAutomationProject(
4693
4696
  def override_configuration(
4694
4697
  self,
4695
4698
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.OverrideConfigurationProperty"]]:
4696
- '''Override configuration.'''
4699
+ '''Additional settings for the project.'''
4697
4700
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.OverrideConfigurationProperty"]], jsii.get(self, "overrideConfiguration"))
4698
4701
 
4699
4702
  @override_configuration.setter
@@ -4709,7 +4712,7 @@ class CfnDataAutomationProject(
4709
4712
  @builtins.property
4710
4713
  @jsii.member(jsii_name="projectDescription")
4711
4714
  def project_description(self) -> typing.Optional[builtins.str]:
4712
- '''Description of the DataAutomationProject.'''
4715
+ '''The project's description.'''
4713
4716
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "projectDescription"))
4714
4717
 
4715
4718
  @project_description.setter
@@ -4724,7 +4727,7 @@ class CfnDataAutomationProject(
4724
4727
  def standard_output_configuration(
4725
4728
  self,
4726
4729
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.StandardOutputConfigurationProperty"]]:
4727
- '''Standard output configuration.'''
4730
+ '''The project's standard output configuration.'''
4728
4731
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.StandardOutputConfigurationProperty"]], jsii.get(self, "standardOutputConfiguration"))
4729
4732
 
4730
4733
  @standard_output_configuration.setter
@@ -4762,9 +4765,10 @@ class CfnDataAutomationProject(
4762
4765
  state: builtins.str,
4763
4766
  types: typing.Optional[typing.Sequence[builtins.str]] = None,
4764
4767
  ) -> None:
4765
- '''
4766
- :param state:
4767
- :param types:
4768
+ '''Settings for generating data from audio.
4769
+
4770
+ :param state: Whether generating categorical data from audio is enabled.
4771
+ :param types: The types of data to generate.
4768
4772
 
4769
4773
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html
4770
4774
  :exampleMetadata: fixture=_generated
@@ -4794,7 +4798,8 @@ class CfnDataAutomationProject(
4794
4798
 
4795
4799
  @builtins.property
4796
4800
  def state(self) -> builtins.str:
4797
- '''
4801
+ '''Whether generating categorical data from audio is enabled.
4802
+
4798
4803
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html#cfn-bedrock-dataautomationproject-audioextractioncategory-state
4799
4804
  '''
4800
4805
  result = self._values.get("state")
@@ -4803,7 +4808,8 @@ class CfnDataAutomationProject(
4803
4808
 
4804
4809
  @builtins.property
4805
4810
  def types(self) -> typing.Optional[typing.List[builtins.str]]:
4806
- '''
4811
+ '''The types of data to generate.
4812
+
4807
4813
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html#cfn-bedrock-dataautomationproject-audioextractioncategory-types
4808
4814
  '''
4809
4815
  result = self._values.get("types")
@@ -4831,8 +4837,9 @@ class CfnDataAutomationProject(
4831
4837
  *,
4832
4838
  category: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.AudioExtractionCategoryProperty", typing.Dict[builtins.str, typing.Any]]],
4833
4839
  ) -> None:
4834
- '''
4835
- :param category:
4840
+ '''Settings for generating data from audio.
4841
+
4842
+ :param category: Settings for generating data from audio.
4836
4843
 
4837
4844
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardextraction.html
4838
4845
  :exampleMetadata: fixture=_generated
@@ -4863,7 +4870,8 @@ class CfnDataAutomationProject(
4863
4870
  def category(
4864
4871
  self,
4865
4872
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.AudioExtractionCategoryProperty"]:
4866
- '''
4873
+ '''Settings for generating data from audio.
4874
+
4867
4875
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardextraction.html#cfn-bedrock-dataautomationproject-audiostandardextraction-category
4868
4876
  '''
4869
4877
  result = self._values.get("category")
@@ -4893,9 +4901,10 @@ class CfnDataAutomationProject(
4893
4901
  state: builtins.str,
4894
4902
  types: typing.Optional[typing.Sequence[builtins.str]] = None,
4895
4903
  ) -> None:
4896
- '''
4897
- :param state:
4898
- :param types:
4904
+ '''Settings for generating descriptions of audio.
4905
+
4906
+ :param state: Whether generating descriptions is enabled for audio.
4907
+ :param types: The types of description to generate.
4899
4908
 
4900
4909
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardgenerativefield.html
4901
4910
  :exampleMetadata: fixture=_generated
@@ -4925,7 +4934,8 @@ class CfnDataAutomationProject(
4925
4934
 
4926
4935
  @builtins.property
4927
4936
  def state(self) -> builtins.str:
4928
- '''
4937
+ '''Whether generating descriptions is enabled for audio.
4938
+
4929
4939
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardgenerativefield.html#cfn-bedrock-dataautomationproject-audiostandardgenerativefield-state
4930
4940
  '''
4931
4941
  result = self._values.get("state")
@@ -4934,7 +4944,8 @@ class CfnDataAutomationProject(
4934
4944
 
4935
4945
  @builtins.property
4936
4946
  def types(self) -> typing.Optional[typing.List[builtins.str]]:
4937
- '''
4947
+ '''The types of description to generate.
4948
+
4938
4949
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardgenerativefield.html#cfn-bedrock-dataautomationproject-audiostandardgenerativefield-types
4939
4950
  '''
4940
4951
  result = self._values.get("types")
@@ -4966,9 +4977,10 @@ class CfnDataAutomationProject(
4966
4977
  extraction: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.AudioStandardExtractionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
4967
4978
  generative_field: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.AudioStandardGenerativeFieldProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
4968
4979
  ) -> None:
4969
- '''
4970
- :param extraction:
4971
- :param generative_field:
4980
+ '''Output settings for processing audio.
4981
+
4982
+ :param extraction: Settings for populating data fields that describe the audio.
4983
+ :param generative_field: Whether to generate descriptions of the data.
4972
4984
 
4973
4985
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardoutputconfiguration.html
4974
4986
  :exampleMetadata: fixture=_generated
@@ -5010,7 +5022,8 @@ class CfnDataAutomationProject(
5010
5022
  def extraction(
5011
5023
  self,
5012
5024
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.AudioStandardExtractionProperty"]]:
5013
- '''
5025
+ '''Settings for populating data fields that describe the audio.
5026
+
5014
5027
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-audiostandardoutputconfiguration-extraction
5015
5028
  '''
5016
5029
  result = self._values.get("extraction")
@@ -5020,7 +5033,8 @@ class CfnDataAutomationProject(
5020
5033
  def generative_field(
5021
5034
  self,
5022
5035
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.AudioStandardGenerativeFieldProperty"]]:
5023
- '''
5036
+ '''Whether to generate descriptions of the data.
5037
+
5024
5038
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiostandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-audiostandardoutputconfiguration-generativefield
5025
5039
  '''
5026
5040
  result = self._values.get("generative_field")
@@ -5054,10 +5068,11 @@ class CfnDataAutomationProject(
5054
5068
  blueprint_stage: typing.Optional[builtins.str] = None,
5055
5069
  blueprint_version: typing.Optional[builtins.str] = None,
5056
5070
  ) -> None:
5057
- '''
5058
- :param blueprint_arn: ARN of a Blueprint.
5059
- :param blueprint_stage: Stage of the Blueprint.
5060
- :param blueprint_version: Blueprint Version.
5071
+ '''An abbreviated summary of a blueprint.
5072
+
5073
+ :param blueprint_arn: The blueprint's ARN.
5074
+ :param blueprint_stage: The blueprint's stage.
5075
+ :param blueprint_version: The blueprint's version.
5061
5076
 
5062
5077
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-blueprintitem.html
5063
5078
  :exampleMetadata: fixture=_generated
@@ -5091,7 +5106,7 @@ class CfnDataAutomationProject(
5091
5106
 
5092
5107
  @builtins.property
5093
5108
  def blueprint_arn(self) -> builtins.str:
5094
- '''ARN of a Blueprint.
5109
+ '''The blueprint's ARN.
5095
5110
 
5096
5111
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-blueprintitem.html#cfn-bedrock-dataautomationproject-blueprintitem-blueprintarn
5097
5112
  '''
@@ -5101,7 +5116,7 @@ class CfnDataAutomationProject(
5101
5116
 
5102
5117
  @builtins.property
5103
5118
  def blueprint_stage(self) -> typing.Optional[builtins.str]:
5104
- '''Stage of the Blueprint.
5119
+ '''The blueprint's stage.
5105
5120
 
5106
5121
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-blueprintitem.html#cfn-bedrock-dataautomationproject-blueprintitem-blueprintstage
5107
5122
  '''
@@ -5110,7 +5125,7 @@ class CfnDataAutomationProject(
5110
5125
 
5111
5126
  @builtins.property
5112
5127
  def blueprint_version(self) -> typing.Optional[builtins.str]:
5113
- '''Blueprint Version.
5128
+ '''The blueprint's version.
5114
5129
 
5115
5130
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-blueprintitem.html#cfn-bedrock-dataautomationproject-blueprintitem-blueprintversion
5116
5131
  '''
@@ -5139,9 +5154,9 @@ class CfnDataAutomationProject(
5139
5154
  *,
5140
5155
  blueprints: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.BlueprintItemProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
5141
5156
  ) -> None:
5142
- '''Custom output configuration.
5157
+ '''Blueprints to apply to objects processed by the project.
5143
5158
 
5144
- :param blueprints:
5159
+ :param blueprints: A list of blueprints.
5145
5160
 
5146
5161
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-customoutputconfiguration.html
5147
5162
  :exampleMetadata: fixture=_generated
@@ -5173,7 +5188,8 @@ class CfnDataAutomationProject(
5173
5188
  def blueprints(
5174
5189
  self,
5175
5190
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.BlueprintItemProperty"]]]]:
5176
- '''
5191
+ '''A list of blueprints.
5192
+
5177
5193
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-customoutputconfiguration.html#cfn-bedrock-dataautomationproject-customoutputconfiguration-blueprints
5178
5194
  '''
5179
5195
  result = self._values.get("blueprints")
@@ -5197,8 +5213,9 @@ class CfnDataAutomationProject(
5197
5213
  )
5198
5214
  class DocumentBoundingBoxProperty:
5199
5215
  def __init__(self, *, state: builtins.str) -> None:
5200
- '''
5201
- :param state:
5216
+ '''Bounding box settings for documents.
5217
+
5218
+ :param state: Whether bounding boxes are enabled for documents.
5202
5219
 
5203
5220
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentboundingbox.html
5204
5221
  :exampleMetadata: fixture=_generated
@@ -5222,7 +5239,8 @@ class CfnDataAutomationProject(
5222
5239
 
5223
5240
  @builtins.property
5224
5241
  def state(self) -> builtins.str:
5225
- '''
5242
+ '''Whether bounding boxes are enabled for documents.
5243
+
5226
5244
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentboundingbox.html#cfn-bedrock-dataautomationproject-documentboundingbox-state
5227
5245
  '''
5228
5246
  result = self._values.get("state")
@@ -5251,8 +5269,9 @@ class CfnDataAutomationProject(
5251
5269
  *,
5252
5270
  types: typing.Optional[typing.Sequence[builtins.str]] = None,
5253
5271
  ) -> None:
5254
- '''
5255
- :param types:
5272
+ '''Granularity settings for documents.
5273
+
5274
+ :param types: Granularity settings for documents.
5256
5275
 
5257
5276
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentextractiongranularity.html
5258
5277
  :exampleMetadata: fixture=_generated
@@ -5276,7 +5295,8 @@ class CfnDataAutomationProject(
5276
5295
 
5277
5296
  @builtins.property
5278
5297
  def types(self) -> typing.Optional[typing.List[builtins.str]]:
5279
- '''
5298
+ '''Granularity settings for documents.
5299
+
5280
5300
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentextractiongranularity.html#cfn-bedrock-dataautomationproject-documentextractiongranularity-types
5281
5301
  '''
5282
5302
  result = self._values.get("types")
@@ -5300,8 +5320,9 @@ class CfnDataAutomationProject(
5300
5320
  )
5301
5321
  class DocumentOutputAdditionalFileFormatProperty:
5302
5322
  def __init__(self, *, state: builtins.str) -> None:
5303
- '''
5304
- :param state:
5323
+ '''Output settings for additional file formats.
5324
+
5325
+ :param state: Whether additional file formats are enabled for a project.
5305
5326
 
5306
5327
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputadditionalfileformat.html
5307
5328
  :exampleMetadata: fixture=_generated
@@ -5325,7 +5346,8 @@ class CfnDataAutomationProject(
5325
5346
 
5326
5347
  @builtins.property
5327
5348
  def state(self) -> builtins.str:
5328
- '''
5349
+ '''Whether additional file formats are enabled for a project.
5350
+
5329
5351
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputadditionalfileformat.html#cfn-bedrock-dataautomationproject-documentoutputadditionalfileformat-state
5330
5352
  '''
5331
5353
  result = self._values.get("state")
@@ -5358,9 +5380,10 @@ class CfnDataAutomationProject(
5358
5380
  additional_file_format: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.DocumentOutputAdditionalFileFormatProperty", typing.Dict[builtins.str, typing.Any]]],
5359
5381
  text_format: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.DocumentOutputTextFormatProperty", typing.Dict[builtins.str, typing.Any]]],
5360
5382
  ) -> None:
5361
- '''
5362
- :param additional_file_format:
5363
- :param text_format:
5383
+ '''A document output format.
5384
+
5385
+ :param additional_file_format: Output settings for additional file formats.
5386
+ :param text_format: An output text format.
5364
5387
 
5365
5388
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputformat.html
5366
5389
  :exampleMetadata: fixture=_generated
@@ -5393,7 +5416,8 @@ class CfnDataAutomationProject(
5393
5416
  def additional_file_format(
5394
5417
  self,
5395
5418
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentOutputAdditionalFileFormatProperty"]:
5396
- '''
5419
+ '''Output settings for additional file formats.
5420
+
5397
5421
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputformat.html#cfn-bedrock-dataautomationproject-documentoutputformat-additionalfileformat
5398
5422
  '''
5399
5423
  result = self._values.get("additional_file_format")
@@ -5404,7 +5428,8 @@ class CfnDataAutomationProject(
5404
5428
  def text_format(
5405
5429
  self,
5406
5430
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentOutputTextFormatProperty"]:
5407
- '''
5431
+ '''An output text format.
5432
+
5408
5433
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputformat.html#cfn-bedrock-dataautomationproject-documentoutputformat-textformat
5409
5434
  '''
5410
5435
  result = self._values.get("text_format")
@@ -5433,8 +5458,9 @@ class CfnDataAutomationProject(
5433
5458
  *,
5434
5459
  types: typing.Optional[typing.Sequence[builtins.str]] = None,
5435
5460
  ) -> None:
5436
- '''
5437
- :param types:
5461
+ '''An output text format.
5462
+
5463
+ :param types: The types of output text to generate.
5438
5464
 
5439
5465
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputtextformat.html
5440
5466
  :exampleMetadata: fixture=_generated
@@ -5458,7 +5484,8 @@ class CfnDataAutomationProject(
5458
5484
 
5459
5485
  @builtins.property
5460
5486
  def types(self) -> typing.Optional[typing.List[builtins.str]]:
5461
- '''
5487
+ '''The types of output text to generate.
5488
+
5462
5489
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoutputtextformat.html#cfn-bedrock-dataautomationproject-documentoutputtextformat-types
5463
5490
  '''
5464
5491
  result = self._values.get("types")
@@ -5486,8 +5513,9 @@ class CfnDataAutomationProject(
5486
5513
  *,
5487
5514
  splitter: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.SplitterConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5488
5515
  ) -> None:
5489
- '''
5490
- :param splitter:
5516
+ '''Additional settings for a project.
5517
+
5518
+ :param splitter: Whether document splitter is enabled for a project.
5491
5519
 
5492
5520
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoverrideconfiguration.html
5493
5521
  :exampleMetadata: fixture=_generated
@@ -5515,7 +5543,8 @@ class CfnDataAutomationProject(
5515
5543
  def splitter(
5516
5544
  self,
5517
5545
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.SplitterConfigurationProperty"]]:
5518
- '''
5546
+ '''Whether document splitter is enabled for a project.
5547
+
5519
5548
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentoverrideconfiguration.html#cfn-bedrock-dataautomationproject-documentoverrideconfiguration-splitter
5520
5549
  '''
5521
5550
  result = self._values.get("splitter")
@@ -5544,9 +5573,10 @@ class CfnDataAutomationProject(
5544
5573
  bounding_box: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.DocumentBoundingBoxProperty", typing.Dict[builtins.str, typing.Any]]],
5545
5574
  granularity: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.DocumentExtractionGranularityProperty", typing.Dict[builtins.str, typing.Any]]],
5546
5575
  ) -> None:
5547
- '''
5548
- :param bounding_box:
5549
- :param granularity:
5576
+ '''Settings for generating data from documents.
5577
+
5578
+ :param bounding_box: Whether to generate bounding boxes.
5579
+ :param granularity: Which granularities to generate data for.
5550
5580
 
5551
5581
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardextraction.html
5552
5582
  :exampleMetadata: fixture=_generated
@@ -5579,7 +5609,8 @@ class CfnDataAutomationProject(
5579
5609
  def bounding_box(
5580
5610
  self,
5581
5611
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentBoundingBoxProperty"]:
5582
- '''
5612
+ '''Whether to generate bounding boxes.
5613
+
5583
5614
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardextraction.html#cfn-bedrock-dataautomationproject-documentstandardextraction-boundingbox
5584
5615
  '''
5585
5616
  result = self._values.get("bounding_box")
@@ -5590,7 +5621,8 @@ class CfnDataAutomationProject(
5590
5621
  def granularity(
5591
5622
  self,
5592
5623
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentExtractionGranularityProperty"]:
5593
- '''
5624
+ '''Which granularities to generate data for.
5625
+
5594
5626
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardextraction.html#cfn-bedrock-dataautomationproject-documentstandardextraction-granularity
5595
5627
  '''
5596
5628
  result = self._values.get("granularity")
@@ -5615,8 +5647,9 @@ class CfnDataAutomationProject(
5615
5647
  )
5616
5648
  class DocumentStandardGenerativeFieldProperty:
5617
5649
  def __init__(self, *, state: builtins.str) -> None:
5618
- '''
5619
- :param state:
5650
+ '''Settings for generating descriptions of documents.
5651
+
5652
+ :param state: Whether generating descriptions is enabled for documents.
5620
5653
 
5621
5654
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardgenerativefield.html
5622
5655
  :exampleMetadata: fixture=_generated
@@ -5640,7 +5673,8 @@ class CfnDataAutomationProject(
5640
5673
 
5641
5674
  @builtins.property
5642
5675
  def state(self) -> builtins.str:
5643
- '''
5676
+ '''Whether generating descriptions is enabled for documents.
5677
+
5644
5678
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardgenerativefield.html#cfn-bedrock-dataautomationproject-documentstandardgenerativefield-state
5645
5679
  '''
5646
5680
  result = self._values.get("state")
@@ -5675,10 +5709,11 @@ class CfnDataAutomationProject(
5675
5709
  generative_field: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.DocumentStandardGenerativeFieldProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5676
5710
  output_format: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.DocumentOutputFormatProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5677
5711
  ) -> None:
5678
- '''
5679
- :param extraction:
5680
- :param generative_field:
5681
- :param output_format:
5712
+ '''Output settings for processing documents.
5713
+
5714
+ :param extraction: Settings for populating data fields that describe the document.
5715
+ :param generative_field: Whether to generate descriptions.
5716
+ :param output_format: The output format to generate.
5682
5717
 
5683
5718
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardoutputconfiguration.html
5684
5719
  :exampleMetadata: fixture=_generated
@@ -5728,7 +5763,8 @@ class CfnDataAutomationProject(
5728
5763
  def extraction(
5729
5764
  self,
5730
5765
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentStandardExtractionProperty"]]:
5731
- '''
5766
+ '''Settings for populating data fields that describe the document.
5767
+
5732
5768
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-documentstandardoutputconfiguration-extraction
5733
5769
  '''
5734
5770
  result = self._values.get("extraction")
@@ -5738,7 +5774,8 @@ class CfnDataAutomationProject(
5738
5774
  def generative_field(
5739
5775
  self,
5740
5776
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentStandardGenerativeFieldProperty"]]:
5741
- '''
5777
+ '''Whether to generate descriptions.
5778
+
5742
5779
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-documentstandardoutputconfiguration-generativefield
5743
5780
  '''
5744
5781
  result = self._values.get("generative_field")
@@ -5748,7 +5785,8 @@ class CfnDataAutomationProject(
5748
5785
  def output_format(
5749
5786
  self,
5750
5787
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentOutputFormatProperty"]]:
5751
- '''
5788
+ '''The output format to generate.
5789
+
5752
5790
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-documentstandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-documentstandardoutputconfiguration-outputformat
5753
5791
  '''
5754
5792
  result = self._values.get("output_format")
@@ -5772,8 +5810,9 @@ class CfnDataAutomationProject(
5772
5810
  )
5773
5811
  class ImageBoundingBoxProperty:
5774
5812
  def __init__(self, *, state: builtins.str) -> None:
5775
- '''
5776
- :param state:
5813
+ '''Bounding box settings for a project.
5814
+
5815
+ :param state: Bounding box settings for a project.
5777
5816
 
5778
5817
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageboundingbox.html
5779
5818
  :exampleMetadata: fixture=_generated
@@ -5797,7 +5836,8 @@ class CfnDataAutomationProject(
5797
5836
 
5798
5837
  @builtins.property
5799
5838
  def state(self) -> builtins.str:
5800
- '''
5839
+ '''Bounding box settings for a project.
5840
+
5801
5841
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageboundingbox.html#cfn-bedrock-dataautomationproject-imageboundingbox-state
5802
5842
  '''
5803
5843
  result = self._values.get("state")
@@ -5827,9 +5867,10 @@ class CfnDataAutomationProject(
5827
5867
  state: builtins.str,
5828
5868
  types: typing.Optional[typing.Sequence[builtins.str]] = None,
5829
5869
  ) -> None:
5830
- '''
5831
- :param state:
5832
- :param types:
5870
+ '''Settings for generating categorical data from images.
5871
+
5872
+ :param state: Whether generating categorical data from images is enabled.
5873
+ :param types: The types of data to generate.
5833
5874
 
5834
5875
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageextractioncategory.html
5835
5876
  :exampleMetadata: fixture=_generated
@@ -5859,7 +5900,8 @@ class CfnDataAutomationProject(
5859
5900
 
5860
5901
  @builtins.property
5861
5902
  def state(self) -> builtins.str:
5862
- '''
5903
+ '''Whether generating categorical data from images is enabled.
5904
+
5863
5905
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageextractioncategory.html#cfn-bedrock-dataautomationproject-imageextractioncategory-state
5864
5906
  '''
5865
5907
  result = self._values.get("state")
@@ -5868,7 +5910,8 @@ class CfnDataAutomationProject(
5868
5910
 
5869
5911
  @builtins.property
5870
5912
  def types(self) -> typing.Optional[typing.List[builtins.str]]:
5871
- '''
5913
+ '''The types of data to generate.
5914
+
5872
5915
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imageextractioncategory.html#cfn-bedrock-dataautomationproject-imageextractioncategory-types
5873
5916
  '''
5874
5917
  result = self._values.get("types")
@@ -5897,9 +5940,10 @@ class CfnDataAutomationProject(
5897
5940
  bounding_box: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.ImageBoundingBoxProperty", typing.Dict[builtins.str, typing.Any]]],
5898
5941
  category: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.ImageExtractionCategoryProperty", typing.Dict[builtins.str, typing.Any]]],
5899
5942
  ) -> None:
5900
- '''
5901
- :param bounding_box:
5902
- :param category:
5943
+ '''Settings for generating data from images.
5944
+
5945
+ :param bounding_box: Settings for generating bounding boxes.
5946
+ :param category: Settings for generating categorical data.
5903
5947
 
5904
5948
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardextraction.html
5905
5949
  :exampleMetadata: fixture=_generated
@@ -5935,7 +5979,8 @@ class CfnDataAutomationProject(
5935
5979
  def bounding_box(
5936
5980
  self,
5937
5981
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.ImageBoundingBoxProperty"]:
5938
- '''
5982
+ '''Settings for generating bounding boxes.
5983
+
5939
5984
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardextraction.html#cfn-bedrock-dataautomationproject-imagestandardextraction-boundingbox
5940
5985
  '''
5941
5986
  result = self._values.get("bounding_box")
@@ -5946,7 +5991,8 @@ class CfnDataAutomationProject(
5946
5991
  def category(
5947
5992
  self,
5948
5993
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.ImageExtractionCategoryProperty"]:
5949
- '''
5994
+ '''Settings for generating categorical data.
5995
+
5950
5996
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardextraction.html#cfn-bedrock-dataautomationproject-imagestandardextraction-category
5951
5997
  '''
5952
5998
  result = self._values.get("category")
@@ -5976,9 +6022,10 @@ class CfnDataAutomationProject(
5976
6022
  state: builtins.str,
5977
6023
  types: typing.Optional[typing.Sequence[builtins.str]] = None,
5978
6024
  ) -> None:
5979
- '''
5980
- :param state:
5981
- :param types:
6025
+ '''Settings for generating descriptions of images.
6026
+
6027
+ :param state: Whether generating descriptions is enabled for images.
6028
+ :param types: Settings for generating descriptions of images.
5982
6029
 
5983
6030
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardgenerativefield.html
5984
6031
  :exampleMetadata: fixture=_generated
@@ -6008,7 +6055,8 @@ class CfnDataAutomationProject(
6008
6055
 
6009
6056
  @builtins.property
6010
6057
  def state(self) -> builtins.str:
6011
- '''
6058
+ '''Whether generating descriptions is enabled for images.
6059
+
6012
6060
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardgenerativefield.html#cfn-bedrock-dataautomationproject-imagestandardgenerativefield-state
6013
6061
  '''
6014
6062
  result = self._values.get("state")
@@ -6017,7 +6065,8 @@ class CfnDataAutomationProject(
6017
6065
 
6018
6066
  @builtins.property
6019
6067
  def types(self) -> typing.Optional[typing.List[builtins.str]]:
6020
- '''
6068
+ '''Settings for generating descriptions of images.
6069
+
6021
6070
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardgenerativefield.html#cfn-bedrock-dataautomationproject-imagestandardgenerativefield-types
6022
6071
  '''
6023
6072
  result = self._values.get("types")
@@ -6049,9 +6098,10 @@ class CfnDataAutomationProject(
6049
6098
  extraction: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.ImageStandardExtractionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6050
6099
  generative_field: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.ImageStandardGenerativeFieldProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6051
6100
  ) -> None:
6052
- '''
6053
- :param extraction:
6054
- :param generative_field:
6101
+ '''Output settings for processing images.
6102
+
6103
+ :param extraction: Settings for populating data fields that describe the image.
6104
+ :param generative_field: Whether to generate descriptions of the data.
6055
6105
 
6056
6106
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardoutputconfiguration.html
6057
6107
  :exampleMetadata: fixture=_generated
@@ -6096,7 +6146,8 @@ class CfnDataAutomationProject(
6096
6146
  def extraction(
6097
6147
  self,
6098
6148
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.ImageStandardExtractionProperty"]]:
6099
- '''
6149
+ '''Settings for populating data fields that describe the image.
6150
+
6100
6151
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-imagestandardoutputconfiguration-extraction
6101
6152
  '''
6102
6153
  result = self._values.get("extraction")
@@ -6106,7 +6157,8 @@ class CfnDataAutomationProject(
6106
6157
  def generative_field(
6107
6158
  self,
6108
6159
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.ImageStandardGenerativeFieldProperty"]]:
6109
- '''
6160
+ '''Whether to generate descriptions of the data.
6161
+
6110
6162
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-imagestandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-imagestandardoutputconfiguration-generativefield
6111
6163
  '''
6112
6164
  result = self._values.get("generative_field")
@@ -6134,9 +6186,9 @@ class CfnDataAutomationProject(
6134
6186
  *,
6135
6187
  document: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.DocumentOverrideConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6136
6188
  ) -> None:
6137
- '''Override configuration.
6189
+ '''Additional settings for a project.
6138
6190
 
6139
- :param document:
6191
+ :param document: Additional settings for a project.
6140
6192
 
6141
6193
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-overrideconfiguration.html
6142
6194
  :exampleMetadata: fixture=_generated
@@ -6166,7 +6218,8 @@ class CfnDataAutomationProject(
6166
6218
  def document(
6167
6219
  self,
6168
6220
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentOverrideConfigurationProperty"]]:
6169
- '''
6221
+ '''Additional settings for a project.
6222
+
6170
6223
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-overrideconfiguration.html#cfn-bedrock-dataautomationproject-overrideconfiguration-document
6171
6224
  '''
6172
6225
  result = self._values.get("document")
@@ -6190,8 +6243,11 @@ class CfnDataAutomationProject(
6190
6243
  )
6191
6244
  class SplitterConfigurationProperty:
6192
6245
  def __init__(self, *, state: typing.Optional[builtins.str] = None) -> None:
6193
- '''
6194
- :param state:
6246
+ '''Document splitter settings.
6247
+
6248
+ If a document is too large to be processed in one pass, the document splitter splits it into smaller documents.
6249
+
6250
+ :param state: Whether document splitter is enabled for a project.
6195
6251
 
6196
6252
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-splitterconfiguration.html
6197
6253
  :exampleMetadata: fixture=_generated
@@ -6215,7 +6271,8 @@ class CfnDataAutomationProject(
6215
6271
 
6216
6272
  @builtins.property
6217
6273
  def state(self) -> typing.Optional[builtins.str]:
6218
- '''
6274
+ '''Whether document splitter is enabled for a project.
6275
+
6219
6276
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-splitterconfiguration.html#cfn-bedrock-dataautomationproject-splitterconfiguration-state
6220
6277
  '''
6221
6278
  result = self._values.get("state")
@@ -6251,12 +6308,12 @@ class CfnDataAutomationProject(
6251
6308
  image: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.ImageStandardOutputConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6252
6309
  video: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.VideoStandardOutputConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6253
6310
  ) -> None:
6254
- '''Standard output configuration.
6311
+ '''The project's standard output configuration.
6255
6312
 
6256
- :param audio:
6257
- :param document:
6258
- :param image:
6259
- :param video:
6313
+ :param audio: Settings for processing audio.
6314
+ :param document: Settings for processing documents.
6315
+ :param image: Settings for processing images.
6316
+ :param video: Settings for processing video.
6260
6317
 
6261
6318
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-standardoutputconfiguration.html
6262
6319
  :exampleMetadata: fixture=_generated
@@ -6365,7 +6422,8 @@ class CfnDataAutomationProject(
6365
6422
  def audio(
6366
6423
  self,
6367
6424
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.AudioStandardOutputConfigurationProperty"]]:
6368
- '''
6425
+ '''Settings for processing audio.
6426
+
6369
6427
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-standardoutputconfiguration.html#cfn-bedrock-dataautomationproject-standardoutputconfiguration-audio
6370
6428
  '''
6371
6429
  result = self._values.get("audio")
@@ -6375,7 +6433,8 @@ class CfnDataAutomationProject(
6375
6433
  def document(
6376
6434
  self,
6377
6435
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.DocumentStandardOutputConfigurationProperty"]]:
6378
- '''
6436
+ '''Settings for processing documents.
6437
+
6379
6438
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-standardoutputconfiguration.html#cfn-bedrock-dataautomationproject-standardoutputconfiguration-document
6380
6439
  '''
6381
6440
  result = self._values.get("document")
@@ -6385,7 +6444,8 @@ class CfnDataAutomationProject(
6385
6444
  def image(
6386
6445
  self,
6387
6446
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.ImageStandardOutputConfigurationProperty"]]:
6388
- '''
6447
+ '''Settings for processing images.
6448
+
6389
6449
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-standardoutputconfiguration.html#cfn-bedrock-dataautomationproject-standardoutputconfiguration-image
6390
6450
  '''
6391
6451
  result = self._values.get("image")
@@ -6395,7 +6455,8 @@ class CfnDataAutomationProject(
6395
6455
  def video(
6396
6456
  self,
6397
6457
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.VideoStandardOutputConfigurationProperty"]]:
6398
- '''
6458
+ '''Settings for processing video.
6459
+
6399
6460
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-standardoutputconfiguration.html#cfn-bedrock-dataautomationproject-standardoutputconfiguration-video
6400
6461
  '''
6401
6462
  result = self._values.get("video")
@@ -6419,8 +6480,9 @@ class CfnDataAutomationProject(
6419
6480
  )
6420
6481
  class VideoBoundingBoxProperty:
6421
6482
  def __init__(self, *, state: builtins.str) -> None:
6422
- '''
6423
- :param state:
6483
+ '''Bounding box settings for video.
6484
+
6485
+ :param state: Whether bounding boxes are enabled for video.
6424
6486
 
6425
6487
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videoboundingbox.html
6426
6488
  :exampleMetadata: fixture=_generated
@@ -6444,7 +6506,8 @@ class CfnDataAutomationProject(
6444
6506
 
6445
6507
  @builtins.property
6446
6508
  def state(self) -> builtins.str:
6447
- '''
6509
+ '''Whether bounding boxes are enabled for video.
6510
+
6448
6511
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videoboundingbox.html#cfn-bedrock-dataautomationproject-videoboundingbox-state
6449
6512
  '''
6450
6513
  result = self._values.get("state")
@@ -6474,9 +6537,10 @@ class CfnDataAutomationProject(
6474
6537
  state: builtins.str,
6475
6538
  types: typing.Optional[typing.Sequence[builtins.str]] = None,
6476
6539
  ) -> None:
6477
- '''
6478
- :param state:
6479
- :param types:
6540
+ '''Settings for generating categorical data from video.
6541
+
6542
+ :param state: Whether generating categorical data from video is enabled.
6543
+ :param types: The types of data to generate.
6480
6544
 
6481
6545
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videoextractioncategory.html
6482
6546
  :exampleMetadata: fixture=_generated
@@ -6506,7 +6570,8 @@ class CfnDataAutomationProject(
6506
6570
 
6507
6571
  @builtins.property
6508
6572
  def state(self) -> builtins.str:
6509
- '''
6573
+ '''Whether generating categorical data from video is enabled.
6574
+
6510
6575
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videoextractioncategory.html#cfn-bedrock-dataautomationproject-videoextractioncategory-state
6511
6576
  '''
6512
6577
  result = self._values.get("state")
@@ -6515,7 +6580,8 @@ class CfnDataAutomationProject(
6515
6580
 
6516
6581
  @builtins.property
6517
6582
  def types(self) -> typing.Optional[typing.List[builtins.str]]:
6518
- '''
6583
+ '''The types of data to generate.
6584
+
6519
6585
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videoextractioncategory.html#cfn-bedrock-dataautomationproject-videoextractioncategory-types
6520
6586
  '''
6521
6587
  result = self._values.get("types")
@@ -6544,9 +6610,10 @@ class CfnDataAutomationProject(
6544
6610
  bounding_box: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.VideoBoundingBoxProperty", typing.Dict[builtins.str, typing.Any]]],
6545
6611
  category: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.VideoExtractionCategoryProperty", typing.Dict[builtins.str, typing.Any]]],
6546
6612
  ) -> None:
6547
- '''
6548
- :param bounding_box:
6549
- :param category:
6613
+ '''Settings for generating data from video.
6614
+
6615
+ :param bounding_box: Settings for generating bounding boxes.
6616
+ :param category: Settings for generating categorical data.
6550
6617
 
6551
6618
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardextraction.html
6552
6619
  :exampleMetadata: fixture=_generated
@@ -6582,7 +6649,8 @@ class CfnDataAutomationProject(
6582
6649
  def bounding_box(
6583
6650
  self,
6584
6651
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.VideoBoundingBoxProperty"]:
6585
- '''
6652
+ '''Settings for generating bounding boxes.
6653
+
6586
6654
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardextraction.html#cfn-bedrock-dataautomationproject-videostandardextraction-boundingbox
6587
6655
  '''
6588
6656
  result = self._values.get("bounding_box")
@@ -6593,7 +6661,8 @@ class CfnDataAutomationProject(
6593
6661
  def category(
6594
6662
  self,
6595
6663
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.VideoExtractionCategoryProperty"]:
6596
- '''
6664
+ '''Settings for generating categorical data.
6665
+
6597
6666
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardextraction.html#cfn-bedrock-dataautomationproject-videostandardextraction-category
6598
6667
  '''
6599
6668
  result = self._values.get("category")
@@ -6623,9 +6692,10 @@ class CfnDataAutomationProject(
6623
6692
  state: builtins.str,
6624
6693
  types: typing.Optional[typing.Sequence[builtins.str]] = None,
6625
6694
  ) -> None:
6626
- '''
6627
- :param state:
6628
- :param types:
6695
+ '''Settings for generating descriptions of video.
6696
+
6697
+ :param state: Whether generating descriptions is enabled for video.
6698
+ :param types: The types of description to generate.
6629
6699
 
6630
6700
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardgenerativefield.html
6631
6701
  :exampleMetadata: fixture=_generated
@@ -6655,7 +6725,8 @@ class CfnDataAutomationProject(
6655
6725
 
6656
6726
  @builtins.property
6657
6727
  def state(self) -> builtins.str:
6658
- '''
6728
+ '''Whether generating descriptions is enabled for video.
6729
+
6659
6730
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardgenerativefield.html#cfn-bedrock-dataautomationproject-videostandardgenerativefield-state
6660
6731
  '''
6661
6732
  result = self._values.get("state")
@@ -6664,7 +6735,8 @@ class CfnDataAutomationProject(
6664
6735
 
6665
6736
  @builtins.property
6666
6737
  def types(self) -> typing.Optional[typing.List[builtins.str]]:
6667
- '''
6738
+ '''The types of description to generate.
6739
+
6668
6740
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardgenerativefield.html#cfn-bedrock-dataautomationproject-videostandardgenerativefield-types
6669
6741
  '''
6670
6742
  result = self._values.get("types")
@@ -6696,9 +6768,10 @@ class CfnDataAutomationProject(
6696
6768
  extraction: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.VideoStandardExtractionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6697
6769
  generative_field: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.VideoStandardGenerativeFieldProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
6698
6770
  ) -> None:
6699
- '''
6700
- :param extraction:
6701
- :param generative_field:
6771
+ '''Output settings for processing video.
6772
+
6773
+ :param extraction: Settings for populating data fields that describe the video.
6774
+ :param generative_field: Whether to generate descriptions of the video.
6702
6775
 
6703
6776
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardoutputconfiguration.html
6704
6777
  :exampleMetadata: fixture=_generated
@@ -6743,7 +6816,8 @@ class CfnDataAutomationProject(
6743
6816
  def extraction(
6744
6817
  self,
6745
6818
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.VideoStandardExtractionProperty"]]:
6746
- '''
6819
+ '''Settings for populating data fields that describe the video.
6820
+
6747
6821
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-videostandardoutputconfiguration-extraction
6748
6822
  '''
6749
6823
  result = self._values.get("extraction")
@@ -6753,7 +6827,8 @@ class CfnDataAutomationProject(
6753
6827
  def generative_field(
6754
6828
  self,
6755
6829
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.VideoStandardGenerativeFieldProperty"]]:
6756
- '''
6830
+ '''Whether to generate descriptions of the video.
6831
+
6757
6832
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-videostandardoutputconfiguration.html#cfn-bedrock-dataautomationproject-videostandardoutputconfiguration-generativefield
6758
6833
  '''
6759
6834
  result = self._values.get("generative_field")
@@ -6800,13 +6875,13 @@ class CfnDataAutomationProjectProps:
6800
6875
  ) -> None:
6801
6876
  '''Properties for defining a ``CfnDataAutomationProject``.
6802
6877
 
6803
- :param project_name: Name of the DataAutomationProject.
6804
- :param custom_output_configuration: Custom output configuration.
6805
- :param kms_encryption_context: KMS encryption context.
6806
- :param kms_key_id: KMS key identifier.
6807
- :param override_configuration: Override configuration.
6808
- :param project_description: Description of the DataAutomationProject.
6809
- :param standard_output_configuration: Standard output configuration.
6878
+ :param project_name: The project's name.
6879
+ :param custom_output_configuration: Blueprints to apply to objects processed by the project.
6880
+ :param kms_encryption_context: The AWS KMS encryption context to use for encryption.
6881
+ :param kms_key_id: The AWS KMS key to use for encryption.
6882
+ :param override_configuration: Additional settings for the project.
6883
+ :param project_description: The project's description.
6884
+ :param standard_output_configuration: The project's standard output configuration.
6810
6885
  :param tags: List of Tags.
6811
6886
 
6812
6887
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html
@@ -6956,7 +7031,7 @@ class CfnDataAutomationProjectProps:
6956
7031
 
6957
7032
  @builtins.property
6958
7033
  def project_name(self) -> builtins.str:
6959
- '''Name of the DataAutomationProject.
7034
+ '''The project's name.
6960
7035
 
6961
7036
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#cfn-bedrock-dataautomationproject-projectname
6962
7037
  '''
@@ -6968,7 +7043,7 @@ class CfnDataAutomationProjectProps:
6968
7043
  def custom_output_configuration(
6969
7044
  self,
6970
7045
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataAutomationProject.CustomOutputConfigurationProperty]]:
6971
- '''Custom output configuration.
7046
+ '''Blueprints to apply to objects processed by the project.
6972
7047
 
6973
7048
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#cfn-bedrock-dataautomationproject-customoutputconfiguration
6974
7049
  '''
@@ -6979,7 +7054,7 @@ class CfnDataAutomationProjectProps:
6979
7054
  def kms_encryption_context(
6980
7055
  self,
6981
7056
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
6982
- '''KMS encryption context.
7057
+ '''The AWS KMS encryption context to use for encryption.
6983
7058
 
6984
7059
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#cfn-bedrock-dataautomationproject-kmsencryptioncontext
6985
7060
  '''
@@ -6988,7 +7063,7 @@ class CfnDataAutomationProjectProps:
6988
7063
 
6989
7064
  @builtins.property
6990
7065
  def kms_key_id(self) -> typing.Optional[builtins.str]:
6991
- '''KMS key identifier.
7066
+ '''The AWS KMS key to use for encryption.
6992
7067
 
6993
7068
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#cfn-bedrock-dataautomationproject-kmskeyid
6994
7069
  '''
@@ -6999,7 +7074,7 @@ class CfnDataAutomationProjectProps:
6999
7074
  def override_configuration(
7000
7075
  self,
7001
7076
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataAutomationProject.OverrideConfigurationProperty]]:
7002
- '''Override configuration.
7077
+ '''Additional settings for the project.
7003
7078
 
7004
7079
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#cfn-bedrock-dataautomationproject-overrideconfiguration
7005
7080
  '''
@@ -7008,7 +7083,7 @@ class CfnDataAutomationProjectProps:
7008
7083
 
7009
7084
  @builtins.property
7010
7085
  def project_description(self) -> typing.Optional[builtins.str]:
7011
- '''Description of the DataAutomationProject.
7086
+ '''The project's description.
7012
7087
 
7013
7088
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#cfn-bedrock-dataautomationproject-projectdescription
7014
7089
  '''
@@ -7019,7 +7094,7 @@ class CfnDataAutomationProjectProps:
7019
7094
  def standard_output_configuration(
7020
7095
  self,
7021
7096
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataAutomationProject.StandardOutputConfigurationProperty]]:
7022
- '''Standard output configuration.
7097
+ '''The project's standard output configuration.
7023
7098
 
7024
7099
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#cfn-bedrock-dataautomationproject-standardoutputconfiguration
7025
7100
  '''
@@ -7053,7 +7128,13 @@ class CfnDataSource(
7053
7128
  metaclass=jsii.JSIIMeta,
7054
7129
  jsii_type="aws-cdk-lib.aws_bedrock.CfnDataSource",
7055
7130
  ):
7056
- '''Specifies a data source as a resource in a top-level template. Minimally, you must specify the following properties:.
7131
+ '''.. epigraph::
7132
+
7133
+ Properties with ``__Update requires: Replacement__`` can result in the creation of a new data source and deletion of the old one.
7134
+
7135
+ This can happen if you also change the Name of the data source.
7136
+
7137
+ Specifies a data source as a resource in a top-level template. Minimally, you must specify the following properties:
7057
7138
 
7058
7139
  - Name – Specify a name for the data source.
7059
7140
  - KnowledgeBaseId – Specify the ID of the knowledge base for the data source to belong to.
@@ -7179,11 +7260,14 @@ class CfnDataSource(
7179
7260
  # the properties below are optional
7180
7261
  crawler_configuration=bedrock.CfnDataSource.WebCrawlerConfigurationProperty(
7181
7262
  crawler_limits=bedrock.CfnDataSource.WebCrawlerLimitsProperty(
7263
+ max_pages=123,
7182
7264
  rate_limit=123
7183
7265
  ),
7184
7266
  exclusion_filters=["exclusionFilters"],
7185
7267
  inclusion_filters=["inclusionFilters"],
7186
- scope="scope"
7268
+ scope="scope",
7269
+ user_agent="userAgent",
7270
+ user_agent_header="userAgentHeader"
7187
7271
  )
7188
7272
  )
7189
7273
  ),
@@ -7217,6 +7301,17 @@ class CfnDataSource(
7217
7301
  max_tokens=123
7218
7302
  )
7219
7303
  ),
7304
+ context_enrichment_configuration=bedrock.CfnDataSource.ContextEnrichmentConfigurationProperty(
7305
+ type="type",
7306
+
7307
+ # the properties below are optional
7308
+ bedrock_foundation_model_configuration=bedrock.CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty(
7309
+ enrichment_strategy_configuration=bedrock.CfnDataSource.EnrichmentStrategyConfigurationProperty(
7310
+ method="method"
7311
+ ),
7312
+ model_arn="modelArn"
7313
+ )
7314
+ ),
7220
7315
  custom_transformation_configuration=bedrock.CfnDataSource.CustomTransformationConfigurationProperty(
7221
7316
  intermediate_storage=bedrock.CfnDataSource.IntermediateStorageProperty(
7222
7317
  s3_location=bedrock.CfnDataSource.S3LocationProperty(
@@ -7332,6 +7427,17 @@ class CfnDataSource(
7332
7427
  '''
7333
7428
  return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
7334
7429
 
7430
+ @builtins.property
7431
+ @jsii.member(jsii_name="attrDataSourceConfigurationWebConfigurationCrawlerConfigurationUserAgentHeader")
7432
+ def attr_data_source_configuration_web_configuration_crawler_configuration_user_agent_header(
7433
+ self,
7434
+ ) -> builtins.str:
7435
+ '''The full user agent header, including UUID and suffix.
7436
+
7437
+ :cloudformationAttribute: DataSourceConfiguration.WebConfiguration.CrawlerConfiguration.UserAgentHeader
7438
+ '''
7439
+ return typing.cast(builtins.str, jsii.get(self, "attrDataSourceConfigurationWebConfigurationCrawlerConfigurationUserAgentHeader"))
7440
+
7335
7441
  @builtins.property
7336
7442
  @jsii.member(jsii_name="attrDataSourceId")
7337
7443
  def attr_data_source_id(self) -> builtins.str:
@@ -7633,6 +7739,84 @@ class CfnDataSource(
7633
7739
  k + "=" + repr(v) for k, v in self._values.items()
7634
7740
  )
7635
7741
 
7742
+ @jsii.data_type(
7743
+ jsii_type="aws-cdk-lib.aws_bedrock.CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty",
7744
+ jsii_struct_bases=[],
7745
+ name_mapping={
7746
+ "enrichment_strategy_configuration": "enrichmentStrategyConfiguration",
7747
+ "model_arn": "modelArn",
7748
+ },
7749
+ )
7750
+ class BedrockFoundationModelContextEnrichmentConfigurationProperty:
7751
+ def __init__(
7752
+ self,
7753
+ *,
7754
+ enrichment_strategy_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.EnrichmentStrategyConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
7755
+ model_arn: builtins.str,
7756
+ ) -> None:
7757
+ '''Bedrock Foundation Model configuration to be used for Context Enrichment.
7758
+
7759
+ :param enrichment_strategy_configuration: Strategy to be used when using Bedrock Foundation Model for Context Enrichment.
7760
+ :param model_arn: The model's ARN.
7761
+
7762
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelcontextenrichmentconfiguration.html
7763
+ :exampleMetadata: fixture=_generated
7764
+
7765
+ Example::
7766
+
7767
+ # The code below shows an example of how to instantiate this type.
7768
+ # The values are placeholders you should change.
7769
+ from aws_cdk import aws_bedrock as bedrock
7770
+
7771
+ bedrock_foundation_model_context_enrichment_configuration_property = bedrock.CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty(
7772
+ enrichment_strategy_configuration=bedrock.CfnDataSource.EnrichmentStrategyConfigurationProperty(
7773
+ method="method"
7774
+ ),
7775
+ model_arn="modelArn"
7776
+ )
7777
+ '''
7778
+ if __debug__:
7779
+ type_hints = typing.get_type_hints(_typecheckingstub__5a89b4cf2c8acc5a8649678b03650df048cec78aecf83c8401430c76e7d47bc5)
7780
+ check_type(argname="argument enrichment_strategy_configuration", value=enrichment_strategy_configuration, expected_type=type_hints["enrichment_strategy_configuration"])
7781
+ check_type(argname="argument model_arn", value=model_arn, expected_type=type_hints["model_arn"])
7782
+ self._values: typing.Dict[builtins.str, typing.Any] = {
7783
+ "enrichment_strategy_configuration": enrichment_strategy_configuration,
7784
+ "model_arn": model_arn,
7785
+ }
7786
+
7787
+ @builtins.property
7788
+ def enrichment_strategy_configuration(
7789
+ self,
7790
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnDataSource.EnrichmentStrategyConfigurationProperty"]:
7791
+ '''Strategy to be used when using Bedrock Foundation Model for Context Enrichment.
7792
+
7793
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelcontextenrichmentconfiguration.html#cfn-bedrock-datasource-bedrockfoundationmodelcontextenrichmentconfiguration-enrichmentstrategyconfiguration
7794
+ '''
7795
+ result = self._values.get("enrichment_strategy_configuration")
7796
+ assert result is not None, "Required property 'enrichment_strategy_configuration' is missing"
7797
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDataSource.EnrichmentStrategyConfigurationProperty"], result)
7798
+
7799
+ @builtins.property
7800
+ def model_arn(self) -> builtins.str:
7801
+ '''The model's ARN.
7802
+
7803
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelcontextenrichmentconfiguration.html#cfn-bedrock-datasource-bedrockfoundationmodelcontextenrichmentconfiguration-modelarn
7804
+ '''
7805
+ result = self._values.get("model_arn")
7806
+ assert result is not None, "Required property 'model_arn' is missing"
7807
+ return typing.cast(builtins.str, result)
7808
+
7809
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
7810
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7811
+
7812
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
7813
+ return not (rhs == self)
7814
+
7815
+ def __repr__(self) -> str:
7816
+ return "BedrockFoundationModelContextEnrichmentConfigurationProperty(%s)" % ", ".join(
7817
+ k + "=" + repr(v) for k, v in self._values.items()
7818
+ )
7819
+
7636
7820
  @jsii.data_type(
7637
7821
  jsii_type="aws-cdk-lib.aws_bedrock.CfnDataSource.ChunkingConfigurationProperty",
7638
7822
  jsii_struct_bases=[],
@@ -8058,6 +8242,89 @@ class CfnDataSource(
8058
8242
  k + "=" + repr(v) for k, v in self._values.items()
8059
8243
  )
8060
8244
 
8245
+ @jsii.data_type(
8246
+ jsii_type="aws-cdk-lib.aws_bedrock.CfnDataSource.ContextEnrichmentConfigurationProperty",
8247
+ jsii_struct_bases=[],
8248
+ name_mapping={
8249
+ "type": "type",
8250
+ "bedrock_foundation_model_configuration": "bedrockFoundationModelConfiguration",
8251
+ },
8252
+ )
8253
+ class ContextEnrichmentConfigurationProperty:
8254
+ def __init__(
8255
+ self,
8256
+ *,
8257
+ type: builtins.str,
8258
+ bedrock_foundation_model_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
8259
+ ) -> None:
8260
+ '''Additional Enrichment Configuration for example when using GraphRag.
8261
+
8262
+ :param type: Enrichment type to be used for the vector database.
8263
+ :param bedrock_foundation_model_configuration: Bedrock Foundation Model configuration to be used for Context Enrichment.
8264
+
8265
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-contextenrichmentconfiguration.html
8266
+ :exampleMetadata: fixture=_generated
8267
+
8268
+ Example::
8269
+
8270
+ # The code below shows an example of how to instantiate this type.
8271
+ # The values are placeholders you should change.
8272
+ from aws_cdk import aws_bedrock as bedrock
8273
+
8274
+ context_enrichment_configuration_property = bedrock.CfnDataSource.ContextEnrichmentConfigurationProperty(
8275
+ type="type",
8276
+
8277
+ # the properties below are optional
8278
+ bedrock_foundation_model_configuration=bedrock.CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty(
8279
+ enrichment_strategy_configuration=bedrock.CfnDataSource.EnrichmentStrategyConfigurationProperty(
8280
+ method="method"
8281
+ ),
8282
+ model_arn="modelArn"
8283
+ )
8284
+ )
8285
+ '''
8286
+ if __debug__:
8287
+ type_hints = typing.get_type_hints(_typecheckingstub__4a8bedb8c03e6599f8bee498faf320fa0afe2ebb758107fb96251adfe3f9031f)
8288
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
8289
+ check_type(argname="argument bedrock_foundation_model_configuration", value=bedrock_foundation_model_configuration, expected_type=type_hints["bedrock_foundation_model_configuration"])
8290
+ self._values: typing.Dict[builtins.str, typing.Any] = {
8291
+ "type": type,
8292
+ }
8293
+ if bedrock_foundation_model_configuration is not None:
8294
+ self._values["bedrock_foundation_model_configuration"] = bedrock_foundation_model_configuration
8295
+
8296
+ @builtins.property
8297
+ def type(self) -> builtins.str:
8298
+ '''Enrichment type to be used for the vector database.
8299
+
8300
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-contextenrichmentconfiguration.html#cfn-bedrock-datasource-contextenrichmentconfiguration-type
8301
+ '''
8302
+ result = self._values.get("type")
8303
+ assert result is not None, "Required property 'type' is missing"
8304
+ return typing.cast(builtins.str, result)
8305
+
8306
+ @builtins.property
8307
+ def bedrock_foundation_model_configuration(
8308
+ self,
8309
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty"]]:
8310
+ '''Bedrock Foundation Model configuration to be used for Context Enrichment.
8311
+
8312
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-contextenrichmentconfiguration.html#cfn-bedrock-datasource-contextenrichmentconfiguration-bedrockfoundationmodelconfiguration
8313
+ '''
8314
+ result = self._values.get("bedrock_foundation_model_configuration")
8315
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty"]], result)
8316
+
8317
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
8318
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
8319
+
8320
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
8321
+ return not (rhs == self)
8322
+
8323
+ def __repr__(self) -> str:
8324
+ return "ContextEnrichmentConfigurationProperty(%s)" % ", ".join(
8325
+ k + "=" + repr(v) for k, v in self._values.items()
8326
+ )
8327
+
8061
8328
  @jsii.data_type(
8062
8329
  jsii_type="aws-cdk-lib.aws_bedrock.CfnDataSource.CrawlFilterConfigurationProperty",
8063
8330
  jsii_struct_bases=[],
@@ -8383,11 +8650,14 @@ class CfnDataSource(
8383
8650
  # the properties below are optional
8384
8651
  crawler_configuration=bedrock.CfnDataSource.WebCrawlerConfigurationProperty(
8385
8652
  crawler_limits=bedrock.CfnDataSource.WebCrawlerLimitsProperty(
8653
+ max_pages=123,
8386
8654
  rate_limit=123
8387
8655
  ),
8388
8656
  exclusion_filters=["exclusionFilters"],
8389
8657
  inclusion_filters=["inclusionFilters"],
8390
- scope="scope"
8658
+ scope="scope",
8659
+ user_agent="userAgent",
8660
+ user_agent_header="userAgentHeader"
8391
8661
  )
8392
8662
  )
8393
8663
  )
@@ -8506,6 +8776,58 @@ class CfnDataSource(
8506
8776
  k + "=" + repr(v) for k, v in self._values.items()
8507
8777
  )
8508
8778
 
8779
+ @jsii.data_type(
8780
+ jsii_type="aws-cdk-lib.aws_bedrock.CfnDataSource.EnrichmentStrategyConfigurationProperty",
8781
+ jsii_struct_bases=[],
8782
+ name_mapping={"method": "method"},
8783
+ )
8784
+ class EnrichmentStrategyConfigurationProperty:
8785
+ def __init__(self, *, method: builtins.str) -> None:
8786
+ '''Strategy to be used when using Bedrock Foundation Model for Context Enrichment.
8787
+
8788
+ :param method: Enrichment Strategy method.
8789
+
8790
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-enrichmentstrategyconfiguration.html
8791
+ :exampleMetadata: fixture=_generated
8792
+
8793
+ Example::
8794
+
8795
+ # The code below shows an example of how to instantiate this type.
8796
+ # The values are placeholders you should change.
8797
+ from aws_cdk import aws_bedrock as bedrock
8798
+
8799
+ enrichment_strategy_configuration_property = bedrock.CfnDataSource.EnrichmentStrategyConfigurationProperty(
8800
+ method="method"
8801
+ )
8802
+ '''
8803
+ if __debug__:
8804
+ type_hints = typing.get_type_hints(_typecheckingstub__644d76f9050da2eaff32542043cca01ff61629f76ef2e0191725886223a5f368)
8805
+ check_type(argname="argument method", value=method, expected_type=type_hints["method"])
8806
+ self._values: typing.Dict[builtins.str, typing.Any] = {
8807
+ "method": method,
8808
+ }
8809
+
8810
+ @builtins.property
8811
+ def method(self) -> builtins.str:
8812
+ '''Enrichment Strategy method.
8813
+
8814
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-enrichmentstrategyconfiguration.html#cfn-bedrock-datasource-enrichmentstrategyconfiguration-method
8815
+ '''
8816
+ result = self._values.get("method")
8817
+ assert result is not None, "Required property 'method' is missing"
8818
+ return typing.cast(builtins.str, result)
8819
+
8820
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
8821
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
8822
+
8823
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
8824
+ return not (rhs == self)
8825
+
8826
+ def __repr__(self) -> str:
8827
+ return "EnrichmentStrategyConfigurationProperty(%s)" % ", ".join(
8828
+ k + "=" + repr(v) for k, v in self._values.items()
8829
+ )
8830
+
8509
8831
  @jsii.data_type(
8510
8832
  jsii_type="aws-cdk-lib.aws_bedrock.CfnDataSource.FixedSizeChunkingConfigurationProperty",
8511
8833
  jsii_struct_bases=[],
@@ -10306,6 +10628,7 @@ class CfnDataSource(
10306
10628
  jsii_struct_bases=[],
10307
10629
  name_mapping={
10308
10630
  "chunking_configuration": "chunkingConfiguration",
10631
+ "context_enrichment_configuration": "contextEnrichmentConfiguration",
10309
10632
  "custom_transformation_configuration": "customTransformationConfiguration",
10310
10633
  "parsing_configuration": "parsingConfiguration",
10311
10634
  },
@@ -10315,12 +10638,14 @@ class CfnDataSource(
10315
10638
  self,
10316
10639
  *,
10317
10640
  chunking_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.ChunkingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
10641
+ context_enrichment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.ContextEnrichmentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
10318
10642
  custom_transformation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.CustomTransformationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
10319
10643
  parsing_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.ParsingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
10320
10644
  ) -> None:
10321
10645
  '''Contains details about how to ingest the documents in a data source.
10322
10646
 
10323
10647
  :param chunking_configuration: Details about how to chunk the documents in the data source. A *chunk* refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
10648
+ :param context_enrichment_configuration: Additional Enrichment Configuration for example when using GraphRag.
10324
10649
  :param custom_transformation_configuration: A custom document transformer for parsed data source documents.
10325
10650
  :param parsing_configuration: Configurations for a parser to use for parsing documents in your data source. If you exclude this field, the default parser will be used.
10326
10651
 
@@ -10354,6 +10679,17 @@ class CfnDataSource(
10354
10679
  max_tokens=123
10355
10680
  )
10356
10681
  ),
10682
+ context_enrichment_configuration=bedrock.CfnDataSource.ContextEnrichmentConfigurationProperty(
10683
+ type="type",
10684
+
10685
+ # the properties below are optional
10686
+ bedrock_foundation_model_configuration=bedrock.CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty(
10687
+ enrichment_strategy_configuration=bedrock.CfnDataSource.EnrichmentStrategyConfigurationProperty(
10688
+ method="method"
10689
+ ),
10690
+ model_arn="modelArn"
10691
+ )
10692
+ ),
10357
10693
  custom_transformation_configuration=bedrock.CfnDataSource.CustomTransformationConfigurationProperty(
10358
10694
  intermediate_storage=bedrock.CfnDataSource.IntermediateStorageProperty(
10359
10695
  s3_location=bedrock.CfnDataSource.S3LocationProperty(
@@ -10391,11 +10727,14 @@ class CfnDataSource(
10391
10727
  if __debug__:
10392
10728
  type_hints = typing.get_type_hints(_typecheckingstub__37255db3e7cacfdeadc2d28bfe7938fd13ab4a2cd72190024a531eddf1fd9ec0)
10393
10729
  check_type(argname="argument chunking_configuration", value=chunking_configuration, expected_type=type_hints["chunking_configuration"])
10730
+ check_type(argname="argument context_enrichment_configuration", value=context_enrichment_configuration, expected_type=type_hints["context_enrichment_configuration"])
10394
10731
  check_type(argname="argument custom_transformation_configuration", value=custom_transformation_configuration, expected_type=type_hints["custom_transformation_configuration"])
10395
10732
  check_type(argname="argument parsing_configuration", value=parsing_configuration, expected_type=type_hints["parsing_configuration"])
10396
10733
  self._values: typing.Dict[builtins.str, typing.Any] = {}
10397
10734
  if chunking_configuration is not None:
10398
10735
  self._values["chunking_configuration"] = chunking_configuration
10736
+ if context_enrichment_configuration is not None:
10737
+ self._values["context_enrichment_configuration"] = context_enrichment_configuration
10399
10738
  if custom_transformation_configuration is not None:
10400
10739
  self._values["custom_transformation_configuration"] = custom_transformation_configuration
10401
10740
  if parsing_configuration is not None:
@@ -10414,6 +10753,17 @@ class CfnDataSource(
10414
10753
  result = self._values.get("chunking_configuration")
10415
10754
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.ChunkingConfigurationProperty"]], result)
10416
10755
 
10756
+ @builtins.property
10757
+ def context_enrichment_configuration(
10758
+ self,
10759
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.ContextEnrichmentConfigurationProperty"]]:
10760
+ '''Additional Enrichment Configuration for example when using GraphRag.
10761
+
10762
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-vectoringestionconfiguration.html#cfn-bedrock-datasource-vectoringestionconfiguration-contextenrichmentconfiguration
10763
+ '''
10764
+ result = self._values.get("context_enrichment_configuration")
10765
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.ContextEnrichmentConfigurationProperty"]], result)
10766
+
10417
10767
  @builtins.property
10418
10768
  def custom_transformation_configuration(
10419
10769
  self,
@@ -10457,6 +10807,8 @@ class CfnDataSource(
10457
10807
  "exclusion_filters": "exclusionFilters",
10458
10808
  "inclusion_filters": "inclusionFilters",
10459
10809
  "scope": "scope",
10810
+ "user_agent": "userAgent",
10811
+ "user_agent_header": "userAgentHeader",
10460
10812
  },
10461
10813
  )
10462
10814
  class WebCrawlerConfigurationProperty:
@@ -10467,6 +10819,8 @@ class CfnDataSource(
10467
10819
  exclusion_filters: typing.Optional[typing.Sequence[builtins.str]] = None,
10468
10820
  inclusion_filters: typing.Optional[typing.Sequence[builtins.str]] = None,
10469
10821
  scope: typing.Optional[builtins.str] = None,
10822
+ user_agent: typing.Optional[builtins.str] = None,
10823
+ user_agent_header: typing.Optional[builtins.str] = None,
10470
10824
  ) -> None:
10471
10825
  '''The configuration of web URLs that you want to crawl.
10472
10826
 
@@ -10476,6 +10830,8 @@ class CfnDataSource(
10476
10830
  :param exclusion_filters: A list of one or more exclusion regular expression patterns to exclude certain URLs. If you specify an inclusion and exclusion filter/pattern and both match a URL, the exclusion filter takes precedence and the web content of the URL isn’t crawled.
10477
10831
  :param inclusion_filters: A list of one or more inclusion regular expression patterns to include certain URLs. If you specify an inclusion and exclusion filter/pattern and both match a URL, the exclusion filter takes precedence and the web content of the URL isn’t crawled.
10478
10832
  :param scope: The scope of what is crawled for your URLs. You can choose to crawl only web pages that belong to the same host or primary domain. For example, only web pages that contain the seed URL "https://docs.aws.amazon.com/bedrock/latest/userguide/" and no other domains. You can choose to include sub domains in addition to the host or primary domain. For example, web pages that contain "aws.amazon.com" can also include sub domain "docs.aws.amazon.com".
10833
+ :param user_agent: The suffix that will be included in the user agent header.
10834
+ :param user_agent_header: The full user agent header, including UUID and suffix.
10479
10835
 
10480
10836
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webcrawlerconfiguration.html
10481
10837
  :exampleMetadata: fixture=_generated
@@ -10488,11 +10844,14 @@ class CfnDataSource(
10488
10844
 
10489
10845
  web_crawler_configuration_property = bedrock.CfnDataSource.WebCrawlerConfigurationProperty(
10490
10846
  crawler_limits=bedrock.CfnDataSource.WebCrawlerLimitsProperty(
10847
+ max_pages=123,
10491
10848
  rate_limit=123
10492
10849
  ),
10493
10850
  exclusion_filters=["exclusionFilters"],
10494
10851
  inclusion_filters=["inclusionFilters"],
10495
- scope="scope"
10852
+ scope="scope",
10853
+ user_agent="userAgent",
10854
+ user_agent_header="userAgentHeader"
10496
10855
  )
10497
10856
  '''
10498
10857
  if __debug__:
@@ -10501,6 +10860,8 @@ class CfnDataSource(
10501
10860
  check_type(argname="argument exclusion_filters", value=exclusion_filters, expected_type=type_hints["exclusion_filters"])
10502
10861
  check_type(argname="argument inclusion_filters", value=inclusion_filters, expected_type=type_hints["inclusion_filters"])
10503
10862
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
10863
+ check_type(argname="argument user_agent", value=user_agent, expected_type=type_hints["user_agent"])
10864
+ check_type(argname="argument user_agent_header", value=user_agent_header, expected_type=type_hints["user_agent_header"])
10504
10865
  self._values: typing.Dict[builtins.str, typing.Any] = {}
10505
10866
  if crawler_limits is not None:
10506
10867
  self._values["crawler_limits"] = crawler_limits
@@ -10510,6 +10871,10 @@ class CfnDataSource(
10510
10871
  self._values["inclusion_filters"] = inclusion_filters
10511
10872
  if scope is not None:
10512
10873
  self._values["scope"] = scope
10874
+ if user_agent is not None:
10875
+ self._values["user_agent"] = user_agent
10876
+ if user_agent_header is not None:
10877
+ self._values["user_agent_header"] = user_agent_header
10513
10878
 
10514
10879
  @builtins.property
10515
10880
  def crawler_limits(
@@ -10555,6 +10920,24 @@ class CfnDataSource(
10555
10920
  result = self._values.get("scope")
10556
10921
  return typing.cast(typing.Optional[builtins.str], result)
10557
10922
 
10923
+ @builtins.property
10924
+ def user_agent(self) -> typing.Optional[builtins.str]:
10925
+ '''The suffix that will be included in the user agent header.
10926
+
10927
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webcrawlerconfiguration.html#cfn-bedrock-datasource-webcrawlerconfiguration-useragent
10928
+ '''
10929
+ result = self._values.get("user_agent")
10930
+ return typing.cast(typing.Optional[builtins.str], result)
10931
+
10932
+ @builtins.property
10933
+ def user_agent_header(self) -> typing.Optional[builtins.str]:
10934
+ '''The full user agent header, including UUID and suffix.
10935
+
10936
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webcrawlerconfiguration.html#cfn-bedrock-datasource-webcrawlerconfiguration-useragentheader
10937
+ '''
10938
+ result = self._values.get("user_agent_header")
10939
+ return typing.cast(typing.Optional[builtins.str], result)
10940
+
10558
10941
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
10559
10942
  return isinstance(rhs, self.__class__) and rhs._values == self._values
10560
10943
 
@@ -10569,14 +10952,20 @@ class CfnDataSource(
10569
10952
  @jsii.data_type(
10570
10953
  jsii_type="aws-cdk-lib.aws_bedrock.CfnDataSource.WebCrawlerLimitsProperty",
10571
10954
  jsii_struct_bases=[],
10572
- name_mapping={"rate_limit": "rateLimit"},
10955
+ name_mapping={"max_pages": "maxPages", "rate_limit": "rateLimit"},
10573
10956
  )
10574
10957
  class WebCrawlerLimitsProperty:
10575
- def __init__(self, *, rate_limit: typing.Optional[jsii.Number] = None) -> None:
10958
+ def __init__(
10959
+ self,
10960
+ *,
10961
+ max_pages: typing.Optional[jsii.Number] = None,
10962
+ rate_limit: typing.Optional[jsii.Number] = None,
10963
+ ) -> None:
10576
10964
  '''The rate limits for the URLs that you want to crawl.
10577
10965
 
10578
10966
  You should be authorized to crawl the URLs.
10579
10967
 
10968
+ :param max_pages: Maximum number of pages the crawler can crawl.
10580
10969
  :param rate_limit: The max rate at which pages are crawled, up to 300 per minute per host.
10581
10970
 
10582
10971
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webcrawlerlimits.html
@@ -10589,16 +10978,29 @@ class CfnDataSource(
10589
10978
  from aws_cdk import aws_bedrock as bedrock
10590
10979
 
10591
10980
  web_crawler_limits_property = bedrock.CfnDataSource.WebCrawlerLimitsProperty(
10981
+ max_pages=123,
10592
10982
  rate_limit=123
10593
10983
  )
10594
10984
  '''
10595
10985
  if __debug__:
10596
10986
  type_hints = typing.get_type_hints(_typecheckingstub__e3c7708618964f317da86f69cc51ebbcf99d7ff170204876d29a3e67fdbefcf9)
10987
+ check_type(argname="argument max_pages", value=max_pages, expected_type=type_hints["max_pages"])
10597
10988
  check_type(argname="argument rate_limit", value=rate_limit, expected_type=type_hints["rate_limit"])
10598
10989
  self._values: typing.Dict[builtins.str, typing.Any] = {}
10990
+ if max_pages is not None:
10991
+ self._values["max_pages"] = max_pages
10599
10992
  if rate_limit is not None:
10600
10993
  self._values["rate_limit"] = rate_limit
10601
10994
 
10995
+ @builtins.property
10996
+ def max_pages(self) -> typing.Optional[jsii.Number]:
10997
+ '''Maximum number of pages the crawler can crawl.
10998
+
10999
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webcrawlerlimits.html#cfn-bedrock-datasource-webcrawlerlimits-maxpages
11000
+ '''
11001
+ result = self._values.get("max_pages")
11002
+ return typing.cast(typing.Optional[jsii.Number], result)
11003
+
10602
11004
  @builtins.property
10603
11005
  def rate_limit(self) -> typing.Optional[jsii.Number]:
10604
11006
  '''The max rate at which pages are crawled, up to 300 per minute per host.
@@ -10660,11 +11062,14 @@ class CfnDataSource(
10660
11062
  # the properties below are optional
10661
11063
  crawler_configuration=bedrock.CfnDataSource.WebCrawlerConfigurationProperty(
10662
11064
  crawler_limits=bedrock.CfnDataSource.WebCrawlerLimitsProperty(
11065
+ max_pages=123,
10663
11066
  rate_limit=123
10664
11067
  ),
10665
11068
  exclusion_filters=["exclusionFilters"],
10666
11069
  inclusion_filters=["inclusionFilters"],
10667
- scope="scope"
11070
+ scope="scope",
11071
+ user_agent="userAgent",
11072
+ user_agent_header="userAgentHeader"
10668
11073
  )
10669
11074
  )
10670
11075
  '''
@@ -10926,11 +11331,14 @@ class CfnDataSourceProps:
10926
11331
  # the properties below are optional
10927
11332
  crawler_configuration=bedrock.CfnDataSource.WebCrawlerConfigurationProperty(
10928
11333
  crawler_limits=bedrock.CfnDataSource.WebCrawlerLimitsProperty(
11334
+ max_pages=123,
10929
11335
  rate_limit=123
10930
11336
  ),
10931
11337
  exclusion_filters=["exclusionFilters"],
10932
11338
  inclusion_filters=["inclusionFilters"],
10933
- scope="scope"
11339
+ scope="scope",
11340
+ user_agent="userAgent",
11341
+ user_agent_header="userAgentHeader"
10934
11342
  )
10935
11343
  )
10936
11344
  ),
@@ -10964,6 +11372,17 @@ class CfnDataSourceProps:
10964
11372
  max_tokens=123
10965
11373
  )
10966
11374
  ),
11375
+ context_enrichment_configuration=bedrock.CfnDataSource.ContextEnrichmentConfigurationProperty(
11376
+ type="type",
11377
+
11378
+ # the properties below are optional
11379
+ bedrock_foundation_model_configuration=bedrock.CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty(
11380
+ enrichment_strategy_configuration=bedrock.CfnDataSource.EnrichmentStrategyConfigurationProperty(
11381
+ method="method"
11382
+ ),
11383
+ model_arn="modelArn"
11384
+ )
11385
+ ),
10967
11386
  custom_transformation_configuration=bedrock.CfnDataSource.CustomTransformationConfigurationProperty(
10968
11387
  intermediate_storage=bedrock.CfnDataSource.IntermediateStorageProperty(
10969
11388
  s3_location=bedrock.CfnDataSource.S3LocationProperty(
@@ -25613,7 +26032,7 @@ class CfnPrompt(
25613
26032
  For example, ``{"tool" : {"name" : "Your tool name"}}`` . For more information, see `Call a tool with the Converse API <https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html>`_ in the Amazon Bedrock User Guide
25614
26033
  .. epigraph::
25615
26034
 
25616
- This field is only supported by Anthropic Claude 3 models.
26035
+ This field is only supported by Amazon Nova models and Anthropic Claude 3 models.
25617
26036
 
25618
26037
  :param name: The name of the tool that the model must request.
25619
26038
 
@@ -25964,7 +26383,7 @@ class CfnPrompt(
25964
26383
 
25965
26384
  :param any: The model must request at least one tool (no text is generated).
25966
26385
  :param auto: (Default). The Model automatically decides if a tool should be called or whether to generate text instead.
25967
- :param tool: The Model must request the specified tool. Only supported by Anthropic Claude 3 models.
26386
+ :param tool: The Model must request the specified tool. Only supported by Amazon Nova models and Anthropic Claude 3 models.
25968
26387
 
25969
26388
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolchoice.html
25970
26389
  :exampleMetadata: fixture=_generated
@@ -26025,7 +26444,7 @@ class CfnPrompt(
26025
26444
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPrompt.SpecificToolChoiceProperty"]]:
26026
26445
  '''The Model must request the specified tool.
26027
26446
 
26028
- Only supported by Anthropic Claude 3 models.
26447
+ Only supported by Amazon Nova models and Anthropic Claude 3 models.
26029
26448
 
26030
26449
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolchoice.html#cfn-bedrock-prompt-toolchoice-tool
26031
26450
  '''
@@ -28046,7 +28465,7 @@ class CfnPromptVersion(
28046
28465
  For example, ``{"tool" : {"name" : "Your tool name"}}`` . For more information, see `Call a tool with the Converse API <https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html>`_ in the Amazon Bedrock User Guide
28047
28466
  .. epigraph::
28048
28467
 
28049
- This field is only supported by Anthropic Claude 3 models.
28468
+ This field is only supported by Amazon Nova models and Anthropic Claude 3 models.
28050
28469
 
28051
28470
  :param name: The name of the tool that the model must request.
28052
28471
 
@@ -28288,7 +28707,7 @@ class CfnPromptVersion(
28288
28707
 
28289
28708
  :param any: The model must request at least one tool (no text is generated).
28290
28709
  :param auto: (Default). The Model automatically decides if a tool should be called or whether to generate text instead.
28291
- :param tool: The Model must request the specified tool. Only supported by Anthropic Claude 3 models.
28710
+ :param tool: The Model must request the specified tool. Only supported by Amazon Nova models and Anthropic Claude 3 models.
28292
28711
 
28293
28712
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolchoice.html
28294
28713
  :exampleMetadata: fixture=_generated
@@ -28349,7 +28768,7 @@ class CfnPromptVersion(
28349
28768
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPromptVersion.SpecificToolChoiceProperty"]]:
28350
28769
  '''The Model must request the specified tool.
28351
28770
 
28352
- Only supported by Anthropic Claude 3 models.
28771
+ Only supported by Amazon Nova models and Anthropic Claude 3 models.
28353
28772
 
28354
28773
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolchoice.html#cfn-bedrock-promptversion-toolchoice-tool
28355
28774
  '''
@@ -30846,6 +31265,14 @@ def _typecheckingstub__1988b824c4171f598d30cf03abdb56bc617fd654dd3daf3e641d11499
30846
31265
  """Type checking stubs"""
30847
31266
  pass
30848
31267
 
31268
+ def _typecheckingstub__5a89b4cf2c8acc5a8649678b03650df048cec78aecf83c8401430c76e7d47bc5(
31269
+ *,
31270
+ enrichment_strategy_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.EnrichmentStrategyConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
31271
+ model_arn: builtins.str,
31272
+ ) -> None:
31273
+ """Type checking stubs"""
31274
+ pass
31275
+
30849
31276
  def _typecheckingstub__8beec747a0f57f641fd4bd3b03f73b678c8e286785d948f80998682f0c0a40e5(
30850
31277
  *,
30851
31278
  chunking_strategy: builtins.str,
@@ -30881,6 +31308,14 @@ def _typecheckingstub__f6b1b77774988ec57c830fc9a0a2a7c4c9f4497cdb86ab6c5fa2ebbb1
30881
31308
  """Type checking stubs"""
30882
31309
  pass
30883
31310
 
31311
+ def _typecheckingstub__4a8bedb8c03e6599f8bee498faf320fa0afe2ebb758107fb96251adfe3f9031f(
31312
+ *,
31313
+ type: builtins.str,
31314
+ bedrock_foundation_model_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.BedrockFoundationModelContextEnrichmentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
31315
+ ) -> None:
31316
+ """Type checking stubs"""
31317
+ pass
31318
+
30884
31319
  def _typecheckingstub__df771f43b4edc46788782c796b78e1b33220d226fe90547899ccc3c75ce15ac8(
30885
31320
  *,
30886
31321
  type: builtins.str,
@@ -30909,6 +31344,13 @@ def _typecheckingstub__a2e1b0c807d6904904c91cc13a2f47ee5db24090758446e26a864b57b
30909
31344
  """Type checking stubs"""
30910
31345
  pass
30911
31346
 
31347
+ def _typecheckingstub__644d76f9050da2eaff32542043cca01ff61629f76ef2e0191725886223a5f368(
31348
+ *,
31349
+ method: builtins.str,
31350
+ ) -> None:
31351
+ """Type checking stubs"""
31352
+ pass
31353
+
30912
31354
  def _typecheckingstub__7b9e8054cbf79d2292e738f1061947914954b89440b15bf572c87c9695aaf7bc(
30913
31355
  *,
30914
31356
  max_tokens: jsii.Number,
@@ -31093,6 +31535,7 @@ def _typecheckingstub__33e4e6226e3e29b9d96cc7d5d58f6d2d4062908e865a2e74a0c3a6b36
31093
31535
  def _typecheckingstub__37255db3e7cacfdeadc2d28bfe7938fd13ab4a2cd72190024a531eddf1fd9ec0(
31094
31536
  *,
31095
31537
  chunking_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ChunkingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
31538
+ context_enrichment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ContextEnrichmentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
31096
31539
  custom_transformation_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.CustomTransformationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
31097
31540
  parsing_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ParsingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
31098
31541
  ) -> None:
@@ -31105,12 +31548,15 @@ def _typecheckingstub__19f2bf049e2cc7c767a94b404cf6594346506f3a78f18601159a383fa
31105
31548
  exclusion_filters: typing.Optional[typing.Sequence[builtins.str]] = None,
31106
31549
  inclusion_filters: typing.Optional[typing.Sequence[builtins.str]] = None,
31107
31550
  scope: typing.Optional[builtins.str] = None,
31551
+ user_agent: typing.Optional[builtins.str] = None,
31552
+ user_agent_header: typing.Optional[builtins.str] = None,
31108
31553
  ) -> None:
31109
31554
  """Type checking stubs"""
31110
31555
  pass
31111
31556
 
31112
31557
  def _typecheckingstub__e3c7708618964f317da86f69cc51ebbcf99d7ff170204876d29a3e67fdbefcf9(
31113
31558
  *,
31559
+ max_pages: typing.Optional[jsii.Number] = None,
31114
31560
  rate_limit: typing.Optional[jsii.Number] = None,
31115
31561
  ) -> None:
31116
31562
  """Type checking stubs"""