aws-cdk-lib 2.196.1__py3-none-any.whl → 2.197.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.
- aws_cdk/__init__.py +2 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.196.1.jsii.tgz → aws-cdk-lib@2.197.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +90 -1
- aws_cdk/aws_apigatewayv2/__init__.py +866 -0
- aws_cdk/aws_bedrock/__init__.py +32 -26
- aws_cdk/aws_cloudfront/__init__.py +9 -3
- aws_cdk/aws_cloudwatch/__init__.py +756 -29
- aws_cdk/aws_codebuild/__init__.py +19 -0
- aws_cdk/aws_codepipeline/__init__.py +42 -7
- aws_cdk/aws_datasync/__init__.py +43 -72
- aws_cdk/aws_datazone/__init__.py +615 -2
- aws_cdk/aws_deadline/__init__.py +139 -0
- aws_cdk/aws_dsql/__init__.py +35 -1
- aws_cdk/aws_ec2/__init__.py +81 -3
- aws_cdk/aws_ecs/__init__.py +24 -17
- aws_cdk/aws_elasticache/__init__.py +5 -5
- aws_cdk/aws_gamelift/__init__.py +103 -15
- aws_cdk/aws_gameliftstreams/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +920 -103
- aws_cdk/aws_route53resolver/__init__.py +0 -41
- aws_cdk/aws_ses/__init__.py +4 -4
- aws_cdk/aws_workspaces/__init__.py +39 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/RECORD +29 -29
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_bedrock/__init__.py
CHANGED
|
@@ -22061,7 +22061,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22061
22061
|
metaclass=jsii.JSIIMeta,
|
|
22062
22062
|
jsii_type="aws-cdk-lib.aws_bedrock.CfnIntelligentPromptRouter",
|
|
22063
22063
|
):
|
|
22064
|
-
'''
|
|
22064
|
+
'''Specifies an intelligent prompt router resource for Amazon Bedrock .
|
|
22065
22065
|
|
|
22066
22066
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-intelligentpromptrouter.html
|
|
22067
22067
|
:cloudformationResource: AWS::Bedrock::IntelligentPromptRouter
|
|
@@ -22109,12 +22109,12 @@ class CfnIntelligentPromptRouter(
|
|
|
22109
22109
|
'''
|
|
22110
22110
|
:param scope: Scope in which this resource is defined.
|
|
22111
22111
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
22112
|
-
:param fallback_model:
|
|
22113
|
-
:param models:
|
|
22114
|
-
:param prompt_router_name:
|
|
22112
|
+
:param fallback_model: The default model to use when the routing criteria is not met.
|
|
22113
|
+
:param models: A list of foundation models that the prompt router can route requests to. At least one model must be specified.
|
|
22114
|
+
:param prompt_router_name: The name of the prompt router. The name must be unique within your AWS account in the current region.
|
|
22115
22115
|
:param routing_criteria: Routing criteria for a prompt router.
|
|
22116
|
-
:param description:
|
|
22117
|
-
:param tags:
|
|
22116
|
+
:param description: An optional description of the prompt router to help identify its purpose.
|
|
22117
|
+
:param tags: An array of key-value pairs to apply to this resource as tags. You can use tags to categorize and manage your AWS resources.
|
|
22118
22118
|
'''
|
|
22119
22119
|
if __debug__:
|
|
22120
22120
|
type_hints = typing.get_type_hints(_typecheckingstub__a5d2e514af9553d15e3be6a1c57dd1062d7a60fee139dbca24ce0ced551672eb)
|
|
@@ -22164,7 +22164,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22164
22164
|
@builtins.property
|
|
22165
22165
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
22166
22166
|
def attr_created_at(self) -> builtins.str:
|
|
22167
|
-
'''
|
|
22167
|
+
'''Indicates the time that the prompt router was created.
|
|
22168
22168
|
|
|
22169
22169
|
:cloudformationAttribute: CreatedAt
|
|
22170
22170
|
'''
|
|
@@ -22173,7 +22173,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22173
22173
|
@builtins.property
|
|
22174
22174
|
@jsii.member(jsii_name="attrPromptRouterArn")
|
|
22175
22175
|
def attr_prompt_router_arn(self) -> builtins.str:
|
|
22176
|
-
'''
|
|
22176
|
+
'''The Amazon Resource Name (ARN) of the prompt router.
|
|
22177
22177
|
|
|
22178
22178
|
:cloudformationAttribute: PromptRouterArn
|
|
22179
22179
|
'''
|
|
@@ -22182,7 +22182,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22182
22182
|
@builtins.property
|
|
22183
22183
|
@jsii.member(jsii_name="attrStatus")
|
|
22184
22184
|
def attr_status(self) -> builtins.str:
|
|
22185
|
-
'''
|
|
22185
|
+
'''The router's status.
|
|
22186
22186
|
|
|
22187
22187
|
:cloudformationAttribute: Status
|
|
22188
22188
|
'''
|
|
@@ -22191,7 +22191,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22191
22191
|
@builtins.property
|
|
22192
22192
|
@jsii.member(jsii_name="attrType")
|
|
22193
22193
|
def attr_type(self) -> builtins.str:
|
|
22194
|
-
'''
|
|
22194
|
+
'''The router's type.
|
|
22195
22195
|
|
|
22196
22196
|
:cloudformationAttribute: Type
|
|
22197
22197
|
'''
|
|
@@ -22200,7 +22200,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22200
22200
|
@builtins.property
|
|
22201
22201
|
@jsii.member(jsii_name="attrUpdatedAt")
|
|
22202
22202
|
def attr_updated_at(self) -> builtins.str:
|
|
22203
|
-
'''
|
|
22203
|
+
'''When the router was updated.
|
|
22204
22204
|
|
|
22205
22205
|
:cloudformationAttribute: UpdatedAt
|
|
22206
22206
|
'''
|
|
@@ -22222,7 +22222,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22222
22222
|
def fallback_model(
|
|
22223
22223
|
self,
|
|
22224
22224
|
) -> typing.Union[_IResolvable_da3f097b, "CfnIntelligentPromptRouter.PromptRouterTargetModelProperty"]:
|
|
22225
|
-
'''
|
|
22225
|
+
'''The default model to use when the routing criteria is not met.'''
|
|
22226
22226
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnIntelligentPromptRouter.PromptRouterTargetModelProperty"], jsii.get(self, "fallbackModel"))
|
|
22227
22227
|
|
|
22228
22228
|
@fallback_model.setter
|
|
@@ -22240,7 +22240,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22240
22240
|
def models(
|
|
22241
22241
|
self,
|
|
22242
22242
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnIntelligentPromptRouter.PromptRouterTargetModelProperty"]]]:
|
|
22243
|
-
'''
|
|
22243
|
+
'''A list of foundation models that the prompt router can route requests to.'''
|
|
22244
22244
|
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnIntelligentPromptRouter.PromptRouterTargetModelProperty"]]], jsii.get(self, "models"))
|
|
22245
22245
|
|
|
22246
22246
|
@models.setter
|
|
@@ -22256,7 +22256,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22256
22256
|
@builtins.property
|
|
22257
22257
|
@jsii.member(jsii_name="promptRouterName")
|
|
22258
22258
|
def prompt_router_name(self) -> builtins.str:
|
|
22259
|
-
'''
|
|
22259
|
+
'''The name of the prompt router.'''
|
|
22260
22260
|
return typing.cast(builtins.str, jsii.get(self, "promptRouterName"))
|
|
22261
22261
|
|
|
22262
22262
|
@prompt_router_name.setter
|
|
@@ -22287,7 +22287,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22287
22287
|
@builtins.property
|
|
22288
22288
|
@jsii.member(jsii_name="description")
|
|
22289
22289
|
def description(self) -> typing.Optional[builtins.str]:
|
|
22290
|
-
'''
|
|
22290
|
+
'''An optional description of the prompt router to help identify its purpose.'''
|
|
22291
22291
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
22292
22292
|
|
|
22293
22293
|
@description.setter
|
|
@@ -22300,7 +22300,7 @@ class CfnIntelligentPromptRouter(
|
|
|
22300
22300
|
@builtins.property
|
|
22301
22301
|
@jsii.member(jsii_name="tags")
|
|
22302
22302
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
22303
|
-
'''
|
|
22303
|
+
'''An array of key-value pairs to apply to this resource as tags.'''
|
|
22304
22304
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
22305
22305
|
|
|
22306
22306
|
@tags.setter
|
|
@@ -22440,12 +22440,12 @@ class CfnIntelligentPromptRouterProps:
|
|
|
22440
22440
|
) -> None:
|
|
22441
22441
|
'''Properties for defining a ``CfnIntelligentPromptRouter``.
|
|
22442
22442
|
|
|
22443
|
-
:param fallback_model:
|
|
22444
|
-
:param models:
|
|
22445
|
-
:param prompt_router_name:
|
|
22443
|
+
:param fallback_model: The default model to use when the routing criteria is not met.
|
|
22444
|
+
:param models: A list of foundation models that the prompt router can route requests to. At least one model must be specified.
|
|
22445
|
+
:param prompt_router_name: The name of the prompt router. The name must be unique within your AWS account in the current region.
|
|
22446
22446
|
:param routing_criteria: Routing criteria for a prompt router.
|
|
22447
|
-
:param description:
|
|
22448
|
-
:param tags:
|
|
22447
|
+
:param description: An optional description of the prompt router to help identify its purpose.
|
|
22448
|
+
:param tags: An array of key-value pairs to apply to this resource as tags. You can use tags to categorize and manage your AWS resources.
|
|
22449
22449
|
|
|
22450
22450
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-intelligentpromptrouter.html
|
|
22451
22451
|
:exampleMetadata: fixture=_generated
|
|
@@ -22499,7 +22499,7 @@ class CfnIntelligentPromptRouterProps:
|
|
|
22499
22499
|
def fallback_model(
|
|
22500
22500
|
self,
|
|
22501
22501
|
) -> typing.Union[_IResolvable_da3f097b, CfnIntelligentPromptRouter.PromptRouterTargetModelProperty]:
|
|
22502
|
-
'''
|
|
22502
|
+
'''The default model to use when the routing criteria is not met.
|
|
22503
22503
|
|
|
22504
22504
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-intelligentpromptrouter.html#cfn-bedrock-intelligentpromptrouter-fallbackmodel
|
|
22505
22505
|
'''
|
|
@@ -22511,7 +22511,9 @@ class CfnIntelligentPromptRouterProps:
|
|
|
22511
22511
|
def models(
|
|
22512
22512
|
self,
|
|
22513
22513
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIntelligentPromptRouter.PromptRouterTargetModelProperty]]]:
|
|
22514
|
-
'''
|
|
22514
|
+
'''A list of foundation models that the prompt router can route requests to.
|
|
22515
|
+
|
|
22516
|
+
At least one model must be specified.
|
|
22515
22517
|
|
|
22516
22518
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-intelligentpromptrouter.html#cfn-bedrock-intelligentpromptrouter-models
|
|
22517
22519
|
'''
|
|
@@ -22521,7 +22523,9 @@ class CfnIntelligentPromptRouterProps:
|
|
|
22521
22523
|
|
|
22522
22524
|
@builtins.property
|
|
22523
22525
|
def prompt_router_name(self) -> builtins.str:
|
|
22524
|
-
'''
|
|
22526
|
+
'''The name of the prompt router.
|
|
22527
|
+
|
|
22528
|
+
The name must be unique within your AWS account in the current region.
|
|
22525
22529
|
|
|
22526
22530
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-intelligentpromptrouter.html#cfn-bedrock-intelligentpromptrouter-promptroutername
|
|
22527
22531
|
'''
|
|
@@ -22543,7 +22547,7 @@ class CfnIntelligentPromptRouterProps:
|
|
|
22543
22547
|
|
|
22544
22548
|
@builtins.property
|
|
22545
22549
|
def description(self) -> typing.Optional[builtins.str]:
|
|
22546
|
-
'''
|
|
22550
|
+
'''An optional description of the prompt router to help identify its purpose.
|
|
22547
22551
|
|
|
22548
22552
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-intelligentpromptrouter.html#cfn-bedrock-intelligentpromptrouter-description
|
|
22549
22553
|
'''
|
|
@@ -22552,7 +22556,9 @@ class CfnIntelligentPromptRouterProps:
|
|
|
22552
22556
|
|
|
22553
22557
|
@builtins.property
|
|
22554
22558
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
22555
|
-
'''
|
|
22559
|
+
'''An array of key-value pairs to apply to this resource as tags.
|
|
22560
|
+
|
|
22561
|
+
You can use tags to categorize and manage your AWS resources.
|
|
22556
22562
|
|
|
22557
22563
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-intelligentpromptrouter.html#cfn-bedrock-intelligentpromptrouter-tags
|
|
22558
22564
|
'''
|
|
@@ -7225,7 +7225,8 @@ class CfnDistribution(
|
|
|
7225
7225
|
*,
|
|
7226
7226
|
string_schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistribution.StringSchemaProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7227
7227
|
) -> None:
|
|
7228
|
-
'''
|
|
7228
|
+
'''The value that you assigned to the parameter.
|
|
7229
|
+
|
|
7229
7230
|
:param string_schema:
|
|
7230
7231
|
|
|
7231
7232
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-definition.html
|
|
@@ -18009,7 +18010,7 @@ class CfnVpcOrigin(
|
|
|
18009
18010
|
:param http_port: The HTTP port for the CloudFront VPC origin endpoint configuration. The default value is ``80`` . Default: - 80
|
|
18010
18011
|
:param https_port: The HTTPS port of the CloudFront VPC origin endpoint configuration. The default value is ``443`` . Default: - 443
|
|
18011
18012
|
:param origin_protocol_policy: The origin protocol policy for the CloudFront VPC origin endpoint configuration. Default: - "match-viewer"
|
|
18012
|
-
:param origin_ssl_protocols:
|
|
18013
|
+
:param origin_ssl_protocols: Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include ``SSLv3`` , ``TLSv1`` , ``TLSv1.1`` , and ``TLSv1.2`` . For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginSSLProtocols>`_ in the *Amazon CloudFront Developer Guide* .
|
|
18013
18014
|
|
|
18014
18015
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-vpcorigin-vpcoriginendpointconfig.html
|
|
18015
18016
|
:exampleMetadata: fixture=_generated
|
|
@@ -18111,7 +18112,12 @@ class CfnVpcOrigin(
|
|
|
18111
18112
|
|
|
18112
18113
|
@builtins.property
|
|
18113
18114
|
def origin_ssl_protocols(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
18114
|
-
'''
|
|
18115
|
+
'''Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS.
|
|
18116
|
+
|
|
18117
|
+
Valid values include ``SSLv3`` , ``TLSv1`` , ``TLSv1.1`` , and ``TLSv1.2`` .
|
|
18118
|
+
|
|
18119
|
+
For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginSSLProtocols>`_ in the *Amazon CloudFront Developer Guide* .
|
|
18120
|
+
|
|
18115
18121
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-vpcorigin-vpcoriginendpointconfig.html#cfn-cloudfront-vpcorigin-vpcoriginendpointconfig-originsslprotocols
|
|
18116
18122
|
'''
|
|
18117
18123
|
result = self._values.get("origin_ssl_protocols")
|