aws-cdk-lib 2.180.0__py3-none-any.whl → 2.181.1__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 +80 -30
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.180.0.jsii.tgz → aws-cdk-lib@2.181.1.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_bedrock/__init__.py +759 -0
- aws_cdk/aws_chatbot/__init__.py +80 -53
- aws_cdk/aws_cloudformation/__init__.py +40 -8
- aws_cdk/aws_cognito/__init__.py +100 -4
- aws_cdk/aws_config/__init__.py +3 -3
- aws_cdk/aws_dynamodb/__init__.py +4 -4
- aws_cdk/aws_ecs/__init__.py +17 -11
- aws_cdk/aws_eks/__init__.py +14 -10
- aws_cdk/aws_iot/__init__.py +2 -2
- aws_cdk/aws_mediapackagev2/__init__.py +228 -0
- aws_cdk/aws_networkfirewall/__init__.py +3 -3
- aws_cdk/aws_opensearchserverless/__init__.py +12 -8
- aws_cdk/aws_organizations/__init__.py +3 -3
- aws_cdk/aws_pcaconnectorscep/__init__.py +1 -1
- aws_cdk/aws_rds/__init__.py +378 -42
- aws_cdk/aws_ssm/__init__.py +5 -5
- aws_cdk/aws_stepfunctions/__init__.py +44 -0
- aws_cdk/aws_transfer/__init__.py +9 -2
- aws_cdk/aws_wisdom/__init__.py +149 -4
- {aws_cdk_lib-2.180.0.dist-info → aws_cdk_lib-2.181.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.180.0.dist-info → aws_cdk_lib-2.181.1.dist-info}/RECORD +29 -29
- {aws_cdk_lib-2.180.0.dist-info → aws_cdk_lib-2.181.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.180.0.dist-info → aws_cdk_lib-2.181.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.180.0.dist-info → aws_cdk_lib-2.181.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.180.0.dist-info → aws_cdk_lib-2.181.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ssm/__init__.py
CHANGED
|
@@ -5265,7 +5265,7 @@ class CfnPatchBaseline(
|
|
|
5265
5265
|
:param approved_patches: A list of explicitly approved patches for the baseline. For information about accepted formats for lists of approved patches and rejected patches, see `Package name formats for approved and rejected patch lists <https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html>`_ in the *AWS Systems Manager User Guide* .
|
|
5266
5266
|
:param approved_patches_compliance_level: Defines the compliance level for approved patches. When an approved patch is reported as missing, this value describes the severity of the compliance violation. The default value is ``UNSPECIFIED`` . Default: - "UNSPECIFIED"
|
|
5267
5267
|
:param approved_patches_enable_non_security: Indicates whether the list of approved patches includes non-security updates that should be applied to the managed nodes. The default value is ``false`` . Applies to Linux managed nodes only. Default: - false
|
|
5268
|
-
:param default_baseline:
|
|
5268
|
+
:param default_baseline: Indicates whether this is the default baseline. AWS Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system. Default: - false
|
|
5269
5269
|
:param description: A description of the patch baseline.
|
|
5270
5270
|
:param global_filters: A set of global filters used to include patches in the baseline. .. epigraph:: The ``GlobalFilters`` parameter can be configured only by using the AWS CLI or an AWS SDK. It can't be configured from the Patch Manager console, and its value isn't displayed in the console.
|
|
5271
5271
|
:param operating_system: Defines the operating system the patch baseline applies to. The default value is ``WINDOWS`` . Default: - "WINDOWS"
|
|
@@ -5434,7 +5434,7 @@ class CfnPatchBaseline(
|
|
|
5434
5434
|
def default_baseline(
|
|
5435
5435
|
self,
|
|
5436
5436
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5437
|
-
'''
|
|
5437
|
+
'''Indicates whether this is the default baseline.'''
|
|
5438
5438
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "defaultBaseline"))
|
|
5439
5439
|
|
|
5440
5440
|
@default_baseline.setter
|
|
@@ -6081,7 +6081,7 @@ class CfnPatchBaselineProps:
|
|
|
6081
6081
|
:param approved_patches: A list of explicitly approved patches for the baseline. For information about accepted formats for lists of approved patches and rejected patches, see `Package name formats for approved and rejected patch lists <https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html>`_ in the *AWS Systems Manager User Guide* .
|
|
6082
6082
|
:param approved_patches_compliance_level: Defines the compliance level for approved patches. When an approved patch is reported as missing, this value describes the severity of the compliance violation. The default value is ``UNSPECIFIED`` . Default: - "UNSPECIFIED"
|
|
6083
6083
|
:param approved_patches_enable_non_security: Indicates whether the list of approved patches includes non-security updates that should be applied to the managed nodes. The default value is ``false`` . Applies to Linux managed nodes only. Default: - false
|
|
6084
|
-
:param default_baseline:
|
|
6084
|
+
:param default_baseline: Indicates whether this is the default baseline. AWS Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system. Default: - false
|
|
6085
6085
|
:param description: A description of the patch baseline.
|
|
6086
6086
|
:param global_filters: A set of global filters used to include patches in the baseline. .. epigraph:: The ``GlobalFilters`` parameter can be configured only by using the AWS CLI or an AWS SDK. It can't be configured from the Patch Manager console, and its value isn't displayed in the console.
|
|
6087
6087
|
:param operating_system: Defines the operating system the patch baseline applies to. The default value is ``WINDOWS`` . Default: - "WINDOWS"
|
|
@@ -6254,9 +6254,9 @@ class CfnPatchBaselineProps:
|
|
|
6254
6254
|
def default_baseline(
|
|
6255
6255
|
self,
|
|
6256
6256
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
6257
|
-
'''
|
|
6257
|
+
'''Indicates whether this is the default baseline.
|
|
6258
6258
|
|
|
6259
|
-
|
|
6259
|
+
AWS Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system.
|
|
6260
6260
|
|
|
6261
6261
|
:default: - false
|
|
6262
6262
|
|
|
@@ -5510,6 +5510,22 @@ class Credentials:
|
|
|
5510
5510
|
)
|
|
5511
5511
|
|
|
5512
5512
|
|
|
5513
|
+
@jsii.enum(jsii_type="aws-cdk-lib.aws_stepfunctions.CsvDelimiter")
|
|
5514
|
+
class CsvDelimiter(enum.Enum):
|
|
5515
|
+
'''Delimiter used in CSV file.'''
|
|
5516
|
+
|
|
5517
|
+
COMMA = "COMMA"
|
|
5518
|
+
'''Comma delimiter.'''
|
|
5519
|
+
PIPE = "PIPE"
|
|
5520
|
+
'''Pipe delimiter.'''
|
|
5521
|
+
SEMICOLON = "SEMICOLON"
|
|
5522
|
+
'''Semicolon delimiter.'''
|
|
5523
|
+
SPACE = "SPACE"
|
|
5524
|
+
'''Space delimiter.'''
|
|
5525
|
+
TAB = "TAB"
|
|
5526
|
+
'''Tab delimiter.'''
|
|
5527
|
+
|
|
5528
|
+
|
|
5513
5529
|
@jsii.enum(jsii_type="aws-cdk-lib.aws_stepfunctions.CsvHeaderLocation")
|
|
5514
5530
|
class CsvHeaderLocation(enum.Enum):
|
|
5515
5531
|
'''CSV header location options.'''
|
|
@@ -9676,6 +9692,7 @@ class S3CsvItemReader(
|
|
|
9676
9692
|
# the properties below are optional
|
|
9677
9693
|
bucket=bucket,
|
|
9678
9694
|
bucket_name_path="bucketNamePath",
|
|
9695
|
+
csv_delimiter=stepfunctions.CsvDelimiter.COMMA,
|
|
9679
9696
|
csv_headers=csv_headers,
|
|
9680
9697
|
max_items=123
|
|
9681
9698
|
)
|
|
@@ -9684,6 +9701,7 @@ class S3CsvItemReader(
|
|
|
9684
9701
|
def __init__(
|
|
9685
9702
|
self,
|
|
9686
9703
|
*,
|
|
9704
|
+
csv_delimiter: typing.Optional[CsvDelimiter] = None,
|
|
9687
9705
|
csv_headers: typing.Optional[CsvHeaders] = None,
|
|
9688
9706
|
key: builtins.str,
|
|
9689
9707
|
bucket: typing.Optional[_IBucket_42e086fd] = None,
|
|
@@ -9691,6 +9709,7 @@ class S3CsvItemReader(
|
|
|
9691
9709
|
max_items: typing.Optional[jsii.Number] = None,
|
|
9692
9710
|
) -> None:
|
|
9693
9711
|
'''
|
|
9712
|
+
:param csv_delimiter: Delimiter used in a CSV file. Default: undefined - Default setting is COMMA.
|
|
9694
9713
|
:param csv_headers: CSV file header configuration. Default: - CsvHeaders with CsvHeadersLocation.FIRST_ROW
|
|
9695
9714
|
:param key: Key of file stored in S3 bucket containing an array to iterate over.
|
|
9696
9715
|
:param bucket: S3 Bucket containing objects to iterate over or a file with a list to iterate over. Default: - S3 bucket will be determined from
|
|
@@ -9698,6 +9717,7 @@ class S3CsvItemReader(
|
|
|
9698
9717
|
:param max_items: Limits the number of items passed to the Distributed Map state. Default: - Distributed Map state will iterate over all items provided by the ItemReader
|
|
9699
9718
|
'''
|
|
9700
9719
|
props = S3CsvItemReaderProps(
|
|
9720
|
+
csv_delimiter=csv_delimiter,
|
|
9701
9721
|
csv_headers=csv_headers,
|
|
9702
9722
|
key=key,
|
|
9703
9723
|
bucket=bucket,
|
|
@@ -9769,6 +9789,12 @@ class S3CsvItemReader(
|
|
|
9769
9789
|
'''S3 bucket name containing objects to iterate over or a file with a list to iterate over, as JsonPath.'''
|
|
9770
9790
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "bucketNamePath"))
|
|
9771
9791
|
|
|
9792
|
+
@builtins.property
|
|
9793
|
+
@jsii.member(jsii_name="csvDelimiter")
|
|
9794
|
+
def csv_delimiter(self) -> typing.Optional[CsvDelimiter]:
|
|
9795
|
+
'''Delimiter used in CSV file.'''
|
|
9796
|
+
return typing.cast(typing.Optional[CsvDelimiter], jsii.get(self, "csvDelimiter"))
|
|
9797
|
+
|
|
9772
9798
|
@builtins.property
|
|
9773
9799
|
@jsii.member(jsii_name="maxItems")
|
|
9774
9800
|
def max_items(self) -> typing.Optional[jsii.Number]:
|
|
@@ -23058,6 +23084,7 @@ class PassProps(
|
|
|
23058
23084
|
"bucket_name_path": "bucketNamePath",
|
|
23059
23085
|
"max_items": "maxItems",
|
|
23060
23086
|
"key": "key",
|
|
23087
|
+
"csv_delimiter": "csvDelimiter",
|
|
23061
23088
|
"csv_headers": "csvHeaders",
|
|
23062
23089
|
},
|
|
23063
23090
|
)
|
|
@@ -23069,6 +23096,7 @@ class S3CsvItemReaderProps(S3FileItemReaderProps):
|
|
|
23069
23096
|
bucket_name_path: typing.Optional[builtins.str] = None,
|
|
23070
23097
|
max_items: typing.Optional[jsii.Number] = None,
|
|
23071
23098
|
key: builtins.str,
|
|
23099
|
+
csv_delimiter: typing.Optional[CsvDelimiter] = None,
|
|
23072
23100
|
csv_headers: typing.Optional[CsvHeaders] = None,
|
|
23073
23101
|
) -> None:
|
|
23074
23102
|
'''Properties for configuring an Item Reader that iterates over items in a CSV file in S3.
|
|
@@ -23077,6 +23105,7 @@ class S3CsvItemReaderProps(S3FileItemReaderProps):
|
|
|
23077
23105
|
:param bucket_name_path: S3 bucket name containing objects to iterate over or a file with a list to iterate over, as JsonPath. Default: - S3 bucket will be determined from
|
|
23078
23106
|
:param max_items: Limits the number of items passed to the Distributed Map state. Default: - Distributed Map state will iterate over all items provided by the ItemReader
|
|
23079
23107
|
:param key: Key of file stored in S3 bucket containing an array to iterate over.
|
|
23108
|
+
:param csv_delimiter: Delimiter used in a CSV file. Default: undefined - Default setting is COMMA.
|
|
23080
23109
|
:param csv_headers: CSV file header configuration. Default: - CsvHeaders with CsvHeadersLocation.FIRST_ROW
|
|
23081
23110
|
|
|
23082
23111
|
:exampleMetadata: fixture=_generated
|
|
@@ -23097,6 +23126,7 @@ class S3CsvItemReaderProps(S3FileItemReaderProps):
|
|
|
23097
23126
|
# the properties below are optional
|
|
23098
23127
|
bucket=bucket,
|
|
23099
23128
|
bucket_name_path="bucketNamePath",
|
|
23129
|
+
csv_delimiter=stepfunctions.CsvDelimiter.COMMA,
|
|
23100
23130
|
csv_headers=csv_headers,
|
|
23101
23131
|
max_items=123
|
|
23102
23132
|
)
|
|
@@ -23107,6 +23137,7 @@ class S3CsvItemReaderProps(S3FileItemReaderProps):
|
|
|
23107
23137
|
check_type(argname="argument bucket_name_path", value=bucket_name_path, expected_type=type_hints["bucket_name_path"])
|
|
23108
23138
|
check_type(argname="argument max_items", value=max_items, expected_type=type_hints["max_items"])
|
|
23109
23139
|
check_type(argname="argument key", value=key, expected_type=type_hints["key"])
|
|
23140
|
+
check_type(argname="argument csv_delimiter", value=csv_delimiter, expected_type=type_hints["csv_delimiter"])
|
|
23110
23141
|
check_type(argname="argument csv_headers", value=csv_headers, expected_type=type_hints["csv_headers"])
|
|
23111
23142
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
23112
23143
|
"key": key,
|
|
@@ -23117,6 +23148,8 @@ class S3CsvItemReaderProps(S3FileItemReaderProps):
|
|
|
23117
23148
|
self._values["bucket_name_path"] = bucket_name_path
|
|
23118
23149
|
if max_items is not None:
|
|
23119
23150
|
self._values["max_items"] = max_items
|
|
23151
|
+
if csv_delimiter is not None:
|
|
23152
|
+
self._values["csv_delimiter"] = csv_delimiter
|
|
23120
23153
|
if csv_headers is not None:
|
|
23121
23154
|
self._values["csv_headers"] = csv_headers
|
|
23122
23155
|
|
|
@@ -23158,6 +23191,15 @@ class S3CsvItemReaderProps(S3FileItemReaderProps):
|
|
|
23158
23191
|
assert result is not None, "Required property 'key' is missing"
|
|
23159
23192
|
return typing.cast(builtins.str, result)
|
|
23160
23193
|
|
|
23194
|
+
@builtins.property
|
|
23195
|
+
def csv_delimiter(self) -> typing.Optional[CsvDelimiter]:
|
|
23196
|
+
'''Delimiter used in a CSV file.
|
|
23197
|
+
|
|
23198
|
+
:default: undefined - Default setting is COMMA.
|
|
23199
|
+
'''
|
|
23200
|
+
result = self._values.get("csv_delimiter")
|
|
23201
|
+
return typing.cast(typing.Optional[CsvDelimiter], result)
|
|
23202
|
+
|
|
23161
23203
|
@builtins.property
|
|
23162
23204
|
def csv_headers(self) -> typing.Optional[CsvHeaders]:
|
|
23163
23205
|
'''CSV file header configuration.
|
|
@@ -24718,6 +24760,7 @@ __all__ = [
|
|
|
24718
24760
|
"ChoiceTransitionOptions",
|
|
24719
24761
|
"Condition",
|
|
24720
24762
|
"Credentials",
|
|
24763
|
+
"CsvDelimiter",
|
|
24721
24764
|
"CsvHeaderLocation",
|
|
24722
24765
|
"CsvHeaders",
|
|
24723
24766
|
"CustomState",
|
|
@@ -27655,6 +27698,7 @@ def _typecheckingstub__fd148cd8282abe643b20452cf3c099e0d66560a90ddb7ec54f8374085
|
|
|
27655
27698
|
bucket_name_path: typing.Optional[builtins.str] = None,
|
|
27656
27699
|
max_items: typing.Optional[jsii.Number] = None,
|
|
27657
27700
|
key: builtins.str,
|
|
27701
|
+
csv_delimiter: typing.Optional[CsvDelimiter] = None,
|
|
27658
27702
|
csv_headers: typing.Optional[CsvHeaders] = None,
|
|
27659
27703
|
) -> None:
|
|
27660
27704
|
"""Type checking stubs"""
|
aws_cdk/aws_transfer/__init__.py
CHANGED
|
@@ -2292,7 +2292,9 @@ class CfnServer(
|
|
|
2292
2292
|
def attr_as2_service_managed_egress_ip_addresses(self) -> typing.List[builtins.str]:
|
|
2293
2293
|
'''The list of egress IP addresses of this server.
|
|
2294
2294
|
|
|
2295
|
-
These IP addresses are only relevant for servers that use the AS2 protocol. They are used for sending asynchronous MDNs.
|
|
2295
|
+
These IP addresses are only relevant for servers that use the AS2 protocol. They are used for sending asynchronous MDNs.
|
|
2296
|
+
|
|
2297
|
+
These IP addresses are assigned automatically when you create an AS2 server. Additionally, if you update an existing server and add the AS2 protocol, static IP addresses are assigned as well.
|
|
2296
2298
|
|
|
2297
2299
|
:cloudformationAttribute: As2ServiceManagedEgressIpAddresses
|
|
2298
2300
|
'''
|
|
@@ -2310,7 +2312,12 @@ class CfnServer(
|
|
|
2310
2312
|
@builtins.property
|
|
2311
2313
|
@jsii.member(jsii_name="attrState")
|
|
2312
2314
|
def attr_state(self) -> builtins.str:
|
|
2313
|
-
'''
|
|
2315
|
+
'''The condition of the server that was described.
|
|
2316
|
+
|
|
2317
|
+
A value of ``ONLINE`` indicates that the server can accept jobs and transfer files. A ``State`` value of ``OFFLINE`` means that the server cannot perform file transfer operations.
|
|
2318
|
+
|
|
2319
|
+
The states of ``STARTING`` and ``STOPPING`` indicate that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of ``START_FAILED`` or ``STOP_FAILED`` can indicate an error condition.
|
|
2320
|
+
|
|
2314
2321
|
:cloudformationAttribute: State
|
|
2315
2322
|
'''
|
|
2316
2323
|
return typing.cast(builtins.str, jsii.get(self, "attrState"))
|
aws_cdk/aws_wisdom/__init__.py
CHANGED
|
@@ -133,6 +133,7 @@ class CfnAIAgent(
|
|
|
133
133
|
association_type="associationType"
|
|
134
134
|
)],
|
|
135
135
|
intent_labeling_generation_ai_prompt_id="intentLabelingGenerationAiPromptId",
|
|
136
|
+
locale="locale",
|
|
136
137
|
query_reformulation_ai_prompt_id="queryReformulationAiPromptId"
|
|
137
138
|
),
|
|
138
139
|
manual_search_ai_agent_configuration=wisdom.CfnAIAgent.ManualSearchAIAgentConfigurationProperty(
|
|
@@ -175,7 +176,8 @@ class CfnAIAgent(
|
|
|
175
176
|
),
|
|
176
177
|
association_id="associationId",
|
|
177
178
|
association_type="associationType"
|
|
178
|
-
)]
|
|
179
|
+
)],
|
|
180
|
+
locale="locale"
|
|
179
181
|
),
|
|
180
182
|
self_service_ai_agent_configuration=wisdom.CfnAIAgent.SelfServiceAIAgentConfigurationProperty(
|
|
181
183
|
association_configurations=[wisdom.CfnAIAgent.AssociationConfigurationProperty(
|
|
@@ -219,6 +221,10 @@ class CfnAIAgent(
|
|
|
219
221
|
self_service_ai_guardrail_id="selfServiceAiGuardrailId",
|
|
220
222
|
self_service_answer_generation_ai_prompt_id="selfServiceAnswerGenerationAiPromptId",
|
|
221
223
|
self_service_pre_processing_ai_prompt_id="selfServicePreProcessingAiPromptId"
|
|
224
|
+
),
|
|
225
|
+
session_summarization_ai_agent_configuration=wisdom.CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty(
|
|
226
|
+
locale="locale",
|
|
227
|
+
session_summarization_ai_prompt_id="sessionSummarizationAiPromptId"
|
|
222
228
|
)
|
|
223
229
|
),
|
|
224
230
|
type="type",
|
|
@@ -438,6 +444,7 @@ class CfnAIAgent(
|
|
|
438
444
|
"answer_recommendation_ai_agent_configuration": "answerRecommendationAiAgentConfiguration",
|
|
439
445
|
"manual_search_ai_agent_configuration": "manualSearchAiAgentConfiguration",
|
|
440
446
|
"self_service_ai_agent_configuration": "selfServiceAiAgentConfiguration",
|
|
447
|
+
"session_summarization_ai_agent_configuration": "sessionSummarizationAiAgentConfiguration",
|
|
441
448
|
},
|
|
442
449
|
)
|
|
443
450
|
class AIAgentConfigurationProperty:
|
|
@@ -447,12 +454,14 @@ class CfnAIAgent(
|
|
|
447
454
|
answer_recommendation_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.AnswerRecommendationAIAgentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
448
455
|
manual_search_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.ManualSearchAIAgentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
449
456
|
self_service_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.SelfServiceAIAgentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
457
|
+
session_summarization_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
450
458
|
) -> None:
|
|
451
459
|
'''A typed union that specifies the configuration based on the type of AI Agent.
|
|
452
460
|
|
|
453
461
|
:param answer_recommendation_ai_agent_configuration: The configuration for AI Agents of type ``ANSWER_RECOMMENDATION`` .
|
|
454
462
|
:param manual_search_ai_agent_configuration: The configuration for AI Agents of type ``MANUAL_SEARCH`` .
|
|
455
463
|
:param self_service_ai_agent_configuration: The self-service AI agent configuration.
|
|
464
|
+
:param session_summarization_ai_agent_configuration:
|
|
456
465
|
|
|
457
466
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagentconfiguration.html
|
|
458
467
|
:exampleMetadata: fixture=_generated
|
|
@@ -506,6 +515,7 @@ class CfnAIAgent(
|
|
|
506
515
|
association_type="associationType"
|
|
507
516
|
)],
|
|
508
517
|
intent_labeling_generation_ai_prompt_id="intentLabelingGenerationAiPromptId",
|
|
518
|
+
locale="locale",
|
|
509
519
|
query_reformulation_ai_prompt_id="queryReformulationAiPromptId"
|
|
510
520
|
),
|
|
511
521
|
manual_search_ai_agent_configuration=wisdom.CfnAIAgent.ManualSearchAIAgentConfigurationProperty(
|
|
@@ -548,7 +558,8 @@ class CfnAIAgent(
|
|
|
548
558
|
),
|
|
549
559
|
association_id="associationId",
|
|
550
560
|
association_type="associationType"
|
|
551
|
-
)]
|
|
561
|
+
)],
|
|
562
|
+
locale="locale"
|
|
552
563
|
),
|
|
553
564
|
self_service_ai_agent_configuration=wisdom.CfnAIAgent.SelfServiceAIAgentConfigurationProperty(
|
|
554
565
|
association_configurations=[wisdom.CfnAIAgent.AssociationConfigurationProperty(
|
|
@@ -592,6 +603,10 @@ class CfnAIAgent(
|
|
|
592
603
|
self_service_ai_guardrail_id="selfServiceAiGuardrailId",
|
|
593
604
|
self_service_answer_generation_ai_prompt_id="selfServiceAnswerGenerationAiPromptId",
|
|
594
605
|
self_service_pre_processing_ai_prompt_id="selfServicePreProcessingAiPromptId"
|
|
606
|
+
),
|
|
607
|
+
session_summarization_ai_agent_configuration=wisdom.CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty(
|
|
608
|
+
locale="locale",
|
|
609
|
+
session_summarization_ai_prompt_id="sessionSummarizationAiPromptId"
|
|
595
610
|
)
|
|
596
611
|
)
|
|
597
612
|
'''
|
|
@@ -600,6 +615,7 @@ class CfnAIAgent(
|
|
|
600
615
|
check_type(argname="argument answer_recommendation_ai_agent_configuration", value=answer_recommendation_ai_agent_configuration, expected_type=type_hints["answer_recommendation_ai_agent_configuration"])
|
|
601
616
|
check_type(argname="argument manual_search_ai_agent_configuration", value=manual_search_ai_agent_configuration, expected_type=type_hints["manual_search_ai_agent_configuration"])
|
|
602
617
|
check_type(argname="argument self_service_ai_agent_configuration", value=self_service_ai_agent_configuration, expected_type=type_hints["self_service_ai_agent_configuration"])
|
|
618
|
+
check_type(argname="argument session_summarization_ai_agent_configuration", value=session_summarization_ai_agent_configuration, expected_type=type_hints["session_summarization_ai_agent_configuration"])
|
|
603
619
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
604
620
|
if answer_recommendation_ai_agent_configuration is not None:
|
|
605
621
|
self._values["answer_recommendation_ai_agent_configuration"] = answer_recommendation_ai_agent_configuration
|
|
@@ -607,6 +623,8 @@ class CfnAIAgent(
|
|
|
607
623
|
self._values["manual_search_ai_agent_configuration"] = manual_search_ai_agent_configuration
|
|
608
624
|
if self_service_ai_agent_configuration is not None:
|
|
609
625
|
self._values["self_service_ai_agent_configuration"] = self_service_ai_agent_configuration
|
|
626
|
+
if session_summarization_ai_agent_configuration is not None:
|
|
627
|
+
self._values["session_summarization_ai_agent_configuration"] = session_summarization_ai_agent_configuration
|
|
610
628
|
|
|
611
629
|
@builtins.property
|
|
612
630
|
def answer_recommendation_ai_agent_configuration(
|
|
@@ -641,6 +659,16 @@ class CfnAIAgent(
|
|
|
641
659
|
result = self._values.get("self_service_ai_agent_configuration")
|
|
642
660
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.SelfServiceAIAgentConfigurationProperty"]], result)
|
|
643
661
|
|
|
662
|
+
@builtins.property
|
|
663
|
+
def session_summarization_ai_agent_configuration(
|
|
664
|
+
self,
|
|
665
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty"]]:
|
|
666
|
+
'''
|
|
667
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagentconfiguration.html#cfn-wisdom-aiagent-aiagentconfiguration-sessionsummarizationaiagentconfiguration
|
|
668
|
+
'''
|
|
669
|
+
result = self._values.get("session_summarization_ai_agent_configuration")
|
|
670
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty"]], result)
|
|
671
|
+
|
|
644
672
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
645
673
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
646
674
|
|
|
@@ -660,6 +688,7 @@ class CfnAIAgent(
|
|
|
660
688
|
"answer_generation_ai_prompt_id": "answerGenerationAiPromptId",
|
|
661
689
|
"association_configurations": "associationConfigurations",
|
|
662
690
|
"intent_labeling_generation_ai_prompt_id": "intentLabelingGenerationAiPromptId",
|
|
691
|
+
"locale": "locale",
|
|
663
692
|
"query_reformulation_ai_prompt_id": "queryReformulationAiPromptId",
|
|
664
693
|
},
|
|
665
694
|
)
|
|
@@ -671,6 +700,7 @@ class CfnAIAgent(
|
|
|
671
700
|
answer_generation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
672
701
|
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,
|
|
673
702
|
intent_labeling_generation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
703
|
+
locale: typing.Optional[builtins.str] = None,
|
|
674
704
|
query_reformulation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
675
705
|
) -> None:
|
|
676
706
|
'''The configuration for AI Agents of type ``ANSWER_RECOMMENDATION`` .
|
|
@@ -679,6 +709,7 @@ class CfnAIAgent(
|
|
|
679
709
|
:param answer_generation_ai_prompt_id: The AI Prompt identifier for the Answer Generation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
680
710
|
:param association_configurations: The association configurations for overriding behavior on this AI Agent.
|
|
681
711
|
:param intent_labeling_generation_ai_prompt_id: The AI Prompt identifier for the Intent Labeling prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
712
|
+
:param locale:
|
|
682
713
|
:param query_reformulation_ai_prompt_id: The AI Prompt identifier for the Query Reformulation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
683
714
|
|
|
684
715
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html
|
|
@@ -732,6 +763,7 @@ class CfnAIAgent(
|
|
|
732
763
|
association_type="associationType"
|
|
733
764
|
)],
|
|
734
765
|
intent_labeling_generation_ai_prompt_id="intentLabelingGenerationAiPromptId",
|
|
766
|
+
locale="locale",
|
|
735
767
|
query_reformulation_ai_prompt_id="queryReformulationAiPromptId"
|
|
736
768
|
)
|
|
737
769
|
'''
|
|
@@ -741,6 +773,7 @@ class CfnAIAgent(
|
|
|
741
773
|
check_type(argname="argument answer_generation_ai_prompt_id", value=answer_generation_ai_prompt_id, expected_type=type_hints["answer_generation_ai_prompt_id"])
|
|
742
774
|
check_type(argname="argument association_configurations", value=association_configurations, expected_type=type_hints["association_configurations"])
|
|
743
775
|
check_type(argname="argument intent_labeling_generation_ai_prompt_id", value=intent_labeling_generation_ai_prompt_id, expected_type=type_hints["intent_labeling_generation_ai_prompt_id"])
|
|
776
|
+
check_type(argname="argument locale", value=locale, expected_type=type_hints["locale"])
|
|
744
777
|
check_type(argname="argument query_reformulation_ai_prompt_id", value=query_reformulation_ai_prompt_id, expected_type=type_hints["query_reformulation_ai_prompt_id"])
|
|
745
778
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
746
779
|
if answer_generation_ai_guardrail_id is not None:
|
|
@@ -751,6 +784,8 @@ class CfnAIAgent(
|
|
|
751
784
|
self._values["association_configurations"] = association_configurations
|
|
752
785
|
if intent_labeling_generation_ai_prompt_id is not None:
|
|
753
786
|
self._values["intent_labeling_generation_ai_prompt_id"] = intent_labeling_generation_ai_prompt_id
|
|
787
|
+
if locale is not None:
|
|
788
|
+
self._values["locale"] = locale
|
|
754
789
|
if query_reformulation_ai_prompt_id is not None:
|
|
755
790
|
self._values["query_reformulation_ai_prompt_id"] = query_reformulation_ai_prompt_id
|
|
756
791
|
|
|
@@ -794,6 +829,14 @@ class CfnAIAgent(
|
|
|
794
829
|
result = self._values.get("intent_labeling_generation_ai_prompt_id")
|
|
795
830
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
796
831
|
|
|
832
|
+
@builtins.property
|
|
833
|
+
def locale(self) -> typing.Optional[builtins.str]:
|
|
834
|
+
'''
|
|
835
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html#cfn-wisdom-aiagent-answerrecommendationaiagentconfiguration-locale
|
|
836
|
+
'''
|
|
837
|
+
result = self._values.get("locale")
|
|
838
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
839
|
+
|
|
797
840
|
@builtins.property
|
|
798
841
|
def query_reformulation_ai_prompt_id(self) -> typing.Optional[builtins.str]:
|
|
799
842
|
'''The AI Prompt identifier for the Query Reformulation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
@@ -1153,6 +1196,7 @@ class CfnAIAgent(
|
|
|
1153
1196
|
"answer_generation_ai_guardrail_id": "answerGenerationAiGuardrailId",
|
|
1154
1197
|
"answer_generation_ai_prompt_id": "answerGenerationAiPromptId",
|
|
1155
1198
|
"association_configurations": "associationConfigurations",
|
|
1199
|
+
"locale": "locale",
|
|
1156
1200
|
},
|
|
1157
1201
|
)
|
|
1158
1202
|
class ManualSearchAIAgentConfigurationProperty:
|
|
@@ -1162,12 +1206,14 @@ class CfnAIAgent(
|
|
|
1162
1206
|
answer_generation_ai_guardrail_id: typing.Optional[builtins.str] = None,
|
|
1163
1207
|
answer_generation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
1164
1208
|
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,
|
|
1209
|
+
locale: typing.Optional[builtins.str] = None,
|
|
1165
1210
|
) -> None:
|
|
1166
1211
|
'''The configuration for AI Agents of type ``MANUAL_SEARCH`` .
|
|
1167
1212
|
|
|
1168
1213
|
:param answer_generation_ai_guardrail_id: The ID of the answer generation AI guardrail.
|
|
1169
1214
|
:param answer_generation_ai_prompt_id: The AI Prompt identifier for the Answer Generation prompt used by the ``ANSWER_RECOMMENDATION`` AI Agent.
|
|
1170
1215
|
:param association_configurations: The association configurations for overriding behavior on this AI Agent.
|
|
1216
|
+
:param locale:
|
|
1171
1217
|
|
|
1172
1218
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-manualsearchaiagentconfiguration.html
|
|
1173
1219
|
:exampleMetadata: fixture=_generated
|
|
@@ -1218,7 +1264,8 @@ class CfnAIAgent(
|
|
|
1218
1264
|
),
|
|
1219
1265
|
association_id="associationId",
|
|
1220
1266
|
association_type="associationType"
|
|
1221
|
-
)]
|
|
1267
|
+
)],
|
|
1268
|
+
locale="locale"
|
|
1222
1269
|
)
|
|
1223
1270
|
'''
|
|
1224
1271
|
if __debug__:
|
|
@@ -1226,6 +1273,7 @@ class CfnAIAgent(
|
|
|
1226
1273
|
check_type(argname="argument answer_generation_ai_guardrail_id", value=answer_generation_ai_guardrail_id, expected_type=type_hints["answer_generation_ai_guardrail_id"])
|
|
1227
1274
|
check_type(argname="argument answer_generation_ai_prompt_id", value=answer_generation_ai_prompt_id, expected_type=type_hints["answer_generation_ai_prompt_id"])
|
|
1228
1275
|
check_type(argname="argument association_configurations", value=association_configurations, expected_type=type_hints["association_configurations"])
|
|
1276
|
+
check_type(argname="argument locale", value=locale, expected_type=type_hints["locale"])
|
|
1229
1277
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1230
1278
|
if answer_generation_ai_guardrail_id is not None:
|
|
1231
1279
|
self._values["answer_generation_ai_guardrail_id"] = answer_generation_ai_guardrail_id
|
|
@@ -1233,6 +1281,8 @@ class CfnAIAgent(
|
|
|
1233
1281
|
self._values["answer_generation_ai_prompt_id"] = answer_generation_ai_prompt_id
|
|
1234
1282
|
if association_configurations is not None:
|
|
1235
1283
|
self._values["association_configurations"] = association_configurations
|
|
1284
|
+
if locale is not None:
|
|
1285
|
+
self._values["locale"] = locale
|
|
1236
1286
|
|
|
1237
1287
|
@builtins.property
|
|
1238
1288
|
def answer_generation_ai_guardrail_id(self) -> typing.Optional[builtins.str]:
|
|
@@ -1263,6 +1313,14 @@ class CfnAIAgent(
|
|
|
1263
1313
|
result = self._values.get("association_configurations")
|
|
1264
1314
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAIAgent.AssociationConfigurationProperty"]]]], result)
|
|
1265
1315
|
|
|
1316
|
+
@builtins.property
|
|
1317
|
+
def locale(self) -> typing.Optional[builtins.str]:
|
|
1318
|
+
'''
|
|
1319
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-manualsearchaiagentconfiguration.html#cfn-wisdom-aiagent-manualsearchaiagentconfiguration-locale
|
|
1320
|
+
'''
|
|
1321
|
+
result = self._values.get("locale")
|
|
1322
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1323
|
+
|
|
1266
1324
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1267
1325
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1268
1326
|
|
|
@@ -1507,6 +1565,76 @@ class CfnAIAgent(
|
|
|
1507
1565
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1508
1566
|
)
|
|
1509
1567
|
|
|
1568
|
+
@jsii.data_type(
|
|
1569
|
+
jsii_type="aws-cdk-lib.aws_wisdom.CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty",
|
|
1570
|
+
jsii_struct_bases=[],
|
|
1571
|
+
name_mapping={
|
|
1572
|
+
"locale": "locale",
|
|
1573
|
+
"session_summarization_ai_prompt_id": "sessionSummarizationAiPromptId",
|
|
1574
|
+
},
|
|
1575
|
+
)
|
|
1576
|
+
class SessionSummarizationAIAgentConfigurationProperty:
|
|
1577
|
+
def __init__(
|
|
1578
|
+
self,
|
|
1579
|
+
*,
|
|
1580
|
+
locale: typing.Optional[builtins.str] = None,
|
|
1581
|
+
session_summarization_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
1582
|
+
) -> None:
|
|
1583
|
+
'''
|
|
1584
|
+
:param locale:
|
|
1585
|
+
:param session_summarization_ai_prompt_id:
|
|
1586
|
+
|
|
1587
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-sessionsummarizationaiagentconfiguration.html
|
|
1588
|
+
:exampleMetadata: fixture=_generated
|
|
1589
|
+
|
|
1590
|
+
Example::
|
|
1591
|
+
|
|
1592
|
+
# The code below shows an example of how to instantiate this type.
|
|
1593
|
+
# The values are placeholders you should change.
|
|
1594
|
+
from aws_cdk import aws_wisdom as wisdom
|
|
1595
|
+
|
|
1596
|
+
session_summarization_aIAgent_configuration_property = wisdom.CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty(
|
|
1597
|
+
locale="locale",
|
|
1598
|
+
session_summarization_ai_prompt_id="sessionSummarizationAiPromptId"
|
|
1599
|
+
)
|
|
1600
|
+
'''
|
|
1601
|
+
if __debug__:
|
|
1602
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c7c77d42678888135842a224d18f4ff7fcbf96defa5fe5d052ddf6ae08737f6f)
|
|
1603
|
+
check_type(argname="argument locale", value=locale, expected_type=type_hints["locale"])
|
|
1604
|
+
check_type(argname="argument session_summarization_ai_prompt_id", value=session_summarization_ai_prompt_id, expected_type=type_hints["session_summarization_ai_prompt_id"])
|
|
1605
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1606
|
+
if locale is not None:
|
|
1607
|
+
self._values["locale"] = locale
|
|
1608
|
+
if session_summarization_ai_prompt_id is not None:
|
|
1609
|
+
self._values["session_summarization_ai_prompt_id"] = session_summarization_ai_prompt_id
|
|
1610
|
+
|
|
1611
|
+
@builtins.property
|
|
1612
|
+
def locale(self) -> typing.Optional[builtins.str]:
|
|
1613
|
+
'''
|
|
1614
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-sessionsummarizationaiagentconfiguration.html#cfn-wisdom-aiagent-sessionsummarizationaiagentconfiguration-locale
|
|
1615
|
+
'''
|
|
1616
|
+
result = self._values.get("locale")
|
|
1617
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1618
|
+
|
|
1619
|
+
@builtins.property
|
|
1620
|
+
def session_summarization_ai_prompt_id(self) -> typing.Optional[builtins.str]:
|
|
1621
|
+
'''
|
|
1622
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-sessionsummarizationaiagentconfiguration.html#cfn-wisdom-aiagent-sessionsummarizationaiagentconfiguration-sessionsummarizationaipromptid
|
|
1623
|
+
'''
|
|
1624
|
+
result = self._values.get("session_summarization_ai_prompt_id")
|
|
1625
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1626
|
+
|
|
1627
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1628
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1629
|
+
|
|
1630
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1631
|
+
return not (rhs == self)
|
|
1632
|
+
|
|
1633
|
+
def __repr__(self) -> str:
|
|
1634
|
+
return "SessionSummarizationAIAgentConfigurationProperty(%s)" % ", ".join(
|
|
1635
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1636
|
+
)
|
|
1637
|
+
|
|
1510
1638
|
@jsii.data_type(
|
|
1511
1639
|
jsii_type="aws-cdk-lib.aws_wisdom.CfnAIAgent.TagConditionProperty",
|
|
1512
1640
|
jsii_struct_bases=[],
|
|
@@ -1785,6 +1913,7 @@ class CfnAIAgentProps:
|
|
|
1785
1913
|
association_type="associationType"
|
|
1786
1914
|
)],
|
|
1787
1915
|
intent_labeling_generation_ai_prompt_id="intentLabelingGenerationAiPromptId",
|
|
1916
|
+
locale="locale",
|
|
1788
1917
|
query_reformulation_ai_prompt_id="queryReformulationAiPromptId"
|
|
1789
1918
|
),
|
|
1790
1919
|
manual_search_ai_agent_configuration=wisdom.CfnAIAgent.ManualSearchAIAgentConfigurationProperty(
|
|
@@ -1827,7 +1956,8 @@ class CfnAIAgentProps:
|
|
|
1827
1956
|
),
|
|
1828
1957
|
association_id="associationId",
|
|
1829
1958
|
association_type="associationType"
|
|
1830
|
-
)]
|
|
1959
|
+
)],
|
|
1960
|
+
locale="locale"
|
|
1831
1961
|
),
|
|
1832
1962
|
self_service_ai_agent_configuration=wisdom.CfnAIAgent.SelfServiceAIAgentConfigurationProperty(
|
|
1833
1963
|
association_configurations=[wisdom.CfnAIAgent.AssociationConfigurationProperty(
|
|
@@ -1871,6 +2001,10 @@ class CfnAIAgentProps:
|
|
|
1871
2001
|
self_service_ai_guardrail_id="selfServiceAiGuardrailId",
|
|
1872
2002
|
self_service_answer_generation_ai_prompt_id="selfServiceAnswerGenerationAiPromptId",
|
|
1873
2003
|
self_service_pre_processing_ai_prompt_id="selfServicePreProcessingAiPromptId"
|
|
2004
|
+
),
|
|
2005
|
+
session_summarization_ai_agent_configuration=wisdom.CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty(
|
|
2006
|
+
locale="locale",
|
|
2007
|
+
session_summarization_ai_prompt_id="sessionSummarizationAiPromptId"
|
|
1874
2008
|
)
|
|
1875
2009
|
),
|
|
1876
2010
|
type="type",
|
|
@@ -10646,6 +10780,7 @@ def _typecheckingstub__8cb84ad0dc27ffdae65e4e739c98ea6a4e7c36340f15c21ae83a2225f
|
|
|
10646
10780
|
answer_recommendation_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAIAgent.AnswerRecommendationAIAgentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10647
10781
|
manual_search_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAIAgent.ManualSearchAIAgentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10648
10782
|
self_service_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAIAgent.SelfServiceAIAgentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10783
|
+
session_summarization_ai_agent_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAIAgent.SessionSummarizationAIAgentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10649
10784
|
) -> None:
|
|
10650
10785
|
"""Type checking stubs"""
|
|
10651
10786
|
pass
|
|
@@ -10656,6 +10791,7 @@ def _typecheckingstub__6847cf788b7def362d576a512b579b2a08c25837003298b7c57254d1d
|
|
|
10656
10791
|
answer_generation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
10657
10792
|
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,
|
|
10658
10793
|
intent_labeling_generation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
10794
|
+
locale: typing.Optional[builtins.str] = None,
|
|
10659
10795
|
query_reformulation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
10660
10796
|
) -> None:
|
|
10661
10797
|
"""Type checking stubs"""
|
|
@@ -10691,6 +10827,7 @@ def _typecheckingstub__3346eba3a05ad4b31350bf2c54edbb6063a18cfea8a25ebbab80c4024
|
|
|
10691
10827
|
answer_generation_ai_guardrail_id: typing.Optional[builtins.str] = None,
|
|
10692
10828
|
answer_generation_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
10693
10829
|
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,
|
|
10830
|
+
locale: typing.Optional[builtins.str] = None,
|
|
10694
10831
|
) -> None:
|
|
10695
10832
|
"""Type checking stubs"""
|
|
10696
10833
|
pass
|
|
@@ -10713,6 +10850,14 @@ def _typecheckingstub__c0833e248a2b0215b05dd66ce2879efe35c5180b459e725cf02acb524
|
|
|
10713
10850
|
"""Type checking stubs"""
|
|
10714
10851
|
pass
|
|
10715
10852
|
|
|
10853
|
+
def _typecheckingstub__c7c77d42678888135842a224d18f4ff7fcbf96defa5fe5d052ddf6ae08737f6f(
|
|
10854
|
+
*,
|
|
10855
|
+
locale: typing.Optional[builtins.str] = None,
|
|
10856
|
+
session_summarization_ai_prompt_id: typing.Optional[builtins.str] = None,
|
|
10857
|
+
) -> None:
|
|
10858
|
+
"""Type checking stubs"""
|
|
10859
|
+
pass
|
|
10860
|
+
|
|
10716
10861
|
def _typecheckingstub__76535774a57202e416fb208d73c095c91408f65fd8a1b99f6b568fd994b915e9(
|
|
10717
10862
|
*,
|
|
10718
10863
|
key: builtins.str,
|