Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ fetch-schema-data:
# aws-cdk updated where they store the cfn doc json files. See https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/cfnspec/README.md
bin/git_lfs_download.sh "https://raw.githubusercontent.com/cdklabs/awscdk-service-spec/main/sources/CloudFormationDocumentation/CloudFormationDocumentation.json"

curl -o .tmp/cloudformation.schema.json https://raw.githubusercontent.com/awslabs/goformation/master/schema/cloudformation.schema.json
# Generate fresh CloudFormation schema using Python generator
python3 schema_source/cfn_schema_generator.py

update-schema-data:
# Parse docs
Expand Down
1 change: 1 addition & 0 deletions requirements-schema.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests>=2.25.0
1 change: 1 addition & 0 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ mypy~=1.10.1
boto3-stubs[appconfig,serverlessrepo]>=1.34.0,<2.0.0
types-PyYAML~=6.0
types-jsonschema~=3.2
types-requests~=2.28
213 changes: 213 additions & 0 deletions samtranslator/schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -345341,6 +345341,9 @@
"markdownDescription": "The configuration for AI Agents of type `ANSWER_RECOMMENDATION` .",
"title": "AnswerRecommendationAIAgentConfiguration"
},
"CaseSummarizationAIAgentConfiguration": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.CaseSummarizationAIAgentConfiguration"
},
"EmailGenerativeAnswerAIAgentConfiguration": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.EmailGenerativeAnswerAIAgentConfiguration",
"markdownDescription": "Configuration for the EMAIL_GENERATIVE_ANSWER AI agent that provides comprehensive knowledge-based answers for customer queries.",
Expand All @@ -345361,6 +345364,12 @@
"markdownDescription": "The configuration for AI Agents of type `MANUAL_SEARCH` .",
"title": "ManualSearchAIAgentConfiguration"
},
"NoteTakingAIAgentConfiguration": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.NoteTakingAIAgentConfiguration"
},
"OrchestrationAIAgentConfiguration": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.OrchestrationAIAgentConfiguration"
},
"SelfServiceAIAgentConfiguration": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.SelfServiceAIAgentConfiguration",
"markdownDescription": "The self-service AI agent configuration.",
Expand Down Expand Up @@ -345443,6 +345452,21 @@
],
"type": "object"
},
"AWS::Wisdom::AIAgent.CaseSummarizationAIAgentConfiguration": {
"additionalProperties": false,
"properties": {
"CaseSummarizationAIGuardrailId": {
"type": "string"
},
"CaseSummarizationAIPromptId": {
"type": "string"
},
"Locale": {
"type": "string"
}
},
"type": "object"
},
"AWS::Wisdom::AIAgent.EmailGenerativeAnswerAIAgentConfiguration": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -345567,6 +345591,21 @@
},
"type": "object"
},
"AWS::Wisdom::AIAgent.NoteTakingAIAgentConfiguration": {
"additionalProperties": false,
"properties": {
"Locale": {
"type": "string"
},
"NoteTakingAIGuardrailId": {
"type": "string"
},
"NoteTakingAIPromptId": {
"type": "string"
}
},
"type": "object"
},
"AWS::Wisdom::AIAgent.OrCondition": {
"additionalProperties": false,
"properties": {
Expand All @@ -345586,6 +345625,33 @@
},
"type": "object"
},
"AWS::Wisdom::AIAgent.OrchestrationAIAgentConfiguration": {
"additionalProperties": false,
"properties": {
"ConnectInstanceArn": {
"type": "string"
},
"Locale": {
"type": "string"
},
"OrchestrationAIGuardrailId": {
"type": "string"
},
"OrchestrationAIPromptId": {
"type": "string"
},
"ToolConfigurations": {
"items": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.ToolConfiguration"
},
"type": "array"
}
},
"required": [
"OrchestrationAIPromptId"
],
"type": "object"
},
"AWS::Wisdom::AIAgent.SelfServiceAIAgentConfiguration": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -345661,6 +345727,153 @@
},
"type": "object"
},
"AWS::Wisdom::AIAgent.ToolConfiguration": {
"additionalProperties": false,
"properties": {
"Annotations": {
"type": "object"
},
"Description": {
"type": "string"
},
"InputSchema": {
"type": "object"
},
"Instruction": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.ToolInstruction"
},
"OutputFilters": {
"items": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.ToolOutputFilter"
},
"type": "array"
},
"OutputSchema": {
"type": "object"
},
"OverrideInputValues": {
"items": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.ToolOverrideInputValue"
},
"type": "array"
},
"Title": {
"type": "string"
},
"ToolId": {
"type": "string"
},
"ToolName": {
"type": "string"
},
"ToolType": {
"type": "string"
},
"UserInteractionConfiguration": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.UserInteractionConfiguration"
}
},
"required": [
"ToolName",
"ToolType"
],
"type": "object"
},
"AWS::Wisdom::AIAgent.ToolInstruction": {
"additionalProperties": false,
"properties": {
"Examples": {
"items": {
"type": "string"
},
"type": "array"
},
"Instruction": {
"type": "string"
}
},
"type": "object"
},
"AWS::Wisdom::AIAgent.ToolOutputConfiguration": {
"additionalProperties": false,
"properties": {
"OutputVariableNameOverride": {
"type": "string"
},
"SessionDataNamespace": {
"type": "string"
}
},
"type": "object"
},
"AWS::Wisdom::AIAgent.ToolOutputFilter": {
"additionalProperties": false,
"properties": {
"JsonPath": {
"type": "string"
},
"OutputConfiguration": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.ToolOutputConfiguration"
}
},
"required": [
"JsonPath"
],
"type": "object"
},
"AWS::Wisdom::AIAgent.ToolOverrideConstantInputValue": {
"additionalProperties": false,
"properties": {
"Type": {
"type": "string"
},
"Value": {
"type": "string"
}
},
"required": [
"Type",
"Value"
],
"type": "object"
},
"AWS::Wisdom::AIAgent.ToolOverrideInputValue": {
"additionalProperties": false,
"properties": {
"JsonPath": {
"type": "string"
},
"Value": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.ToolOverrideInputValueConfiguration"
}
},
"required": [
"JsonPath",
"Value"
],
"type": "object"
},
"AWS::Wisdom::AIAgent.ToolOverrideInputValueConfiguration": {
"additionalProperties": false,
"properties": {
"Constant": {
"$ref": "#/definitions/AWS::Wisdom::AIAgent.ToolOverrideConstantInputValue"
}
},
"required": [
"Constant"
],
"type": "object"
},
"AWS::Wisdom::AIAgent.UserInteractionConfiguration": {
"additionalProperties": false,
"properties": {
"IsUserConfirmationRequired": {
"type": "boolean"
}
},
"type": "object"
},
"AWS::Wisdom::AIAgentVersion": {
"additionalProperties": false,
"properties": {
Expand Down
Loading
Loading