Skip to content

Commit 97d172b

Browse files
Updated API models and rebuilt service gems.
1 parent 78754eb commit 97d172b

File tree

35 files changed

+755
-49
lines changed

35 files changed

+755
-49
lines changed

apis/bedrock-agent/2023-06-05/api-2.json

Lines changed: 47 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,8 @@
15371537
"PREPARED",
15381538
"FAILED",
15391539
"UPDATING",
1540-
"DELETING"
1540+
"DELETING",
1541+
"DISSOCIATED"
15411542
]
15421543
},
15431544
"AgentAliasSummaries":{
@@ -1953,6 +1954,17 @@
19531954
"type":"string",
19541955
"pattern":"[a-z]{1,20}/.{1,20}"
19551956
},
1957+
"CachePointBlock":{
1958+
"type":"structure",
1959+
"required":["type"],
1960+
"members":{
1961+
"type":{"shape":"CachePointType"}
1962+
}
1963+
},
1964+
"CachePointType":{
1965+
"type":"string",
1966+
"enum":["default"]
1967+
},
19561968
"ChatPromptTemplateConfiguration":{
19571969
"type":"structure",
19581970
"required":["messages"],
@@ -2067,6 +2079,7 @@
20672079
"ContentBlock":{
20682080
"type":"structure",
20692081
"members":{
2082+
"cachePoint":{"shape":"CachePointBlock"},
20702083
"text":{"shape":"String"}
20712084
},
20722085
"sensitive":true,
@@ -3519,7 +3532,7 @@
35193532
"FlowNodes":{
35203533
"type":"list",
35213534
"member":{"shape":"FlowNode"},
3522-
"max":20,
3535+
"max":40,
35233536
"min":0
35243537
},
35253538
"FlowStatus":{
@@ -3597,6 +3610,8 @@
35973610
"unknownConnectionSourceOutput":{"shape":"UnknownConnectionSourceOutputFlowValidationDetails"},
35983611
"unknownConnectionTarget":{"shape":"UnknownConnectionTargetFlowValidationDetails"},
35993612
"unknownConnectionTargetInput":{"shape":"UnknownConnectionTargetInputFlowValidationDetails"},
3613+
"unknownNodeInput":{"shape":"UnknownNodeInputFlowValidationDetails"},
3614+
"unknownNodeOutput":{"shape":"UnknownNodeOutputFlowValidationDetails"},
36003615
"unreachableNode":{"shape":"UnreachableNodeFlowValidationDetails"},
36013616
"unsatisfiedConnectionConditions":{"shape":"UnsatisfiedConnectionConditionsFlowValidationDetails"},
36023617
"unspecified":{"shape":"UnspecifiedFlowValidationDetails"}
@@ -3637,7 +3652,9 @@
36373652
"MultipleNodeInputConnections",
36383653
"UnfulfilledNodeInput",
36393654
"UnsatisfiedConnectionConditions",
3640-
"Unspecified"
3655+
"Unspecified",
3656+
"UnknownNodeInput",
3657+
"UnknownNodeOutput"
36413658
]
36423659
},
36433660
"FlowValidations":{
@@ -5039,7 +5056,7 @@
50395056
"MaximumLength":{
50405057
"type":"integer",
50415058
"box":true,
5042-
"max":4096,
5059+
"max":8192,
50435060
"min":0
50445061
},
50455062
"MemoryConfiguration":{
@@ -5641,7 +5658,7 @@
56415658
"PromptInputVariablesList":{
56425659
"type":"list",
56435660
"member":{"shape":"PromptInputVariable"},
5644-
"max":5,
5661+
"max":10,
56455662
"min":0,
56465663
"sensitive":true
56475664
},
@@ -6541,6 +6558,7 @@
65416558
"SystemContentBlock":{
65426559
"type":"structure",
65436560
"members":{
6561+
"cachePoint":{"shape":"CachePointBlock"},
65446562
"text":{"shape":"NonEmptyString"}
65456563
},
65466564
"sensitive":true,
@@ -6622,6 +6640,7 @@
66226640
"type":"structure",
66236641
"required":["text"],
66246642
"members":{
6643+
"cachePoint":{"shape":"CachePointBlock"},
66256644
"inputVariables":{"shape":"PromptInputVariablesList"},
66266645
"text":{"shape":"TextPrompt"}
66276646
},
@@ -6641,6 +6660,7 @@
66416660
"Tool":{
66426661
"type":"structure",
66436662
"members":{
6663+
"cachePoint":{"shape":"CachePointBlock"},
66446664
"toolSpec":{"shape":"ToolSpecification"}
66456665
},
66466666
"union":true
@@ -6793,6 +6813,28 @@
67936813
"connection":{"shape":"FlowConnectionName"}
67946814
}
67956815
},
6816+
"UnknownNodeInputFlowValidationDetails":{
6817+
"type":"structure",
6818+
"required":[
6819+
"input",
6820+
"node"
6821+
],
6822+
"members":{
6823+
"input":{"shape":"FlowNodeInputName"},
6824+
"node":{"shape":"FlowNodeName"}
6825+
}
6826+
},
6827+
"UnknownNodeOutputFlowValidationDetails":{
6828+
"type":"structure",
6829+
"required":[
6830+
"node",
6831+
"output"
6832+
],
6833+
"members":{
6834+
"node":{"shape":"FlowNodeName"},
6835+
"output":{"shape":"FlowNodeOutputName"}
6836+
}
6837+
},
67966838
"UnreachableNodeFlowValidationDetails":{
67976839
"type":"structure",
67986840
"required":["node"],

apis/bedrock-agent/2023-06-05/docs-2.json

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
"AgentAliasStatus": {
202202
"base": null,
203203
"refs": {
204-
"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>",
204+
"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>",
205205
"AgentAliasSummary$agentAliasStatus": "<p>The status of the alias.</p>",
206206
"DeleteAgentAliasResponse$agentAliasStatus": "<p>The status of the alias.</p>"
207207
}
@@ -457,6 +457,21 @@
457457
"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>"
458458
}
459459
},
460+
"CachePointBlock": {
461+
"base": "<p>Indicates where a cache checkpoint is located. All information before this checkpoint is cached to be accessed on subsequent requests.</p>",
462+
"refs": {
463+
"ContentBlock$cachePoint": "<p>Creates a cache checkpoint within a message.</p>",
464+
"SystemContentBlock$cachePoint": "<p>Creates a cache checkpoint within a tool designation</p>",
465+
"TextPromptTemplateConfiguration$cachePoint": "<p>A cache checkpoint within a template configuration.</p>",
466+
"Tool$cachePoint": "<p>Creates a cache checkpoint within a tool designation</p>"
467+
}
468+
},
469+
"CachePointType": {
470+
"base": null,
471+
"refs": {
472+
"CachePointBlock$type": "<p>Indicates that the CachePointBlock is of the default type</p>"
473+
}
474+
},
460475
"ChatPromptTemplateConfiguration": {
461476
"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>",
462477
"refs": {
@@ -1539,7 +1554,8 @@
15391554
"MismatchedNodeInputTypeFlowValidationDetails$input": "<p>The name of the input with the mismatched data type.</p>",
15401555
"MissingNodeInputFlowValidationDetails$input": "<p>The name of the missing input.</p>",
15411556
"MultipleNodeInputConnectionsFlowValidationDetails$input": "<p>The name of the input with multiple connections to it.</p>",
1542-
"UnfulfilledNodeInputFlowValidationDetails$input": "<p>The name of the unfulfilled input. An input is unfulfilled if there are no data connections to it.</p>"
1557+
"UnfulfilledNodeInputFlowValidationDetails$input": "<p>The name of the unfulfilled input. An input is unfulfilled if there are no data connections to it.</p>",
1558+
"UnknownNodeInputFlowValidationDetails$input": "<p>The name of the node with the unknown input.</p>"
15431559
}
15441560
},
15451561
"FlowNodeInputs": {
@@ -1567,6 +1583,8 @@
15671583
"MissingNodeOutputFlowValidationDetails$node": "<p>The name of the node missing the required output.</p>",
15681584
"MultipleNodeInputConnectionsFlowValidationDetails$node": "<p>The name of the node containing the input with multiple connections.</p>",
15691585
"UnfulfilledNodeInputFlowValidationDetails$node": "<p>The name of the node containing the unfulfilled input.</p>",
1586+
"UnknownNodeInputFlowValidationDetails$node": "<p>The name of the unknown input.</p>",
1587+
"UnknownNodeOutputFlowValidationDetails$node": "<p>The name of the node with the unknown output.</p>",
15701588
"UnreachableNodeFlowValidationDetails$node": "<p>The name of the unreachable node.</p>"
15711589
}
15721590
},
@@ -1582,7 +1600,8 @@
15821600
"FlowDataConnectionConfiguration$sourceOutput": "<p>The name of the output in the source node that the connection begins from.</p>",
15831601
"FlowNodeOutput$name": "<p>A name for the output that you can reference.</p>",
15841602
"MismatchedNodeOutputTypeFlowValidationDetails$output": "<p>The name of the output with the mismatched data type.</p>",
1585-
"MissingNodeOutputFlowValidationDetails$output": "<p>The name of the missing output.</p>"
1603+
"MissingNodeOutputFlowValidationDetails$output": "<p>The name of the missing output.</p>",
1604+
"UnknownNodeOutputFlowValidationDetails$output": "<p>The name of the unknown output.</p>"
15861605
}
15871606
},
15881607
"FlowNodeOutputs": {
@@ -4088,6 +4107,18 @@
40884107
"FlowValidationDetails$unknownConnectionTargetInput": "<p>Details about an unknown target input for a connection.</p>"
40894108
}
40904109
},
4110+
"UnknownNodeInputFlowValidationDetails": {
4111+
"base": "<p>Details about an unknown input for a node.</p>",
4112+
"refs": {
4113+
"FlowValidationDetails$unknownNodeInput": "<p>Details about an unknown input for a node.</p>"
4114+
}
4115+
},
4116+
"UnknownNodeOutputFlowValidationDetails": {
4117+
"base": "<p>Details about an unknown output for a node.</p>",
4118+
"refs": {
4119+
"FlowValidationDetails$unknownNodeOutput": "<p>Details about an unknown output for a node.</p>"
4120+
}
4121+
},
40914122
"UnreachableNodeFlowValidationDetails": {
40924123
"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>",
40934124
"refs": {

apis/iot/2015-05-28/api-2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12874,7 +12874,7 @@
1287412874
},
1287512875
"ParameterValue":{
1287612876
"type":"string",
12877-
"max":512,
12877+
"max":30720,
1287812878
"min":1,
1287912879
"pattern":"[^\\p{C}]+"
1288012880
},

apis/mediaconvert/2017-08-29/api-2.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4202,6 +4202,38 @@
42024202
"NO_DISPLAY_WINDOW"
42034203
]
42044204
},
4205+
"DynamicAudioSelector": {
4206+
"type": "structure",
4207+
"members": {
4208+
"AudioDurationCorrection": {
4209+
"shape": "AudioDurationCorrection",
4210+
"locationName": "audioDurationCorrection"
4211+
},
4212+
"ExternalAudioFileInput": {
4213+
"shape": "__stringPatternS3Https",
4214+
"locationName": "externalAudioFileInput"
4215+
},
4216+
"LanguageCode": {
4217+
"shape": "LanguageCode",
4218+
"locationName": "languageCode"
4219+
},
4220+
"Offset": {
4221+
"shape": "__integerMinNegative2147483648Max2147483647",
4222+
"locationName": "offset"
4223+
},
4224+
"SelectorType": {
4225+
"shape": "DynamicAudioSelectorType",
4226+
"locationName": "selectorType"
4227+
}
4228+
}
4229+
},
4230+
"DynamicAudioSelectorType": {
4231+
"type": "string",
4232+
"enum": [
4233+
"ALL_TRACKS",
4234+
"LANGUAGE_CODE"
4235+
]
4236+
},
42054237
"Eac3AtmosBitstreamMode": {
42064238
"type": "string",
42074239
"enum": [
@@ -5423,6 +5455,13 @@
54235455
"MAIN_422_10BIT_HIGH"
54245456
]
54255457
},
5458+
"H265Deblocking": {
5459+
"type": "string",
5460+
"enum": [
5461+
"ENABLED",
5462+
"DISABLED"
5463+
]
5464+
},
54265465
"H265DynamicSubGop": {
54275466
"type": "string",
54285467
"enum": [
@@ -5574,6 +5613,10 @@
55745613
"shape": "H265CodecProfile",
55755614
"locationName": "codecProfile"
55765615
},
5616+
"Deblocking": {
5617+
"shape": "H265Deblocking",
5618+
"locationName": "deblocking"
5619+
},
55775620
"DynamicSubGop": {
55785621
"shape": "H265DynamicSubGop",
55795622
"locationName": "dynamicSubGop"
@@ -6441,6 +6484,10 @@
64416484
"shape": "__stringMin14PatternS3XmlXMLHttpsXmlXML",
64426485
"locationName": "dolbyVisionMetadataXml"
64436486
},
6487+
"DynamicAudioSelectors": {
6488+
"shape": "__mapOfDynamicAudioSelector",
6489+
"locationName": "dynamicAudioSelectors"
6490+
},
64446491
"FileInput": {
64456492
"shape": "__stringMax2048PatternS3Https",
64466493
"locationName": "fileInput"
@@ -6637,6 +6684,10 @@
66376684
"shape": "__stringMin14PatternS3XmlXMLHttpsXmlXML",
66386685
"locationName": "dolbyVisionMetadataXml"
66396686
},
6687+
"DynamicAudioSelectors": {
6688+
"shape": "__mapOfDynamicAudioSelector",
6689+
"locationName": "dynamicAudioSelectors"
6690+
},
66406691
"FilterEnable": {
66416692
"shape": "InputFilterEnable",
66426693
"locationName": "filterEnable"
@@ -12447,6 +12498,15 @@
1244712498
"shape": "CaptionSelector"
1244812499
}
1244912500
},
12501+
"__mapOfDynamicAudioSelector": {
12502+
"type": "map",
12503+
"key": {
12504+
"shape": "__string"
12505+
},
12506+
"value": {
12507+
"shape": "DynamicAudioSelector"
12508+
}
12509+
},
1245012510
"__mapOf__string": {
1245112511
"type": "map",
1245212512
"key": {

0 commit comments

Comments
 (0)