aws-cdk-lib 2.196.1__py3-none-any.whl → 2.198.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.198.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +90 -1
- aws_cdk/aws_apigatewayv2/__init__.py +866 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +36 -0
- aws_cdk/aws_appsync/__init__.py +31 -21
- aws_cdk/aws_autoscaling/__init__.py +2 -1
- 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 +44 -7
- aws_cdk/aws_datasync/__init__.py +850 -833
- aws_cdk/aws_datazone/__init__.py +615 -2
- aws_cdk/aws_deadline/__init__.py +162 -4
- aws_cdk/aws_dsql/__init__.py +35 -1
- aws_cdk/aws_ec2/__init__.py +291 -7
- aws_cdk/aws_ecs/__init__.py +38 -19
- aws_cdk/aws_ecs_patterns/__init__.py +15 -9
- aws_cdk/aws_elasticache/__init__.py +5 -5
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +14 -8
- aws_cdk/aws_gamelift/__init__.py +103 -17
- aws_cdk/aws_gameliftstreams/__init__.py +6 -6
- aws_cdk/aws_lex/__init__.py +1245 -172
- aws_cdk/aws_mediapackagev2/__init__.py +11 -10
- aws_cdk/aws_omics/__init__.py +939 -100
- aws_cdk/aws_pcs/__init__.py +126 -0
- aws_cdk/aws_rds/__init__.py +42 -15
- aws_cdk/aws_rolesanywhere/__init__.py +14 -13
- aws_cdk/aws_route53resolver/__init__.py +0 -41
- aws_cdk/aws_sagemaker/__init__.py +38 -12
- aws_cdk/aws_ses/__init__.py +192 -4
- aws_cdk/aws_ssmquicksetup/__init__.py +10 -2
- aws_cdk/aws_synthetics/__init__.py +137 -3
- aws_cdk/aws_wafv2/__init__.py +4 -4
- aws_cdk/aws_workspaces/__init__.py +41 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/RECORD +43 -43
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/top_level.txt +0 -0
|
@@ -3879,6 +3879,18 @@ class CfnScalingPolicy(
|
|
|
3879
3879
|
|
|
3880
3880
|
When returned in the output of ``DescribePolicies`` , it indicates that a predictive scaling policy uses individually specified load and scaling metrics instead of a metric pair.
|
|
3881
3881
|
|
|
3882
|
+
The following predefined metrics are available for predictive scaling:
|
|
3883
|
+
|
|
3884
|
+
- ``ECSServiceAverageCPUUtilization``
|
|
3885
|
+
- ``ECSServiceAverageMemoryUtilization``
|
|
3886
|
+
- ``ECSServiceCPUUtilization``
|
|
3887
|
+
- ``ECSServiceMemoryUtilization``
|
|
3888
|
+
- ``ECSServiceTotalCPUUtilization``
|
|
3889
|
+
- ``ECSServiceTotalMemoryUtilization``
|
|
3890
|
+
- ``ALBRequestCount``
|
|
3891
|
+
- ``ALBRequestCountPerTarget``
|
|
3892
|
+
- ``TotalALBRequestCount``
|
|
3893
|
+
|
|
3882
3894
|
:param predefined_metric_type: The metric type.
|
|
3883
3895
|
:param resource_label: A label that uniquely identifies a target group.
|
|
3884
3896
|
|
|
@@ -3955,6 +3967,18 @@ class CfnScalingPolicy(
|
|
|
3955
3967
|
) -> None:
|
|
3956
3968
|
'''Represents a metric pair for a predictive scaling policy.
|
|
3957
3969
|
|
|
3970
|
+
The following predefined metrics are available for predictive scaling:
|
|
3971
|
+
|
|
3972
|
+
- ``ECSServiceAverageCPUUtilization``
|
|
3973
|
+
- ``ECSServiceAverageMemoryUtilization``
|
|
3974
|
+
- ``ECSServiceCPUUtilization``
|
|
3975
|
+
- ``ECSServiceMemoryUtilization``
|
|
3976
|
+
- ``ECSServiceTotalCPUUtilization``
|
|
3977
|
+
- ``ECSServiceTotalMemoryUtilization``
|
|
3978
|
+
- ``ALBRequestCount``
|
|
3979
|
+
- ``ALBRequestCountPerTarget``
|
|
3980
|
+
- ``TotalALBRequestCount``
|
|
3981
|
+
|
|
3958
3982
|
:param predefined_metric_type: Indicates which metrics to use. There are two different types of metrics for each metric type: one is a load metric and one is a scaling metric.
|
|
3959
3983
|
:param resource_label: A label that uniquely identifies a specific target group from which to determine the total and average request count.
|
|
3960
3984
|
|
|
@@ -4035,6 +4059,18 @@ class CfnScalingPolicy(
|
|
|
4035
4059
|
|
|
4036
4060
|
When returned in the output of ``DescribePolicies`` , it indicates that a predictive scaling policy uses individually specified load and scaling metrics instead of a metric pair.
|
|
4037
4061
|
|
|
4062
|
+
The following predefined metrics are available for predictive scaling:
|
|
4063
|
+
|
|
4064
|
+
- ``ECSServiceAverageCPUUtilization``
|
|
4065
|
+
- ``ECSServiceAverageMemoryUtilization``
|
|
4066
|
+
- ``ECSServiceCPUUtilization``
|
|
4067
|
+
- ``ECSServiceMemoryUtilization``
|
|
4068
|
+
- ``ECSServiceTotalCPUUtilization``
|
|
4069
|
+
- ``ECSServiceTotalMemoryUtilization``
|
|
4070
|
+
- ``ALBRequestCount``
|
|
4071
|
+
- ``ALBRequestCountPerTarget``
|
|
4072
|
+
- ``TotalALBRequestCount``
|
|
4073
|
+
|
|
4038
4074
|
:param predefined_metric_type: The metric type.
|
|
4039
4075
|
:param resource_label: A label that uniquely identifies a specific target group from which to determine the average request count.
|
|
4040
4076
|
|
aws_cdk/aws_appsync/__init__.py
CHANGED
|
@@ -6642,7 +6642,7 @@ class CfnChannelNamespace(
|
|
|
6642
6642
|
:param name: The name of the channel namespace. This name must be unique within the ``Api`` .
|
|
6643
6643
|
:param code_handlers: The event handler functions that run custom business logic to process published events and subscribe requests.
|
|
6644
6644
|
:param code_s3_location: The Amazon S3 endpoint where the code is located.
|
|
6645
|
-
:param handler_configs:
|
|
6645
|
+
:param handler_configs: The configuration for the ``OnPublish`` and ``OnSubscribe`` handlers.
|
|
6646
6646
|
:param publish_auth_modes: The authorization mode to use for publishing messages on the channel namespace. This configuration overrides the default ``Api`` authorization configuration.
|
|
6647
6647
|
:param subscribe_auth_modes: The authorization mode to use for subscribing to messages on the channel namespace. This configuration overrides the default ``Api`` authorization configuration.
|
|
6648
6648
|
:param tags: A set of tags (key-value pairs) for this channel namespace.
|
|
@@ -6771,6 +6771,7 @@ class CfnChannelNamespace(
|
|
|
6771
6771
|
def handler_configs(
|
|
6772
6772
|
self,
|
|
6773
6773
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannelNamespace.HandlerConfigsProperty"]]:
|
|
6774
|
+
'''The configuration for the ``OnPublish`` and ``OnSubscribe`` handlers.'''
|
|
6774
6775
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannelNamespace.HandlerConfigsProperty"]], jsii.get(self, "handlerConfigs"))
|
|
6775
6776
|
|
|
6776
6777
|
@handler_configs.setter
|
|
@@ -6897,9 +6898,10 @@ class CfnChannelNamespace(
|
|
|
6897
6898
|
behavior: builtins.str,
|
|
6898
6899
|
integration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannelNamespace.IntegrationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
6899
6900
|
) -> None:
|
|
6900
|
-
'''
|
|
6901
|
-
|
|
6902
|
-
:param
|
|
6901
|
+
'''The ``HandlerConfig`` property type specifies the configuration for the handler.
|
|
6902
|
+
|
|
6903
|
+
:param behavior: The behavior for the handler.
|
|
6904
|
+
:param integration: The integration data source configuration for the handler.
|
|
6903
6905
|
|
|
6904
6906
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfig.html
|
|
6905
6907
|
:exampleMetadata: fixture=_generated
|
|
@@ -6933,7 +6935,7 @@ class CfnChannelNamespace(
|
|
|
6933
6935
|
|
|
6934
6936
|
@builtins.property
|
|
6935
6937
|
def behavior(self) -> builtins.str:
|
|
6936
|
-
'''
|
|
6938
|
+
'''The behavior for the handler.
|
|
6937
6939
|
|
|
6938
6940
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfig.html#cfn-appsync-channelnamespace-handlerconfig-behavior
|
|
6939
6941
|
'''
|
|
@@ -6945,7 +6947,8 @@ class CfnChannelNamespace(
|
|
|
6945
6947
|
def integration(
|
|
6946
6948
|
self,
|
|
6947
6949
|
) -> typing.Union[_IResolvable_da3f097b, "CfnChannelNamespace.IntegrationProperty"]:
|
|
6948
|
-
'''
|
|
6950
|
+
'''The integration data source configuration for the handler.
|
|
6951
|
+
|
|
6949
6952
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfig.html#cfn-appsync-channelnamespace-handlerconfig-integration
|
|
6950
6953
|
'''
|
|
6951
6954
|
result = self._values.get("integration")
|
|
@@ -6975,9 +6978,10 @@ class CfnChannelNamespace(
|
|
|
6975
6978
|
on_publish: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannelNamespace.HandlerConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6976
6979
|
on_subscribe: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannelNamespace.HandlerConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6977
6980
|
) -> None:
|
|
6978
|
-
'''
|
|
6979
|
-
|
|
6980
|
-
:param
|
|
6981
|
+
'''The ``HandlerConfigs`` property type specifies the configuration for the ``OnPublish`` and ``OnSubscribe`` handlers.
|
|
6982
|
+
|
|
6983
|
+
:param on_publish: The configuration for the ``OnPublish`` handler.
|
|
6984
|
+
:param on_subscribe: The configuration for the ``OnSubscribe`` handler.
|
|
6981
6985
|
|
|
6982
6986
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfigs.html
|
|
6983
6987
|
:exampleMetadata: fixture=_generated
|
|
@@ -7027,7 +7031,8 @@ class CfnChannelNamespace(
|
|
|
7027
7031
|
def on_publish(
|
|
7028
7032
|
self,
|
|
7029
7033
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannelNamespace.HandlerConfigProperty"]]:
|
|
7030
|
-
'''
|
|
7034
|
+
'''The configuration for the ``OnPublish`` handler.
|
|
7035
|
+
|
|
7031
7036
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfigs.html#cfn-appsync-channelnamespace-handlerconfigs-onpublish
|
|
7032
7037
|
'''
|
|
7033
7038
|
result = self._values.get("on_publish")
|
|
@@ -7037,7 +7042,8 @@ class CfnChannelNamespace(
|
|
|
7037
7042
|
def on_subscribe(
|
|
7038
7043
|
self,
|
|
7039
7044
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannelNamespace.HandlerConfigProperty"]]:
|
|
7040
|
-
'''
|
|
7045
|
+
'''The configuration for the ``OnSubscribe`` handler.
|
|
7046
|
+
|
|
7041
7047
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfigs.html#cfn-appsync-channelnamespace-handlerconfigs-onsubscribe
|
|
7042
7048
|
'''
|
|
7043
7049
|
result = self._values.get("on_subscribe")
|
|
@@ -7069,9 +7075,10 @@ class CfnChannelNamespace(
|
|
|
7069
7075
|
data_source_name: builtins.str,
|
|
7070
7076
|
lambda_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannelNamespace.LambdaConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7071
7077
|
) -> None:
|
|
7072
|
-
'''
|
|
7073
|
-
|
|
7074
|
-
:param
|
|
7078
|
+
'''The ``Integration`` property type specifies the integration data source configuration for the handler.
|
|
7079
|
+
|
|
7080
|
+
:param data_source_name: The unique name of the data source that has been configured on the API.
|
|
7081
|
+
:param lambda_config: The configuration for a Lambda data source.
|
|
7075
7082
|
|
|
7076
7083
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-integration.html
|
|
7077
7084
|
:exampleMetadata: fixture=_generated
|
|
@@ -7103,7 +7110,7 @@ class CfnChannelNamespace(
|
|
|
7103
7110
|
|
|
7104
7111
|
@builtins.property
|
|
7105
7112
|
def data_source_name(self) -> builtins.str:
|
|
7106
|
-
'''
|
|
7113
|
+
'''The unique name of the data source that has been configured on the API.
|
|
7107
7114
|
|
|
7108
7115
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-integration.html#cfn-appsync-channelnamespace-integration-datasourcename
|
|
7109
7116
|
'''
|
|
@@ -7115,7 +7122,8 @@ class CfnChannelNamespace(
|
|
|
7115
7122
|
def lambda_config(
|
|
7116
7123
|
self,
|
|
7117
7124
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannelNamespace.LambdaConfigProperty"]]:
|
|
7118
|
-
'''
|
|
7125
|
+
'''The configuration for a Lambda data source.
|
|
7126
|
+
|
|
7119
7127
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-integration.html#cfn-appsync-channelnamespace-integration-lambdaconfig
|
|
7120
7128
|
'''
|
|
7121
7129
|
result = self._values.get("lambda_config")
|
|
@@ -7139,8 +7147,9 @@ class CfnChannelNamespace(
|
|
|
7139
7147
|
)
|
|
7140
7148
|
class LambdaConfigProperty:
|
|
7141
7149
|
def __init__(self, *, invoke_type: builtins.str) -> None:
|
|
7142
|
-
'''
|
|
7143
|
-
|
|
7150
|
+
'''The ``LambdaConfig`` property type specifies the integration configuration for a Lambda data source.
|
|
7151
|
+
|
|
7152
|
+
:param invoke_type: The invocation type for a Lambda data source.
|
|
7144
7153
|
|
|
7145
7154
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-lambdaconfig.html
|
|
7146
7155
|
:exampleMetadata: fixture=_generated
|
|
@@ -7164,7 +7173,7 @@ class CfnChannelNamespace(
|
|
|
7164
7173
|
|
|
7165
7174
|
@builtins.property
|
|
7166
7175
|
def invoke_type(self) -> builtins.str:
|
|
7167
|
-
'''
|
|
7176
|
+
'''The invocation type for a Lambda data source.
|
|
7168
7177
|
|
|
7169
7178
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-lambdaconfig.html#cfn-appsync-channelnamespace-lambdaconfig-invoketype
|
|
7170
7179
|
'''
|
|
@@ -7217,7 +7226,7 @@ class CfnChannelNamespaceProps:
|
|
|
7217
7226
|
:param name: The name of the channel namespace. This name must be unique within the ``Api`` .
|
|
7218
7227
|
:param code_handlers: The event handler functions that run custom business logic to process published events and subscribe requests.
|
|
7219
7228
|
:param code_s3_location: The Amazon S3 endpoint where the code is located.
|
|
7220
|
-
:param handler_configs:
|
|
7229
|
+
:param handler_configs: The configuration for the ``OnPublish`` and ``OnSubscribe`` handlers.
|
|
7221
7230
|
:param publish_auth_modes: The authorization mode to use for publishing messages on the channel namespace. This configuration overrides the default ``Api`` authorization configuration.
|
|
7222
7231
|
:param subscribe_auth_modes: The authorization mode to use for subscribing to messages on the channel namespace. This configuration overrides the default ``Api`` authorization configuration.
|
|
7223
7232
|
:param tags: A set of tags (key-value pairs) for this channel namespace.
|
|
@@ -7345,7 +7354,8 @@ class CfnChannelNamespaceProps:
|
|
|
7345
7354
|
def handler_configs(
|
|
7346
7355
|
self,
|
|
7347
7356
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnChannelNamespace.HandlerConfigsProperty]]:
|
|
7348
|
-
'''
|
|
7357
|
+
'''The configuration for the ``OnPublish`` and ``OnSubscribe`` handlers.
|
|
7358
|
+
|
|
7349
7359
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-channelnamespace.html#cfn-appsync-channelnamespace-handlerconfigs
|
|
7350
7360
|
'''
|
|
7351
7361
|
result = self._values.get("handler_configs")
|
|
@@ -2919,7 +2919,8 @@ class CfnAutoScalingGroup(
|
|
|
2919
2919
|
@builtins.property
|
|
2920
2920
|
@jsii.member(jsii_name="attrAutoScalingGroupArn")
|
|
2921
2921
|
def attr_auto_scaling_group_arn(self) -> builtins.str:
|
|
2922
|
-
'''
|
|
2922
|
+
'''The Amazon Resource Name (ARN) of the Auto Scaling group.
|
|
2923
|
+
|
|
2923
2924
|
:cloudformationAttribute: AutoScalingGroupARN
|
|
2924
2925
|
'''
|
|
2925
2926
|
return typing.cast(builtins.str, jsii.get(self, "attrAutoScalingGroupArn"))
|
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")
|