aws-cdk-lib 2.167.2__py3-none-any.whl → 2.169.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 +2083 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.167.2.jsii.tgz → aws-cdk-lib@2.169.0.jsii.tgz} +0 -0
- aws_cdk/aws_accessanalyzer/__init__.py +244 -13
- aws_cdk/aws_applicationautoscaling/__init__.py +1691 -95
- aws_cdk/aws_applicationinsights/__init__.py +41 -0
- aws_cdk/aws_applicationsignals/__init__.py +124 -0
- aws_cdk/aws_autoscaling/__init__.py +743 -7
- aws_cdk/aws_batch/__init__.py +202 -5
- aws_cdk/aws_bedrock/__init__.py +12 -12
- aws_cdk/aws_cleanrooms/__init__.py +17 -8
- aws_cdk/aws_cloudformation/__init__.py +2571 -492
- aws_cdk/aws_cloudfront/__init__.py +281 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +5 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +714 -132
- aws_cdk/aws_cloudtrail/__init__.py +52 -14
- aws_cdk/aws_codebuild/__init__.py +670 -4
- aws_cdk/aws_connect/__init__.py +378 -0
- aws_cdk/aws_connectcampaignsv2/__init__.py +3376 -0
- aws_cdk/aws_customerprofiles/__init__.py +44 -0
- aws_cdk/aws_deadline/__init__.py +299 -6
- aws_cdk/aws_dynamodb/__init__.py +359 -16
- aws_cdk/aws_ec2/__init__.py +19 -6
- aws_cdk/aws_ecs/__init__.py +231 -12
- aws_cdk/aws_efs/__init__.py +61 -4
- aws_cdk/aws_eks/__init__.py +116 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +160 -11
- aws_cdk/aws_fis/__init__.py +495 -0
- aws_cdk/aws_gamelift/__init__.py +3204 -1104
- aws_cdk/aws_iot/__init__.py +209 -0
- aws_cdk/aws_iotfleetwise/__init__.py +550 -0
- aws_cdk/aws_iotsitewise/__init__.py +6 -3
- aws_cdk/aws_ivs/__init__.py +458 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +756 -8
- aws_cdk/aws_lambda/__init__.py +634 -259
- aws_cdk/aws_lambda_destinations/__init__.py +73 -0
- aws_cdk/aws_lambda_event_sources/__init__.py +102 -2
- aws_cdk/aws_location/__init__.py +18 -18
- aws_cdk/aws_mediastore/__init__.py +22 -10
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +35 -19
- aws_cdk/aws_rbin/__init__.py +902 -0
- aws_cdk/aws_rds/__init__.py +166 -3
- aws_cdk/aws_route53resolver/__init__.py +76 -19
- aws_cdk/aws_sagemaker/__init__.py +32 -0
- aws_cdk/aws_securityhub/__init__.py +11 -14
- aws_cdk/aws_ses/__init__.py +58 -5
- aws_cdk/aws_sns/__init__.py +593 -8
- aws_cdk/aws_sns_subscriptions/__init__.py +68 -22
- aws_cdk/aws_stepfunctions_tasks/__init__.py +1601 -8
- aws_cdk/aws_synthetics/__init__.py +46 -0
- aws_cdk/aws_transfer/__init__.py +0 -8
- aws_cdk/aws_vpclattice/__init__.py +157 -2
- aws_cdk/aws_wisdom/__init__.py +113 -69
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/RECORD +60 -58
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_wisdom/__init__.py
CHANGED
|
@@ -393,9 +393,10 @@ class CfnAIAgent(
|
|
|
393
393
|
answer_recommendation_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.AnswerRecommendationAIAgentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
394
394
|
manual_search_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.ManualSearchAIAgentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
395
395
|
) -> None:
|
|
396
|
-
'''
|
|
397
|
-
|
|
398
|
-
:param
|
|
396
|
+
'''A typed union that specifies the configuration based on the type of AI Agent.
|
|
397
|
+
|
|
398
|
+
:param answer_recommendation_ai_agent_configuration: The configuration for AI Agents of type ``ANSWER_RECOMMENDATION`` .
|
|
399
|
+
:param manual_search_ai_agent_configuration: The configuration for AI Agents of type ``MANUAL_SEARCH`` .
|
|
399
400
|
|
|
400
401
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagentconfiguration.html
|
|
401
402
|
:exampleMetadata: fixture=_generated
|
|
@@ -507,7 +508,8 @@ class CfnAIAgent(
|
|
|
507
508
|
def answer_recommendation_ai_agent_configuration(
|
|
508
509
|
self,
|
|
509
510
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.AnswerRecommendationAIAgentConfigurationProperty"]]:
|
|
510
|
-
'''
|
|
511
|
+
'''The configuration for AI Agents of type ``ANSWER_RECOMMENDATION`` .
|
|
512
|
+
|
|
511
513
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagentconfiguration.html#cfn-wisdom-aiagent-aiagentconfiguration-answerrecommendationaiagentconfiguration
|
|
512
514
|
'''
|
|
513
515
|
result = self._values.get("answer_recommendation_ai_agent_configuration")
|
|
@@ -517,7 +519,8 @@ class CfnAIAgent(
|
|
|
517
519
|
def manual_search_ai_agent_configuration(
|
|
518
520
|
self,
|
|
519
521
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.ManualSearchAIAgentConfigurationProperty"]]:
|
|
520
|
-
'''
|
|
522
|
+
'''The configuration for AI Agents of type ``MANUAL_SEARCH`` .
|
|
523
|
+
|
|
521
524
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagentconfiguration.html#cfn-wisdom-aiagent-aiagentconfiguration-manualsearchaiagentconfiguration
|
|
522
525
|
'''
|
|
523
526
|
result = self._values.get("manual_search_ai_agent_configuration")
|
|
@@ -553,11 +556,12 @@ class CfnAIAgent(
|
|
|
553
556
|
intent_labeling_generation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
554
557
|
query_reformulation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
555
558
|
) -> None:
|
|
556
|
-
'''
|
|
557
|
-
|
|
558
|
-
:param
|
|
559
|
-
:param
|
|
560
|
-
:param
|
|
559
|
+
'''The configuration for AI Agents of type ``ANSWER_RECOMMENDATION`` .
|
|
560
|
+
|
|
561
|
+
:param answer_generation_ai_prompt_id: The AI Prompt identifier for the Answer Generation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
562
|
+
:param association_configurations: The association configurations for overriding behavior on this AI Agent.
|
|
563
|
+
:param intent_labeling_generation_ai_prompt_id: The AI Prompt identifier for the Intent Labeling prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
564
|
+
:param query_reformulation_ai_prompt_id: The AI Prompt identifier for the Query Reformulation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
561
565
|
|
|
562
566
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html
|
|
563
567
|
:exampleMetadata: fixture=_generated
|
|
@@ -630,7 +634,8 @@ class CfnAIAgent(
|
|
|
630
634
|
|
|
631
635
|
@builtins.property
|
|
632
636
|
def answer_generation_ai_prompt_id(self) -> typing.Optional[builtins.str]:
|
|
633
|
-
'''
|
|
637
|
+
'''The AI Prompt identifier for the Answer Generation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
638
|
+
|
|
634
639
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html#cfn-wisdom-aiagent-answerrecommendationaiagentconfiguration-answergenerationaipromptid
|
|
635
640
|
'''
|
|
636
641
|
result = self._values.get("answer_generation_ai_prompt_id")
|
|
@@ -640,7 +645,8 @@ class CfnAIAgent(
|
|
|
640
645
|
def association_configurations(
|
|
641
646
|
self,
|
|
642
647
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.AssociationConfigurationProperty"]]]]:
|
|
643
|
-
'''
|
|
648
|
+
'''The association configurations for overriding behavior on this AI Agent.
|
|
649
|
+
|
|
644
650
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html#cfn-wisdom-aiagent-answerrecommendationaiagentconfiguration-associationconfigurations
|
|
645
651
|
'''
|
|
646
652
|
result = self._values.get("association_configurations")
|
|
@@ -650,7 +656,8 @@ class CfnAIAgent(
|
|
|
650
656
|
def intent_labeling_generation_ai_prompt_id(
|
|
651
657
|
self,
|
|
652
658
|
) -> typing.Optional[builtins.str]:
|
|
653
|
-
'''
|
|
659
|
+
'''The AI Prompt identifier for the Intent Labeling prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
660
|
+
|
|
654
661
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html#cfn-wisdom-aiagent-answerrecommendationaiagentconfiguration-intentlabelinggenerationaipromptid
|
|
655
662
|
'''
|
|
656
663
|
result = self._values.get("intent_labeling_generation_ai_prompt_id")
|
|
@@ -658,7 +665,8 @@ class CfnAIAgent(
|
|
|
658
665
|
|
|
659
666
|
@builtins.property
|
|
660
667
|
def query_reformulation_ai_prompt_id(self) -> typing.Optional[builtins.str]:
|
|
661
|
-
'''
|
|
668
|
+
'''The AI Prompt identifier for the Query Reformulation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
669
|
+
|
|
662
670
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html#cfn-wisdom-aiagent-answerrecommendationaiagentconfiguration-queryreformulationaipromptid
|
|
663
671
|
'''
|
|
664
672
|
result = self._values.get("query_reformulation_ai_prompt_id")
|
|
@@ -688,8 +696,9 @@ class CfnAIAgent(
|
|
|
688
696
|
*,
|
|
689
697
|
knowledge_base_association_configuration_data: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.KnowledgeBaseAssociationConfigurationDataProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
690
698
|
) -> None:
|
|
691
|
-
'''
|
|
692
|
-
|
|
699
|
+
'''A typed union of the data of the configuration for an Amazon Q in Connect Assistant Association.
|
|
700
|
+
|
|
701
|
+
:param knowledge_base_association_configuration_data: The data of the configuration for a ``KNOWLEDGE_BASE`` type Amazon Q in Connect Assistant Association.
|
|
693
702
|
|
|
694
703
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-associationconfigurationdata.html
|
|
695
704
|
:exampleMetadata: fixture=_generated
|
|
@@ -746,7 +755,8 @@ class CfnAIAgent(
|
|
|
746
755
|
def knowledge_base_association_configuration_data(
|
|
747
756
|
self,
|
|
748
757
|
) -> typing.Union[_IResolvable_da3f097b, "CfnAIAgent.KnowledgeBaseAssociationConfigurationDataProperty"]:
|
|
749
|
-
'''
|
|
758
|
+
'''The data of the configuration for a ``KNOWLEDGE_BASE`` type Amazon Q in Connect Assistant Association.
|
|
759
|
+
|
|
750
760
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-associationconfigurationdata.html#cfn-wisdom-aiagent-associationconfigurationdata-knowledgebaseassociationconfigurationdata
|
|
751
761
|
'''
|
|
752
762
|
result = self._values.get("knowledge_base_association_configuration_data")
|
|
@@ -781,10 +791,11 @@ class CfnAIAgent(
|
|
|
781
791
|
association_id: typing.Optional[builtins.str] = None,
|
|
782
792
|
association_type: typing.Optional[builtins.str] = None,
|
|
783
793
|
) -> None:
|
|
784
|
-
'''
|
|
785
|
-
|
|
786
|
-
:param
|
|
787
|
-
:param
|
|
794
|
+
'''The configuration for an Amazon Q in Connect Assistant Association.
|
|
795
|
+
|
|
796
|
+
:param association_configuration_data: A typed union of the data of the configuration for an Amazon Q in Connect Assistant Association.
|
|
797
|
+
:param association_id: The identifier of the association for this Association Configuration.
|
|
798
|
+
:param association_type: The type of the association for this Association Configuration.
|
|
788
799
|
|
|
789
800
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-associationconfiguration.html
|
|
790
801
|
:exampleMetadata: fixture=_generated
|
|
@@ -851,7 +862,8 @@ class CfnAIAgent(
|
|
|
851
862
|
def association_configuration_data(
|
|
852
863
|
self,
|
|
853
864
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.AssociationConfigurationDataProperty"]]:
|
|
854
|
-
'''
|
|
865
|
+
'''A typed union of the data of the configuration for an Amazon Q in Connect Assistant Association.
|
|
866
|
+
|
|
855
867
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-associationconfiguration.html#cfn-wisdom-aiagent-associationconfiguration-associationconfigurationdata
|
|
856
868
|
'''
|
|
857
869
|
result = self._values.get("association_configuration_data")
|
|
@@ -859,7 +871,8 @@ class CfnAIAgent(
|
|
|
859
871
|
|
|
860
872
|
@builtins.property
|
|
861
873
|
def association_id(self) -> typing.Optional[builtins.str]:
|
|
862
|
-
'''
|
|
874
|
+
'''The identifier of the association for this Association Configuration.
|
|
875
|
+
|
|
863
876
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-associationconfiguration.html#cfn-wisdom-aiagent-associationconfiguration-associationid
|
|
864
877
|
'''
|
|
865
878
|
result = self._values.get("association_id")
|
|
@@ -867,7 +880,8 @@ class CfnAIAgent(
|
|
|
867
880
|
|
|
868
881
|
@builtins.property
|
|
869
882
|
def association_type(self) -> typing.Optional[builtins.str]:
|
|
870
|
-
'''
|
|
883
|
+
'''The type of the association for this Association Configuration.
|
|
884
|
+
|
|
871
885
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-associationconfiguration.html#cfn-wisdom-aiagent-associationconfiguration-associationtype
|
|
872
886
|
'''
|
|
873
887
|
result = self._values.get("association_type")
|
|
@@ -901,9 +915,10 @@ class CfnAIAgent(
|
|
|
901
915
|
max_results: typing.Optional[jsii.Number] = None,
|
|
902
916
|
override_knowledge_base_search_type: typing.Optional[builtins.str] = None,
|
|
903
917
|
) -> None:
|
|
904
|
-
'''
|
|
905
|
-
|
|
906
|
-
:param
|
|
918
|
+
'''The data of the configuration for a ``KNOWLEDGE_BASE`` type Amazon Q in Connect Assistant Association.
|
|
919
|
+
|
|
920
|
+
:param content_tag_filter: An object that can be used to specify Tag conditions.
|
|
921
|
+
:param max_results: The maximum number of results to return per page.
|
|
907
922
|
:param override_knowledge_base_search_type:
|
|
908
923
|
|
|
909
924
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebaseassociationconfigurationdata.html
|
|
@@ -965,7 +980,8 @@ class CfnAIAgent(
|
|
|
965
980
|
def content_tag_filter(
|
|
966
981
|
self,
|
|
967
982
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.TagFilterProperty"]]:
|
|
968
|
-
'''
|
|
983
|
+
'''An object that can be used to specify Tag conditions.
|
|
984
|
+
|
|
969
985
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebaseassociationconfigurationdata.html#cfn-wisdom-aiagent-knowledgebaseassociationconfigurationdata-contenttagfilter
|
|
970
986
|
'''
|
|
971
987
|
result = self._values.get("content_tag_filter")
|
|
@@ -973,7 +989,8 @@ class CfnAIAgent(
|
|
|
973
989
|
|
|
974
990
|
@builtins.property
|
|
975
991
|
def max_results(self) -> typing.Optional[jsii.Number]:
|
|
976
|
-
'''
|
|
992
|
+
'''The maximum number of results to return per page.
|
|
993
|
+
|
|
977
994
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebaseassociationconfigurationdata.html#cfn-wisdom-aiagent-knowledgebaseassociationconfigurationdata-maxresults
|
|
978
995
|
'''
|
|
979
996
|
result = self._values.get("max_results")
|
|
@@ -1013,9 +1030,10 @@ class CfnAIAgent(
|
|
|
1013
1030
|
answer_generation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
1014
1031
|
association_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.AssociationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1015
1032
|
) -> None:
|
|
1016
|
-
'''
|
|
1017
|
-
|
|
1018
|
-
:param
|
|
1033
|
+
'''The configuration for AI Agents of type ``MANUAL_SEARCH`` .
|
|
1034
|
+
|
|
1035
|
+
:param answer_generation_ai_prompt_id: The AI Prompt identifier for the Answer Generation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
1036
|
+
:param association_configurations: The association configurations for overriding behavior on this AI Agent.
|
|
1019
1037
|
|
|
1020
1038
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-manualsearchaiagentconfiguration.html
|
|
1021
1039
|
:exampleMetadata: fixture=_generated
|
|
@@ -1080,7 +1098,8 @@ class CfnAIAgent(
|
|
|
1080
1098
|
|
|
1081
1099
|
@builtins.property
|
|
1082
1100
|
def answer_generation_ai_prompt_id(self) -> typing.Optional[builtins.str]:
|
|
1083
|
-
'''
|
|
1101
|
+
'''The AI Prompt identifier for the Answer Generation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
1102
|
+
|
|
1084
1103
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-manualsearchaiagentconfiguration.html#cfn-wisdom-aiagent-manualsearchaiagentconfiguration-answergenerationaipromptid
|
|
1085
1104
|
'''
|
|
1086
1105
|
result = self._values.get("answer_generation_ai_prompt_id")
|
|
@@ -1090,7 +1109,8 @@ class CfnAIAgent(
|
|
|
1090
1109
|
def association_configurations(
|
|
1091
1110
|
self,
|
|
1092
1111
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.AssociationConfigurationProperty"]]]]:
|
|
1093
|
-
'''
|
|
1112
|
+
'''The association configurations for overriding behavior on this AI Agent.
|
|
1113
|
+
|
|
1094
1114
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-manualsearchaiagentconfiguration.html#cfn-wisdom-aiagent-manualsearchaiagentconfiguration-associationconfigurations
|
|
1095
1115
|
'''
|
|
1096
1116
|
result = self._values.get("association_configurations")
|
|
@@ -1124,7 +1144,7 @@ class CfnAIAgent(
|
|
|
1124
1144
|
) -> None:
|
|
1125
1145
|
'''
|
|
1126
1146
|
:param and_conditions:
|
|
1127
|
-
:param tag_condition:
|
|
1147
|
+
:param tag_condition: A leaf node condition which can be used to specify a tag condition.
|
|
1128
1148
|
|
|
1129
1149
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orcondition.html
|
|
1130
1150
|
:exampleMetadata: fixture=_generated
|
|
@@ -1174,7 +1194,8 @@ class CfnAIAgent(
|
|
|
1174
1194
|
def tag_condition(
|
|
1175
1195
|
self,
|
|
1176
1196
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.TagConditionProperty"]]:
|
|
1177
|
-
'''
|
|
1197
|
+
'''A leaf node condition which can be used to specify a tag condition.
|
|
1198
|
+
|
|
1178
1199
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orcondition.html#cfn-wisdom-aiagent-orcondition-tagcondition
|
|
1179
1200
|
'''
|
|
1180
1201
|
result = self._values.get("tag_condition")
|
|
@@ -1203,9 +1224,10 @@ class CfnAIAgent(
|
|
|
1203
1224
|
key: builtins.str,
|
|
1204
1225
|
value: typing.Optional[builtins.str] = None,
|
|
1205
1226
|
) -> None:
|
|
1206
|
-
'''
|
|
1207
|
-
|
|
1208
|
-
:param
|
|
1227
|
+
'''An object that can be used to specify tag conditions.
|
|
1228
|
+
|
|
1229
|
+
:param key: The tag key in the tag condition.
|
|
1230
|
+
:param value: The tag value in the tag condition.
|
|
1209
1231
|
|
|
1210
1232
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html
|
|
1211
1233
|
:exampleMetadata: fixture=_generated
|
|
@@ -1235,7 +1257,8 @@ class CfnAIAgent(
|
|
|
1235
1257
|
|
|
1236
1258
|
@builtins.property
|
|
1237
1259
|
def key(self) -> builtins.str:
|
|
1238
|
-
'''
|
|
1260
|
+
'''The tag key in the tag condition.
|
|
1261
|
+
|
|
1239
1262
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html#cfn-wisdom-aiagent-tagcondition-key
|
|
1240
1263
|
'''
|
|
1241
1264
|
result = self._values.get("key")
|
|
@@ -1244,7 +1267,8 @@ class CfnAIAgent(
|
|
|
1244
1267
|
|
|
1245
1268
|
@builtins.property
|
|
1246
1269
|
def value(self) -> typing.Optional[builtins.str]:
|
|
1247
|
-
'''
|
|
1270
|
+
'''The tag value in the tag condition.
|
|
1271
|
+
|
|
1248
1272
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html#cfn-wisdom-aiagent-tagcondition-value
|
|
1249
1273
|
'''
|
|
1250
1274
|
result = self._values.get("value")
|
|
@@ -1278,10 +1302,11 @@ class CfnAIAgent(
|
|
|
1278
1302
|
or_conditions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.OrConditionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1279
1303
|
tag_condition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.TagConditionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1280
1304
|
) -> None:
|
|
1281
|
-
'''
|
|
1282
|
-
|
|
1283
|
-
:param
|
|
1284
|
-
:param
|
|
1305
|
+
'''An object that can be used to specify tag conditions.
|
|
1306
|
+
|
|
1307
|
+
:param and_conditions: A list of conditions which would be applied together with an ``AND`` condition.
|
|
1308
|
+
:param or_conditions: A list of conditions which would be applied together with an ``OR`` condition.
|
|
1309
|
+
:param tag_condition: A leaf node condition which can be used to specify a tag condition.
|
|
1285
1310
|
|
|
1286
1311
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagfilter.html
|
|
1287
1312
|
:exampleMetadata: fixture=_generated
|
|
@@ -1338,7 +1363,8 @@ class CfnAIAgent(
|
|
|
1338
1363
|
def and_conditions(
|
|
1339
1364
|
self,
|
|
1340
1365
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.TagConditionProperty"]]]]:
|
|
1341
|
-
'''
|
|
1366
|
+
'''A list of conditions which would be applied together with an ``AND`` condition.
|
|
1367
|
+
|
|
1342
1368
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagfilter.html#cfn-wisdom-aiagent-tagfilter-andconditions
|
|
1343
1369
|
'''
|
|
1344
1370
|
result = self._values.get("and_conditions")
|
|
@@ -1348,7 +1374,8 @@ class CfnAIAgent(
|
|
|
1348
1374
|
def or_conditions(
|
|
1349
1375
|
self,
|
|
1350
1376
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.OrConditionProperty"]]]]:
|
|
1351
|
-
'''
|
|
1377
|
+
'''A list of conditions which would be applied together with an ``OR`` condition.
|
|
1378
|
+
|
|
1352
1379
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagfilter.html#cfn-wisdom-aiagent-tagfilter-orconditions
|
|
1353
1380
|
'''
|
|
1354
1381
|
result = self._values.get("or_conditions")
|
|
@@ -1358,7 +1385,8 @@ class CfnAIAgent(
|
|
|
1358
1385
|
def tag_condition(
|
|
1359
1386
|
self,
|
|
1360
1387
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.TagConditionProperty"]]:
|
|
1361
|
-
'''
|
|
1388
|
+
'''A leaf node condition which can be used to specify a tag condition.
|
|
1389
|
+
|
|
1362
1390
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagfilter.html#cfn-wisdom-aiagent-tagfilter-tagcondition
|
|
1363
1391
|
'''
|
|
1364
1392
|
result = self._values.get("tag_condition")
|
|
@@ -1647,9 +1675,9 @@ class CfnAIAgentVersion(
|
|
|
1647
1675
|
'''
|
|
1648
1676
|
:param scope: Scope in which this resource is defined.
|
|
1649
1677
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1650
|
-
:param ai_agent_id:
|
|
1678
|
+
:param ai_agent_id: The identifier of the AI Agent.
|
|
1651
1679
|
:param assistant_id:
|
|
1652
|
-
:param modified_time_seconds:
|
|
1680
|
+
:param modified_time_seconds: The time the AI Agent version was last modified in seconds.
|
|
1653
1681
|
'''
|
|
1654
1682
|
if __debug__:
|
|
1655
1683
|
type_hints = typing.get_type_hints(_typecheckingstub__fa5a166c3d658d9410f80c3ff44a4aee88b29cb4def5f6c7d811c5b47f5ffb68)
|
|
@@ -1734,6 +1762,7 @@ class CfnAIAgentVersion(
|
|
|
1734
1762
|
@builtins.property
|
|
1735
1763
|
@jsii.member(jsii_name="aiAgentId")
|
|
1736
1764
|
def ai_agent_id(self) -> builtins.str:
|
|
1765
|
+
'''The identifier of the AI Agent.'''
|
|
1737
1766
|
return typing.cast(builtins.str, jsii.get(self, "aiAgentId"))
|
|
1738
1767
|
|
|
1739
1768
|
@ai_agent_id.setter
|
|
@@ -1758,6 +1787,7 @@ class CfnAIAgentVersion(
|
|
|
1758
1787
|
@builtins.property
|
|
1759
1788
|
@jsii.member(jsii_name="modifiedTimeSeconds")
|
|
1760
1789
|
def modified_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1790
|
+
'''The time the AI Agent version was last modified in seconds.'''
|
|
1761
1791
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "modifiedTimeSeconds"))
|
|
1762
1792
|
|
|
1763
1793
|
@modified_time_seconds.setter
|
|
@@ -1787,9 +1817,9 @@ class CfnAIAgentVersionProps:
|
|
|
1787
1817
|
) -> None:
|
|
1788
1818
|
'''Properties for defining a ``CfnAIAgentVersion``.
|
|
1789
1819
|
|
|
1790
|
-
:param ai_agent_id:
|
|
1820
|
+
:param ai_agent_id: The identifier of the AI Agent.
|
|
1791
1821
|
:param assistant_id:
|
|
1792
|
-
:param modified_time_seconds:
|
|
1822
|
+
:param modified_time_seconds: The time the AI Agent version was last modified in seconds.
|
|
1793
1823
|
|
|
1794
1824
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html
|
|
1795
1825
|
:exampleMetadata: fixture=_generated
|
|
@@ -1822,7 +1852,8 @@ class CfnAIAgentVersionProps:
|
|
|
1822
1852
|
|
|
1823
1853
|
@builtins.property
|
|
1824
1854
|
def ai_agent_id(self) -> builtins.str:
|
|
1825
|
-
'''
|
|
1855
|
+
'''The identifier of the AI Agent.
|
|
1856
|
+
|
|
1826
1857
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html#cfn-wisdom-aiagentversion-aiagentid
|
|
1827
1858
|
'''
|
|
1828
1859
|
result = self._values.get("ai_agent_id")
|
|
@@ -1840,7 +1871,8 @@ class CfnAIAgentVersionProps:
|
|
|
1840
1871
|
|
|
1841
1872
|
@builtins.property
|
|
1842
1873
|
def modified_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1843
|
-
'''
|
|
1874
|
+
'''The time the AI Agent version was last modified in seconds.
|
|
1875
|
+
|
|
1844
1876
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html#cfn-wisdom-aiagentversion-modifiedtimeseconds
|
|
1845
1877
|
'''
|
|
1846
1878
|
result = self._values.get("modified_time_seconds")
|
|
@@ -2149,8 +2181,9 @@ class CfnAIPrompt(
|
|
|
2149
2181
|
*,
|
|
2150
2182
|
text_full_ai_prompt_edit_template_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIPrompt.TextFullAIPromptEditTemplateConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
2151
2183
|
) -> None:
|
|
2152
|
-
'''
|
|
2153
|
-
|
|
2184
|
+
'''A typed union that specifies the configuration for a prompt template based on its type.
|
|
2185
|
+
|
|
2186
|
+
:param text_full_ai_prompt_edit_template_configuration: The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.
|
|
2154
2187
|
|
|
2155
2188
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttemplateconfiguration.html
|
|
2156
2189
|
:exampleMetadata: fixture=_generated
|
|
@@ -2178,7 +2211,8 @@ class CfnAIPrompt(
|
|
|
2178
2211
|
def text_full_ai_prompt_edit_template_configuration(
|
|
2179
2212
|
self,
|
|
2180
2213
|
) -> typing.Union[_IResolvable_da3f097b, "CfnAIPrompt.TextFullAIPromptEditTemplateConfigurationProperty"]:
|
|
2181
|
-
'''
|
|
2214
|
+
'''The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.
|
|
2215
|
+
|
|
2182
2216
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttemplateconfiguration.html#cfn-wisdom-aiprompt-aiprompttemplateconfiguration-textfullaipromptedittemplateconfiguration
|
|
2183
2217
|
'''
|
|
2184
2218
|
result = self._values.get("text_full_ai_prompt_edit_template_configuration")
|
|
@@ -2203,8 +2237,9 @@ class CfnAIPrompt(
|
|
|
2203
2237
|
)
|
|
2204
2238
|
class TextFullAIPromptEditTemplateConfigurationProperty:
|
|
2205
2239
|
def __init__(self, *, text: builtins.str) -> None:
|
|
2206
|
-
'''
|
|
2207
|
-
|
|
2240
|
+
'''The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.
|
|
2241
|
+
|
|
2242
|
+
:param text: The YAML text for the AI Prompt template.
|
|
2208
2243
|
|
|
2209
2244
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-textfullaipromptedittemplateconfiguration.html
|
|
2210
2245
|
:exampleMetadata: fixture=_generated
|
|
@@ -2228,7 +2263,8 @@ class CfnAIPrompt(
|
|
|
2228
2263
|
|
|
2229
2264
|
@builtins.property
|
|
2230
2265
|
def text(self) -> builtins.str:
|
|
2231
|
-
'''
|
|
2266
|
+
'''The YAML text for the AI Prompt template.
|
|
2267
|
+
|
|
2232
2268
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-textfullaipromptedittemplateconfiguration.html#cfn-wisdom-aiprompt-textfullaipromptedittemplateconfiguration-text
|
|
2233
2269
|
'''
|
|
2234
2270
|
result = self._values.get("text")
|
|
@@ -2487,9 +2523,9 @@ class CfnAIPromptVersion(
|
|
|
2487
2523
|
'''
|
|
2488
2524
|
:param scope: Scope in which this resource is defined.
|
|
2489
2525
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2490
|
-
:param ai_prompt_id:
|
|
2491
|
-
:param assistant_id:
|
|
2492
|
-
:param modified_time_seconds:
|
|
2526
|
+
:param ai_prompt_id: The identifier of the Amazon Q in Connect AI prompt.
|
|
2527
|
+
:param assistant_id: The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
|
|
2528
|
+
:param modified_time_seconds: The time the AI Prompt version was last modified in seconds.
|
|
2493
2529
|
'''
|
|
2494
2530
|
if __debug__:
|
|
2495
2531
|
type_hints = typing.get_type_hints(_typecheckingstub__729db38c828e5e73ae0386aea45298b479e1a069777600fadadd338035a13e5d)
|
|
@@ -2574,6 +2610,7 @@ class CfnAIPromptVersion(
|
|
|
2574
2610
|
@builtins.property
|
|
2575
2611
|
@jsii.member(jsii_name="aiPromptId")
|
|
2576
2612
|
def ai_prompt_id(self) -> builtins.str:
|
|
2613
|
+
'''The identifier of the Amazon Q in Connect AI prompt.'''
|
|
2577
2614
|
return typing.cast(builtins.str, jsii.get(self, "aiPromptId"))
|
|
2578
2615
|
|
|
2579
2616
|
@ai_prompt_id.setter
|
|
@@ -2586,6 +2623,7 @@ class CfnAIPromptVersion(
|
|
|
2586
2623
|
@builtins.property
|
|
2587
2624
|
@jsii.member(jsii_name="assistantId")
|
|
2588
2625
|
def assistant_id(self) -> builtins.str:
|
|
2626
|
+
'''The identifier of the Amazon Q in Connect assistant.'''
|
|
2589
2627
|
return typing.cast(builtins.str, jsii.get(self, "assistantId"))
|
|
2590
2628
|
|
|
2591
2629
|
@assistant_id.setter
|
|
@@ -2598,6 +2636,7 @@ class CfnAIPromptVersion(
|
|
|
2598
2636
|
@builtins.property
|
|
2599
2637
|
@jsii.member(jsii_name="modifiedTimeSeconds")
|
|
2600
2638
|
def modified_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
2639
|
+
'''The time the AI Prompt version was last modified in seconds.'''
|
|
2601
2640
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "modifiedTimeSeconds"))
|
|
2602
2641
|
|
|
2603
2642
|
@modified_time_seconds.setter
|
|
@@ -2627,9 +2666,9 @@ class CfnAIPromptVersionProps:
|
|
|
2627
2666
|
) -> None:
|
|
2628
2667
|
'''Properties for defining a ``CfnAIPromptVersion``.
|
|
2629
2668
|
|
|
2630
|
-
:param ai_prompt_id:
|
|
2631
|
-
:param assistant_id:
|
|
2632
|
-
:param modified_time_seconds:
|
|
2669
|
+
:param ai_prompt_id: The identifier of the Amazon Q in Connect AI prompt.
|
|
2670
|
+
:param assistant_id: The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
|
|
2671
|
+
:param modified_time_seconds: The time the AI Prompt version was last modified in seconds.
|
|
2633
2672
|
|
|
2634
2673
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html
|
|
2635
2674
|
:exampleMetadata: fixture=_generated
|
|
@@ -2662,7 +2701,8 @@ class CfnAIPromptVersionProps:
|
|
|
2662
2701
|
|
|
2663
2702
|
@builtins.property
|
|
2664
2703
|
def ai_prompt_id(self) -> builtins.str:
|
|
2665
|
-
'''
|
|
2704
|
+
'''The identifier of the Amazon Q in Connect AI prompt.
|
|
2705
|
+
|
|
2666
2706
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html#cfn-wisdom-aipromptversion-aipromptid
|
|
2667
2707
|
'''
|
|
2668
2708
|
result = self._values.get("ai_prompt_id")
|
|
@@ -2671,7 +2711,10 @@ class CfnAIPromptVersionProps:
|
|
|
2671
2711
|
|
|
2672
2712
|
@builtins.property
|
|
2673
2713
|
def assistant_id(self) -> builtins.str:
|
|
2674
|
-
'''
|
|
2714
|
+
'''The identifier of the Amazon Q in Connect assistant.
|
|
2715
|
+
|
|
2716
|
+
Can be either the ID or the ARN. URLs cannot contain the ARN.
|
|
2717
|
+
|
|
2675
2718
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html#cfn-wisdom-aipromptversion-assistantid
|
|
2676
2719
|
'''
|
|
2677
2720
|
result = self._values.get("assistant_id")
|
|
@@ -2680,7 +2723,8 @@ class CfnAIPromptVersionProps:
|
|
|
2680
2723
|
|
|
2681
2724
|
@builtins.property
|
|
2682
2725
|
def modified_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
2683
|
-
'''
|
|
2726
|
+
'''The time the AI Prompt version was last modified in seconds.
|
|
2727
|
+
|
|
2684
2728
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html#cfn-wisdom-aipromptversion-modifiedtimeseconds
|
|
2685
2729
|
'''
|
|
2686
2730
|
result = self._values.get("modified_time_seconds")
|