aws-cdk-lib 2.167.1__py3-none-any.whl → 2.168.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 +2081 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.167.1.jsii.tgz → aws-cdk-lib@2.168.0.jsii.tgz} +0 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +1691 -95
- aws_cdk/aws_applicationinsights/__init__.py +41 -0
- aws_cdk/aws_applicationsignals/__init__.py +117 -0
- aws_cdk/aws_autoscaling/__init__.py +441 -6
- 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 +231 -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 +668 -2
- aws_cdk/aws_connectcampaignsv2/__init__.py +3376 -0
- aws_cdk/aws_dynamodb/__init__.py +332 -11
- aws_cdk/aws_ec2/__init__.py +13 -4
- aws_cdk/aws_ecs/__init__.py +213 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +160 -11
- aws_cdk/aws_fis/__init__.py +495 -0
- aws_cdk/aws_gamelift/__init__.py +3101 -1135
- aws_cdk/aws_kinesisfirehose/__init__.py +696 -5
- 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_rds/__init__.py +51 -3
- aws_cdk/aws_securityhub/__init__.py +11 -14
- aws_cdk/aws_ses/__init__.py +58 -5
- aws_cdk/aws_stepfunctions_tasks/__init__.py +1601 -8
- aws_cdk/aws_transfer/__init__.py +0 -8
- aws_cdk/aws_vpclattice/__init__.py +39 -0
- aws_cdk/aws_wisdom/__init__.py +134 -85
- aws_cdk/cx_api/__init__.py +6 -6
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/RECORD +45 -44
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.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)
|
|
@@ -1696,7 +1724,8 @@ class CfnAIAgentVersion(
|
|
|
1696
1724
|
@builtins.property
|
|
1697
1725
|
@jsii.member(jsii_name="attrAiAgentArn")
|
|
1698
1726
|
def attr_ai_agent_arn(self) -> builtins.str:
|
|
1699
|
-
'''
|
|
1727
|
+
'''The Amazon Resource Name (ARN) of the AI agent.
|
|
1728
|
+
|
|
1700
1729
|
:cloudformationAttribute: AIAgentArn
|
|
1701
1730
|
'''
|
|
1702
1731
|
return typing.cast(builtins.str, jsii.get(self, "attrAiAgentArn"))
|
|
@@ -1712,7 +1741,8 @@ class CfnAIAgentVersion(
|
|
|
1712
1741
|
@builtins.property
|
|
1713
1742
|
@jsii.member(jsii_name="attrAssistantArn")
|
|
1714
1743
|
def attr_assistant_arn(self) -> builtins.str:
|
|
1715
|
-
'''
|
|
1744
|
+
'''The Amazon Resource Name (ARN) of the Amazon Q in Connect assistant.
|
|
1745
|
+
|
|
1716
1746
|
:cloudformationAttribute: AssistantArn
|
|
1717
1747
|
'''
|
|
1718
1748
|
return typing.cast(builtins.str, jsii.get(self, "attrAssistantArn"))
|
|
@@ -1734,6 +1764,7 @@ class CfnAIAgentVersion(
|
|
|
1734
1764
|
@builtins.property
|
|
1735
1765
|
@jsii.member(jsii_name="aiAgentId")
|
|
1736
1766
|
def ai_agent_id(self) -> builtins.str:
|
|
1767
|
+
'''The identifier of the AI Agent.'''
|
|
1737
1768
|
return typing.cast(builtins.str, jsii.get(self, "aiAgentId"))
|
|
1738
1769
|
|
|
1739
1770
|
@ai_agent_id.setter
|
|
@@ -1758,6 +1789,7 @@ class CfnAIAgentVersion(
|
|
|
1758
1789
|
@builtins.property
|
|
1759
1790
|
@jsii.member(jsii_name="modifiedTimeSeconds")
|
|
1760
1791
|
def modified_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1792
|
+
'''The time the AI Agent version was last modified in seconds.'''
|
|
1761
1793
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "modifiedTimeSeconds"))
|
|
1762
1794
|
|
|
1763
1795
|
@modified_time_seconds.setter
|
|
@@ -1787,9 +1819,9 @@ class CfnAIAgentVersionProps:
|
|
|
1787
1819
|
) -> None:
|
|
1788
1820
|
'''Properties for defining a ``CfnAIAgentVersion``.
|
|
1789
1821
|
|
|
1790
|
-
:param ai_agent_id:
|
|
1822
|
+
:param ai_agent_id: The identifier of the AI Agent.
|
|
1791
1823
|
:param assistant_id:
|
|
1792
|
-
:param modified_time_seconds:
|
|
1824
|
+
:param modified_time_seconds: The time the AI Agent version was last modified in seconds.
|
|
1793
1825
|
|
|
1794
1826
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html
|
|
1795
1827
|
:exampleMetadata: fixture=_generated
|
|
@@ -1822,7 +1854,8 @@ class CfnAIAgentVersionProps:
|
|
|
1822
1854
|
|
|
1823
1855
|
@builtins.property
|
|
1824
1856
|
def ai_agent_id(self) -> builtins.str:
|
|
1825
|
-
'''
|
|
1857
|
+
'''The identifier of the AI Agent.
|
|
1858
|
+
|
|
1826
1859
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html#cfn-wisdom-aiagentversion-aiagentid
|
|
1827
1860
|
'''
|
|
1828
1861
|
result = self._values.get("ai_agent_id")
|
|
@@ -1840,7 +1873,8 @@ class CfnAIAgentVersionProps:
|
|
|
1840
1873
|
|
|
1841
1874
|
@builtins.property
|
|
1842
1875
|
def modified_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1843
|
-
'''
|
|
1876
|
+
'''The time the AI Agent version was last modified in seconds.
|
|
1877
|
+
|
|
1844
1878
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html#cfn-wisdom-aiagentversion-modifiedtimeseconds
|
|
1845
1879
|
'''
|
|
1846
1880
|
result = self._values.get("modified_time_seconds")
|
|
@@ -2149,8 +2183,9 @@ class CfnAIPrompt(
|
|
|
2149
2183
|
*,
|
|
2150
2184
|
text_full_ai_prompt_edit_template_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIPrompt.TextFullAIPromptEditTemplateConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
2151
2185
|
) -> None:
|
|
2152
|
-
'''
|
|
2153
|
-
|
|
2186
|
+
'''A typed union that specifies the configuration for a prompt template based on its type.
|
|
2187
|
+
|
|
2188
|
+
: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
2189
|
|
|
2155
2190
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttemplateconfiguration.html
|
|
2156
2191
|
:exampleMetadata: fixture=_generated
|
|
@@ -2178,7 +2213,8 @@ class CfnAIPrompt(
|
|
|
2178
2213
|
def text_full_ai_prompt_edit_template_configuration(
|
|
2179
2214
|
self,
|
|
2180
2215
|
) -> typing.Union[_IResolvable_da3f097b, "CfnAIPrompt.TextFullAIPromptEditTemplateConfigurationProperty"]:
|
|
2181
|
-
'''
|
|
2216
|
+
'''The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.
|
|
2217
|
+
|
|
2182
2218
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttemplateconfiguration.html#cfn-wisdom-aiprompt-aiprompttemplateconfiguration-textfullaipromptedittemplateconfiguration
|
|
2183
2219
|
'''
|
|
2184
2220
|
result = self._values.get("text_full_ai_prompt_edit_template_configuration")
|
|
@@ -2203,8 +2239,9 @@ class CfnAIPrompt(
|
|
|
2203
2239
|
)
|
|
2204
2240
|
class TextFullAIPromptEditTemplateConfigurationProperty:
|
|
2205
2241
|
def __init__(self, *, text: builtins.str) -> None:
|
|
2206
|
-
'''
|
|
2207
|
-
|
|
2242
|
+
'''The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.
|
|
2243
|
+
|
|
2244
|
+
:param text: The YAML text for the AI Prompt template.
|
|
2208
2245
|
|
|
2209
2246
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-textfullaipromptedittemplateconfiguration.html
|
|
2210
2247
|
:exampleMetadata: fixture=_generated
|
|
@@ -2228,7 +2265,8 @@ class CfnAIPrompt(
|
|
|
2228
2265
|
|
|
2229
2266
|
@builtins.property
|
|
2230
2267
|
def text(self) -> builtins.str:
|
|
2231
|
-
'''
|
|
2268
|
+
'''The YAML text for the AI Prompt template.
|
|
2269
|
+
|
|
2232
2270
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-textfullaipromptedittemplateconfiguration.html#cfn-wisdom-aiprompt-textfullaipromptedittemplateconfiguration-text
|
|
2233
2271
|
'''
|
|
2234
2272
|
result = self._values.get("text")
|
|
@@ -2487,9 +2525,9 @@ class CfnAIPromptVersion(
|
|
|
2487
2525
|
'''
|
|
2488
2526
|
:param scope: Scope in which this resource is defined.
|
|
2489
2527
|
: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:
|
|
2528
|
+
:param ai_prompt_id: The identifier of the Amazon Q in Connect AI prompt.
|
|
2529
|
+
: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.
|
|
2530
|
+
:param modified_time_seconds: The time the AI Prompt version was last modified in seconds.
|
|
2493
2531
|
'''
|
|
2494
2532
|
if __debug__:
|
|
2495
2533
|
type_hints = typing.get_type_hints(_typecheckingstub__729db38c828e5e73ae0386aea45298b479e1a069777600fadadd338035a13e5d)
|
|
@@ -2552,7 +2590,8 @@ class CfnAIPromptVersion(
|
|
|
2552
2590
|
@builtins.property
|
|
2553
2591
|
@jsii.member(jsii_name="attrAssistantArn")
|
|
2554
2592
|
def attr_assistant_arn(self) -> builtins.str:
|
|
2555
|
-
'''
|
|
2593
|
+
'''The Amazon Resource Name (ARN) of the Amazon Q in Connect assistant.
|
|
2594
|
+
|
|
2556
2595
|
:cloudformationAttribute: AssistantArn
|
|
2557
2596
|
'''
|
|
2558
2597
|
return typing.cast(builtins.str, jsii.get(self, "attrAssistantArn"))
|
|
@@ -2574,6 +2613,7 @@ class CfnAIPromptVersion(
|
|
|
2574
2613
|
@builtins.property
|
|
2575
2614
|
@jsii.member(jsii_name="aiPromptId")
|
|
2576
2615
|
def ai_prompt_id(self) -> builtins.str:
|
|
2616
|
+
'''The identifier of the Amazon Q in Connect AI prompt.'''
|
|
2577
2617
|
return typing.cast(builtins.str, jsii.get(self, "aiPromptId"))
|
|
2578
2618
|
|
|
2579
2619
|
@ai_prompt_id.setter
|
|
@@ -2586,6 +2626,7 @@ class CfnAIPromptVersion(
|
|
|
2586
2626
|
@builtins.property
|
|
2587
2627
|
@jsii.member(jsii_name="assistantId")
|
|
2588
2628
|
def assistant_id(self) -> builtins.str:
|
|
2629
|
+
'''The identifier of the Amazon Q in Connect assistant.'''
|
|
2589
2630
|
return typing.cast(builtins.str, jsii.get(self, "assistantId"))
|
|
2590
2631
|
|
|
2591
2632
|
@assistant_id.setter
|
|
@@ -2598,6 +2639,7 @@ class CfnAIPromptVersion(
|
|
|
2598
2639
|
@builtins.property
|
|
2599
2640
|
@jsii.member(jsii_name="modifiedTimeSeconds")
|
|
2600
2641
|
def modified_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
2642
|
+
'''The time the AI Prompt version was last modified in seconds.'''
|
|
2601
2643
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "modifiedTimeSeconds"))
|
|
2602
2644
|
|
|
2603
2645
|
@modified_time_seconds.setter
|
|
@@ -2627,9 +2669,9 @@ class CfnAIPromptVersionProps:
|
|
|
2627
2669
|
) -> None:
|
|
2628
2670
|
'''Properties for defining a ``CfnAIPromptVersion``.
|
|
2629
2671
|
|
|
2630
|
-
:param ai_prompt_id:
|
|
2631
|
-
:param assistant_id:
|
|
2632
|
-
:param modified_time_seconds:
|
|
2672
|
+
:param ai_prompt_id: The identifier of the Amazon Q in Connect AI prompt.
|
|
2673
|
+
: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.
|
|
2674
|
+
:param modified_time_seconds: The time the AI Prompt version was last modified in seconds.
|
|
2633
2675
|
|
|
2634
2676
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html
|
|
2635
2677
|
:exampleMetadata: fixture=_generated
|
|
@@ -2662,7 +2704,8 @@ class CfnAIPromptVersionProps:
|
|
|
2662
2704
|
|
|
2663
2705
|
@builtins.property
|
|
2664
2706
|
def ai_prompt_id(self) -> builtins.str:
|
|
2665
|
-
'''
|
|
2707
|
+
'''The identifier of the Amazon Q in Connect AI prompt.
|
|
2708
|
+
|
|
2666
2709
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html#cfn-wisdom-aipromptversion-aipromptid
|
|
2667
2710
|
'''
|
|
2668
2711
|
result = self._values.get("ai_prompt_id")
|
|
@@ -2671,7 +2714,10 @@ class CfnAIPromptVersionProps:
|
|
|
2671
2714
|
|
|
2672
2715
|
@builtins.property
|
|
2673
2716
|
def assistant_id(self) -> builtins.str:
|
|
2674
|
-
'''
|
|
2717
|
+
'''The identifier of the Amazon Q in Connect assistant.
|
|
2718
|
+
|
|
2719
|
+
Can be either the ID or the ARN. URLs cannot contain the ARN.
|
|
2720
|
+
|
|
2675
2721
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html#cfn-wisdom-aipromptversion-assistantid
|
|
2676
2722
|
'''
|
|
2677
2723
|
result = self._values.get("assistant_id")
|
|
@@ -2680,7 +2726,8 @@ class CfnAIPromptVersionProps:
|
|
|
2680
2726
|
|
|
2681
2727
|
@builtins.property
|
|
2682
2728
|
def modified_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
2683
|
-
'''
|
|
2729
|
+
'''The time the AI Prompt version was last modified in seconds.
|
|
2730
|
+
|
|
2684
2731
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html#cfn-wisdom-aipromptversion-modifiedtimeseconds
|
|
2685
2732
|
'''
|
|
2686
2733
|
result = self._values.get("modified_time_seconds")
|
|
@@ -2704,7 +2751,7 @@ class CfnAssistant(
|
|
|
2704
2751
|
metaclass=jsii.JSIIMeta,
|
|
2705
2752
|
jsii_type="aws-cdk-lib.aws_wisdom.CfnAssistant",
|
|
2706
2753
|
):
|
|
2707
|
-
'''
|
|
2754
|
+
'''Creates an Amazon Q in Connect assistant.
|
|
2708
2755
|
|
|
2709
2756
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html
|
|
2710
2757
|
:cloudformationResource: AWS::Wisdom::Assistant
|
|
@@ -2746,10 +2793,10 @@ class CfnAssistant(
|
|
|
2746
2793
|
'''
|
|
2747
2794
|
:param scope: Scope in which this resource is defined.
|
|
2748
2795
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2749
|
-
:param name: The name
|
|
2796
|
+
:param name: The name.
|
|
2750
2797
|
:param type: The type of assistant.
|
|
2751
|
-
:param description: The description
|
|
2752
|
-
:param server_side_encryption_configuration: The configuration information for the customer managed key used for encryption.
|
|
2798
|
+
:param description: The description.
|
|
2799
|
+
:param server_side_encryption_configuration: The configuration information for the customer managed key used for encryption. This KMS key must have a policy that allows ``kms:CreateGrant`` , ``kms:DescribeKey`` , ``kms:Decrypt`` , and ``kms:GenerateDataKey*`` permissions to the IAM identity using the key to invoke Amazon Q in Connect. To use Amazon Q in Connect with chat, the key policy must also allow ``kms:Decrypt`` , ``kms:GenerateDataKey*`` , and ``kms:DescribeKey`` permissions to the ``connect.amazonaws.com`` service principal. For more information about setting up a customer managed key for Amazon Q in Connect, see `Enable Amazon Q in Connect for your instance <https://docs.aws.amazon.com/connect/latest/adminguide/enable-q.html>`_ .
|
|
2753
2800
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
2754
2801
|
'''
|
|
2755
2802
|
if __debug__:
|
|
@@ -2808,7 +2855,7 @@ class CfnAssistant(
|
|
|
2808
2855
|
@builtins.property
|
|
2809
2856
|
@jsii.member(jsii_name="attrAssistantId")
|
|
2810
2857
|
def attr_assistant_id(self) -> builtins.str:
|
|
2811
|
-
'''The
|
|
2858
|
+
'''The identifier of the Amazon Q in Connect assistant.
|
|
2812
2859
|
|
|
2813
2860
|
:cloudformationAttribute: AssistantId
|
|
2814
2861
|
'''
|
|
@@ -2828,7 +2875,7 @@ class CfnAssistant(
|
|
|
2828
2875
|
@builtins.property
|
|
2829
2876
|
@jsii.member(jsii_name="name")
|
|
2830
2877
|
def name(self) -> builtins.str:
|
|
2831
|
-
'''The name
|
|
2878
|
+
'''The name.'''
|
|
2832
2879
|
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
2833
2880
|
|
|
2834
2881
|
@name.setter
|
|
@@ -2854,7 +2901,7 @@ class CfnAssistant(
|
|
|
2854
2901
|
@builtins.property
|
|
2855
2902
|
@jsii.member(jsii_name="description")
|
|
2856
2903
|
def description(self) -> typing.Optional[builtins.str]:
|
|
2857
|
-
'''The description
|
|
2904
|
+
'''The description.'''
|
|
2858
2905
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
2859
2906
|
|
|
2860
2907
|
@description.setter
|
|
@@ -3332,10 +3379,10 @@ class CfnAssistantProps:
|
|
|
3332
3379
|
) -> None:
|
|
3333
3380
|
'''Properties for defining a ``CfnAssistant``.
|
|
3334
3381
|
|
|
3335
|
-
:param name: The name
|
|
3382
|
+
:param name: The name.
|
|
3336
3383
|
:param type: The type of assistant.
|
|
3337
|
-
:param description: The description
|
|
3338
|
-
:param server_side_encryption_configuration: The configuration information for the customer managed key used for encryption.
|
|
3384
|
+
:param description: The description.
|
|
3385
|
+
:param server_side_encryption_configuration: The configuration information for the customer managed key used for encryption. This KMS key must have a policy that allows ``kms:CreateGrant`` , ``kms:DescribeKey`` , ``kms:Decrypt`` , and ``kms:GenerateDataKey*`` permissions to the IAM identity using the key to invoke Amazon Q in Connect. To use Amazon Q in Connect with chat, the key policy must also allow ``kms:Decrypt`` , ``kms:GenerateDataKey*`` , and ``kms:DescribeKey`` permissions to the ``connect.amazonaws.com`` service principal. For more information about setting up a customer managed key for Amazon Q in Connect, see `Enable Amazon Q in Connect for your instance <https://docs.aws.amazon.com/connect/latest/adminguide/enable-q.html>`_ .
|
|
3339
3386
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
3340
3387
|
|
|
3341
3388
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html
|
|
@@ -3382,7 +3429,7 @@ class CfnAssistantProps:
|
|
|
3382
3429
|
|
|
3383
3430
|
@builtins.property
|
|
3384
3431
|
def name(self) -> builtins.str:
|
|
3385
|
-
'''The name
|
|
3432
|
+
'''The name.
|
|
3386
3433
|
|
|
3387
3434
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html#cfn-wisdom-assistant-name
|
|
3388
3435
|
'''
|
|
@@ -3402,7 +3449,7 @@ class CfnAssistantProps:
|
|
|
3402
3449
|
|
|
3403
3450
|
@builtins.property
|
|
3404
3451
|
def description(self) -> typing.Optional[builtins.str]:
|
|
3405
|
-
'''The description
|
|
3452
|
+
'''The description.
|
|
3406
3453
|
|
|
3407
3454
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html#cfn-wisdom-assistant-description
|
|
3408
3455
|
'''
|
|
@@ -3415,7 +3462,9 @@ class CfnAssistantProps:
|
|
|
3415
3462
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAssistant.ServerSideEncryptionConfigurationProperty]]:
|
|
3416
3463
|
'''The configuration information for the customer managed key used for encryption.
|
|
3417
3464
|
|
|
3418
|
-
|
|
3465
|
+
This KMS key must have a policy that allows ``kms:CreateGrant`` , ``kms:DescribeKey`` , ``kms:Decrypt`` , and ``kms:GenerateDataKey*`` permissions to the IAM identity using the key to invoke Amazon Q in Connect. To use Amazon Q in Connect with chat, the key policy must also allow ``kms:Decrypt`` , ``kms:GenerateDataKey*`` , and ``kms:DescribeKey`` permissions to the ``connect.amazonaws.com`` service principal.
|
|
3466
|
+
|
|
3467
|
+
For more information about setting up a customer managed key for Amazon Q in Connect, see `Enable Amazon Q in Connect for your instance <https://docs.aws.amazon.com/connect/latest/adminguide/enable-q.html>`_ .
|
|
3419
3468
|
|
|
3420
3469
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html#cfn-wisdom-assistant-serversideencryptionconfiguration
|
|
3421
3470
|
'''
|
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -1461,12 +1461,6 @@ class CloudFormationStackArtifact(
|
|
|
1461
1461
|
'''The environment into which to deploy this artifact.'''
|
|
1462
1462
|
return typing.cast("Environment", jsii.get(self, "environment"))
|
|
1463
1463
|
|
|
1464
|
-
@builtins.property
|
|
1465
|
-
@jsii.member(jsii_name="notificationArns")
|
|
1466
|
-
def notification_arns(self) -> typing.List[builtins.str]:
|
|
1467
|
-
'''SNS Topics that will receive stack events.'''
|
|
1468
|
-
return typing.cast(typing.List[builtins.str], jsii.get(self, "notificationArns"))
|
|
1469
|
-
|
|
1470
1464
|
@builtins.property
|
|
1471
1465
|
@jsii.member(jsii_name="originalName")
|
|
1472
1466
|
def original_name(self) -> builtins.str:
|
|
@@ -1571,6 +1565,12 @@ class CloudFormationStackArtifact(
|
|
|
1571
1565
|
'''
|
|
1572
1566
|
return typing.cast(typing.Optional[_BootstrapRole_9b326056], jsii.get(self, "lookupRole"))
|
|
1573
1567
|
|
|
1568
|
+
@builtins.property
|
|
1569
|
+
@jsii.member(jsii_name="notificationArns")
|
|
1570
|
+
def notification_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1571
|
+
'''SNS Topics that will receive stack events.'''
|
|
1572
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "notificationArns"))
|
|
1573
|
+
|
|
1574
1574
|
@builtins.property
|
|
1575
1575
|
@jsii.member(jsii_name="requiresBootstrapStackVersion")
|
|
1576
1576
|
def requires_bootstrap_stack_version(self) -> typing.Optional[jsii.Number]:
|