Skip to content

Commit

Permalink
Update models for release
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-php-automation committed Jan 27, 2025
1 parent 9f6c0d5 commit b4af7fa
Show file tree
Hide file tree
Showing 19 changed files with 236 additions and 33 deletions.
22 changes: 22 additions & 0 deletions .changes/3.339.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "api-change",
"category": "BedrockAgent",
"description": "Add support for the prompt caching feature for Bedrock Prompt Management"
},
{
"type": "api-change",
"category": "MediaConvert",
"description": "This release adds support for dynamic audio configuration and the ability to disable the deblocking filter for h265 encodes."
},
{
"type": "api-change",
"category": "S3Control",
"description": "Minor fix to ARN validation for Lambda functions passed to S3 Batch Operations"
},
{
"type": "api-change",
"category": "IoT",
"description": "Raised the documentParameters size limit to 30 KB for AWS IoT Device Management - Jobs."
}
]
7 changes: 0 additions & 7 deletions .changes/nextrelease/dsql-token-generator.json

This file was deleted.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## next release

* `Aws\DSQL` - Adds new `AuthTokenGenerator` class which generates tokens for connecting to DSQL database clusters
* `Aws\BedrockAgent` - Add support for the prompt caching feature for Bedrock Prompt Management
* `Aws\MediaConvert` - This release adds support for dynamic audio configuration and the ability to disable the deblocking filter for h265 encodes.
* `Aws\S3Control` - Minor fix to ARN validation for Lambda functions passed to S3 Batch Operations
* `Aws\IoT` - Raised the documentParameters size limit to 30 KB for AWS IoT Device Management - Jobs.

## 3.338.2 - 2025-01-24

* `Aws\CloudTrail` - This release introduces the SearchSampleQueries API that allows users to search for CloudTrail Lake sample queries.
Expand Down
52 changes: 47 additions & 5 deletions src/data/bedrock-agent/2023-06-05/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1537,7 +1537,8 @@
"PREPARED",
"FAILED",
"UPDATING",
"DELETING"
"DELETING",
"DISSOCIATED"
]
},
"AgentAliasSummaries":{
Expand Down Expand Up @@ -1953,6 +1954,17 @@
"type":"string",
"pattern":"[a-z]{1,20}/.{1,20}"
},
"CachePointBlock":{
"type":"structure",
"required":["type"],
"members":{
"type":{"shape":"CachePointType"}
}
},
"CachePointType":{
"type":"string",
"enum":["default"]
},
"ChatPromptTemplateConfiguration":{
"type":"structure",
"required":["messages"],
Expand Down Expand Up @@ -2067,6 +2079,7 @@
"ContentBlock":{
"type":"structure",
"members":{
"cachePoint":{"shape":"CachePointBlock"},
"text":{"shape":"String"}
},
"sensitive":true,
Expand Down Expand Up @@ -3519,7 +3532,7 @@
"FlowNodes":{
"type":"list",
"member":{"shape":"FlowNode"},
"max":20,
"max":40,
"min":0
},
"FlowStatus":{
Expand Down Expand Up @@ -3597,6 +3610,8 @@
"unknownConnectionSourceOutput":{"shape":"UnknownConnectionSourceOutputFlowValidationDetails"},
"unknownConnectionTarget":{"shape":"UnknownConnectionTargetFlowValidationDetails"},
"unknownConnectionTargetInput":{"shape":"UnknownConnectionTargetInputFlowValidationDetails"},
"unknownNodeInput":{"shape":"UnknownNodeInputFlowValidationDetails"},
"unknownNodeOutput":{"shape":"UnknownNodeOutputFlowValidationDetails"},
"unreachableNode":{"shape":"UnreachableNodeFlowValidationDetails"},
"unsatisfiedConnectionConditions":{"shape":"UnsatisfiedConnectionConditionsFlowValidationDetails"},
"unspecified":{"shape":"UnspecifiedFlowValidationDetails"}
Expand Down Expand Up @@ -3637,7 +3652,9 @@
"MultipleNodeInputConnections",
"UnfulfilledNodeInput",
"UnsatisfiedConnectionConditions",
"Unspecified"
"Unspecified",
"UnknownNodeInput",
"UnknownNodeOutput"
]
},
"FlowValidations":{
Expand Down Expand Up @@ -5039,7 +5056,7 @@
"MaximumLength":{
"type":"integer",
"box":true,
"max":4096,
"max":8192,
"min":0
},
"MemoryConfiguration":{
Expand Down Expand Up @@ -5641,7 +5658,7 @@
"PromptInputVariablesList":{
"type":"list",
"member":{"shape":"PromptInputVariable"},
"max":5,
"max":10,
"min":0,
"sensitive":true
},
Expand Down Expand Up @@ -6541,6 +6558,7 @@
"SystemContentBlock":{
"type":"structure",
"members":{
"cachePoint":{"shape":"CachePointBlock"},
"text":{"shape":"NonEmptyString"}
},
"sensitive":true,
Expand Down Expand Up @@ -6622,6 +6640,7 @@
"type":"structure",
"required":["text"],
"members":{
"cachePoint":{"shape":"CachePointBlock"},
"inputVariables":{"shape":"PromptInputVariablesList"},
"text":{"shape":"TextPrompt"}
},
Expand All @@ -6641,6 +6660,7 @@
"Tool":{
"type":"structure",
"members":{
"cachePoint":{"shape":"CachePointBlock"},
"toolSpec":{"shape":"ToolSpecification"}
},
"union":true
Expand Down Expand Up @@ -6793,6 +6813,28 @@
"connection":{"shape":"FlowConnectionName"}
}
},
"UnknownNodeInputFlowValidationDetails":{
"type":"structure",
"required":[
"input",
"node"
],
"members":{
"input":{"shape":"FlowNodeInputName"},
"node":{"shape":"FlowNodeName"}
}
},
"UnknownNodeOutputFlowValidationDetails":{
"type":"structure",
"required":[
"node",
"output"
],
"members":{
"node":{"shape":"FlowNodeName"},
"output":{"shape":"FlowNodeOutputName"}
}
},
"UnreachableNodeFlowValidationDetails":{
"type":"structure",
"required":["node"],
Expand Down
2 changes: 1 addition & 1 deletion src/data/bedrock-agent/2023-06-05/api-2.json.php

Large diffs are not rendered by default.

37 changes: 34 additions & 3 deletions src/data/bedrock-agent/2023-06-05/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
"AgentAliasStatus": {
"base": null,
"refs": {
"AgentAlias$agentAliasStatus": "<p>The status of the alias of the agent and whether it is ready for use. The following statuses are possible:</p> <ul> <li> <p>CREATING – The agent alias is being created.</p> </li> <li> <p>PREPARED – The agent alias is finished being created or updated and is ready to be invoked.</p> </li> <li> <p>FAILED – The agent alias API operation failed.</p> </li> <li> <p>UPDATING – The agent alias is being updated.</p> </li> <li> <p>DELETING – The agent alias is being deleted.</p> </li> </ul>",
"AgentAlias$agentAliasStatus": "<p>The status of the alias of the agent and whether it is ready for use. The following statuses are possible:</p> <ul> <li> <p>CREATING – The agent alias is being created.</p> </li> <li> <p>PREPARED – The agent alias is finished being created or updated and is ready to be invoked.</p> </li> <li> <p>FAILED – The agent alias API operation failed.</p> </li> <li> <p>UPDATING – The agent alias is being updated.</p> </li> <li> <p>DELETING – The agent alias is being deleted.</p> </li> <li> <p>DISSOCIATED - The agent alias has no version associated with it.</p> </li> </ul>",
"AgentAliasSummary$agentAliasStatus": "<p>The status of the alias.</p>",
"DeleteAgentAliasResponse$agentAliasStatus": "<p>The status of the alias.</p>"
}
Expand Down Expand Up @@ -457,6 +457,21 @@
"ByteContentDoc$mimeType": "<p>The MIME type of the content. For a list of MIME types, see <a href=\"https://www.iana.org/assignments/media-types/media-types.xhtml\">Media Types</a>. The following MIME types are supported:</p> <ul> <li> <p>text/plain</p> </li> <li> <p>text/html</p> </li> <li> <p>text/csv</p> </li> <li> <p>text/vtt</p> </li> <li> <p>message/rfc822</p> </li> <li> <p>application/xhtml+xml</p> </li> <li> <p>application/pdf</p> </li> <li> <p>application/msword</p> </li> <li> <p>application/vnd.ms-word.document.macroenabled.12</p> </li> <li> <p>application/vnd.ms-word.template.macroenabled.12</p> </li> <li> <p>application/vnd.ms-excel</p> </li> <li> <p>application/vnd.ms-excel.addin.macroenabled.12</p> </li> <li> <p>application/vnd.ms-excel.sheet.macroenabled.12</p> </li> <li> <p>application/vnd.ms-excel.template.macroenabled.12</p> </li> <li> <p>application/vnd.ms-excel.sheet.binary.macroenabled.12</p> </li> <li> <p>application/vnd.ms-spreadsheetml</p> </li> <li> <p>application/vnd.openxmlformats-officedocument.spreadsheetml.sheet</p> </li> <li> <p>application/vnd.openxmlformats-officedocument.spreadsheetml.template</p> </li> <li> <p>application/vnd.openxmlformats-officedocument.wordprocessingml.document</p> </li> <li> <p>application/vnd.openxmlformats-officedocument.wordprocessingml.template</p> </li> </ul>"
}
},
"CachePointBlock": {
"base": "<p>Indicates where a cache checkpoint is located. All information before this checkpoint is cached to be accessed on subsequent requests.</p>",
"refs": {
"ContentBlock$cachePoint": "<p>Creates a cache checkpoint within a message.</p>",
"SystemContentBlock$cachePoint": "<p>Creates a cache checkpoint within a tool designation</p>",
"TextPromptTemplateConfiguration$cachePoint": "<p>A cache checkpoint within a template configuration.</p>",
"Tool$cachePoint": "<p>Creates a cache checkpoint within a tool designation</p>"
}
},
"CachePointType": {
"base": null,
"refs": {
"CachePointBlock$type": "<p>Indicates that the CachePointBlock is of the default type</p>"
}
},
"ChatPromptTemplateConfiguration": {
"base": "<p>Contains configurations to use a prompt in a conversational format. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management-create.html\">Create a prompt using Prompt management</a>.</p>",
"refs": {
Expand Down Expand Up @@ -1539,7 +1554,8 @@
"MismatchedNodeInputTypeFlowValidationDetails$input": "<p>The name of the input with the mismatched data type.</p>",
"MissingNodeInputFlowValidationDetails$input": "<p>The name of the missing input.</p>",
"MultipleNodeInputConnectionsFlowValidationDetails$input": "<p>The name of the input with multiple connections to it.</p>",
"UnfulfilledNodeInputFlowValidationDetails$input": "<p>The name of the unfulfilled input. An input is unfulfilled if there are no data connections to it.</p>"
"UnfulfilledNodeInputFlowValidationDetails$input": "<p>The name of the unfulfilled input. An input is unfulfilled if there are no data connections to it.</p>",
"UnknownNodeInputFlowValidationDetails$input": "<p>The name of the node with the unknown input.</p>"
}
},
"FlowNodeInputs": {
Expand Down Expand Up @@ -1567,6 +1583,8 @@
"MissingNodeOutputFlowValidationDetails$node": "<p>The name of the node missing the required output.</p>",
"MultipleNodeInputConnectionsFlowValidationDetails$node": "<p>The name of the node containing the input with multiple connections.</p>",
"UnfulfilledNodeInputFlowValidationDetails$node": "<p>The name of the node containing the unfulfilled input.</p>",
"UnknownNodeInputFlowValidationDetails$node": "<p>The name of the unknown input.</p>",
"UnknownNodeOutputFlowValidationDetails$node": "<p>The name of the node with the unknown output.</p>",
"UnreachableNodeFlowValidationDetails$node": "<p>The name of the unreachable node.</p>"
}
},
Expand All @@ -1582,7 +1600,8 @@
"FlowDataConnectionConfiguration$sourceOutput": "<p>The name of the output in the source node that the connection begins from.</p>",
"FlowNodeOutput$name": "<p>A name for the output that you can reference.</p>",
"MismatchedNodeOutputTypeFlowValidationDetails$output": "<p>The name of the output with the mismatched data type.</p>",
"MissingNodeOutputFlowValidationDetails$output": "<p>The name of the missing output.</p>"
"MissingNodeOutputFlowValidationDetails$output": "<p>The name of the missing output.</p>",
"UnknownNodeOutputFlowValidationDetails$output": "<p>The name of the unknown output.</p>"
}
},
"FlowNodeOutputs": {
Expand Down Expand Up @@ -4088,6 +4107,18 @@
"FlowValidationDetails$unknownConnectionTargetInput": "<p>Details about an unknown target input for a connection.</p>"
}
},
"UnknownNodeInputFlowValidationDetails": {
"base": "<p>Details about an unknown input for a node.</p>",
"refs": {
"FlowValidationDetails$unknownNodeInput": "<p>Details about an unknown input for a node.</p>"
}
},
"UnknownNodeOutputFlowValidationDetails": {
"base": "<p>Details about an unknown output for a node.</p>",
"refs": {
"FlowValidationDetails$unknownNodeOutput": "<p>Details about an unknown output for a node.</p>"
}
},
"UnreachableNodeFlowValidationDetails": {
"base": "<p>Details about an unreachable node in the flow. A node is unreachable when there are no paths to it from any starting node.</p>",
"refs": {
Expand Down
2 changes: 1 addition & 1 deletion src/data/bedrock-agent/2023-06-05/docs-2.json.php

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions src/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -23642,6 +23642,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.ca-central-1.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.ca-central-1.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.ca-central-1.api.aws",
"tags" : [ "dualstack" ]
Expand All @@ -23651,6 +23654,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.ca-west-1.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.ca-west-1.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.ca-west-1.api.aws",
"tags" : [ "dualstack" ]
Expand Down Expand Up @@ -23780,6 +23786,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.us-east-1.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.us-east-1.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.us-east-1.api.aws",
"tags" : [ "dualstack" ]
Expand All @@ -23789,6 +23798,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.us-east-2.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.us-east-2.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.us-east-2.api.aws",
"tags" : [ "dualstack" ]
Expand All @@ -23798,6 +23810,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.us-west-1.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.us-west-1.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.us-west-1.api.aws",
"tags" : [ "dualstack" ]
Expand All @@ -23807,6 +23822,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.us-west-2.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.us-west-2.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.us-west-2.api.aws",
"tags" : [ "dualstack" ]
Expand Down
2 changes: 1 addition & 1 deletion src/data/endpoints.json.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/data/iot/2015-05-28/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -12874,7 +12874,7 @@
},
"ParameterValue":{
"type":"string",
"max":512,
"max":30720,
"min":1,
"pattern":"[^\\p{C}]+"
},
Expand Down
2 changes: 1 addition & 1 deletion src/data/iot/2015-05-28/api-2.json.php

Large diffs are not rendered by default.

Loading

0 comments on commit b4af7fa

Please sign in to comment.