aws-sdk 2.1466.0 → 2.1468.0

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/README.md +1 -1
  3. package/apis/bedrock-2023-04-20.examples.json +5 -0
  4. package/apis/bedrock-2023-04-20.min.json +1062 -0
  5. package/apis/bedrock-2023-04-20.paginators.json +22 -0
  6. package/apis/bedrock-2023-04-20.waiters2.json +5 -0
  7. package/apis/bedrock-runtime-2023-09-30.examples.json +5 -0
  8. package/apis/bedrock-runtime-2023-09-30.min.json +191 -0
  9. package/apis/bedrock-runtime-2023-09-30.paginators.json +4 -0
  10. package/apis/ec2-2016-11-15.min.json +1292 -1235
  11. package/apis/iotfleetwise-2021-06-17.min.json +62 -13
  12. package/apis/metadata.json +7 -0
  13. package/apis/rds-2014-10-31.min.json +1 -0
  14. package/apis/sagemaker-2017-07-24.min.json +681 -662
  15. package/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +9 -6
  16. package/clients/all.d.ts +2 -0
  17. package/clients/all.js +3 -1
  18. package/clients/bedrock.d.ts +1102 -0
  19. package/clients/bedrock.js +19 -0
  20. package/clients/bedrockruntime.d.ts +141 -0
  21. package/clients/bedrockruntime.js +18 -0
  22. package/clients/budgets.d.ts +8 -7
  23. package/clients/ec2.d.ts +70 -5
  24. package/clients/iotfleetwise.d.ts +71 -1
  25. package/clients/managedblockchain.d.ts +3 -3
  26. package/clients/rds.d.ts +35 -31
  27. package/clients/sagemaker.d.ts +58 -31
  28. package/clients/sagemakerfeaturestoreruntime.d.ts +7 -2
  29. package/clients/sts.d.ts +2 -1
  30. package/clients/transfer.d.ts +21 -21
  31. package/clients/wafv2.d.ts +2 -2
  32. package/dist/aws-sdk-core-react-native.js +2 -2
  33. package/dist/aws-sdk-react-native.js +90 -9
  34. package/dist/aws-sdk.js +1303 -1238
  35. package/dist/aws-sdk.min.js +74 -74
  36. package/lib/config_service_placeholders.d.ts +4 -0
  37. package/lib/core.js +1 -1
  38. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ {
2
+ "pagination": {
3
+ "ListCustomModels": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults",
7
+ "result_key": "modelSummaries"
8
+ },
9
+ "ListModelCustomizationJobs": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "modelCustomizationJobSummaries"
14
+ },
15
+ "ListProvisionedModelThroughputs": {
16
+ "input_token": "nextToken",
17
+ "output_token": "nextToken",
18
+ "limit_key": "maxResults",
19
+ "result_key": "provisionedModelSummaries"
20
+ }
21
+ }
22
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ }
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,191 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2023-09-30",
5
+ "endpointPrefix": "bedrock-runtime",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "Amazon Bedrock Runtime",
9
+ "serviceId": "Bedrock Runtime",
10
+ "signatureVersion": "v4",
11
+ "signingName": "bedrock",
12
+ "uid": "bedrock-runtime-2023-09-30"
13
+ },
14
+ "operations": {
15
+ "InvokeModel": {
16
+ "http": {
17
+ "requestUri": "/model/{modelId}/invoke",
18
+ "responseCode": 200
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "body",
24
+ "modelId"
25
+ ],
26
+ "members": {
27
+ "accept": {
28
+ "location": "header",
29
+ "locationName": "Accept"
30
+ },
31
+ "body": {
32
+ "shape": "S3"
33
+ },
34
+ "contentType": {
35
+ "location": "header",
36
+ "locationName": "Content-Type"
37
+ },
38
+ "modelId": {
39
+ "location": "uri",
40
+ "locationName": "modelId"
41
+ }
42
+ },
43
+ "payload": "body"
44
+ },
45
+ "output": {
46
+ "type": "structure",
47
+ "required": [
48
+ "body",
49
+ "contentType"
50
+ ],
51
+ "members": {
52
+ "body": {
53
+ "shape": "S3"
54
+ },
55
+ "contentType": {
56
+ "location": "header",
57
+ "locationName": "Content-Type"
58
+ }
59
+ },
60
+ "payload": "body"
61
+ }
62
+ },
63
+ "InvokeModelWithResponseStream": {
64
+ "http": {
65
+ "requestUri": "/model/{modelId}/invoke-with-response-stream",
66
+ "responseCode": 200
67
+ },
68
+ "input": {
69
+ "type": "structure",
70
+ "required": [
71
+ "body",
72
+ "modelId"
73
+ ],
74
+ "members": {
75
+ "accept": {
76
+ "location": "header",
77
+ "locationName": "X-Amzn-Bedrock-Accept"
78
+ },
79
+ "body": {
80
+ "shape": "S3"
81
+ },
82
+ "contentType": {
83
+ "location": "header",
84
+ "locationName": "Content-Type"
85
+ },
86
+ "modelId": {
87
+ "location": "uri",
88
+ "locationName": "modelId"
89
+ }
90
+ },
91
+ "payload": "body"
92
+ },
93
+ "output": {
94
+ "type": "structure",
95
+ "required": [
96
+ "body",
97
+ "contentType"
98
+ ],
99
+ "members": {
100
+ "body": {
101
+ "type": "structure",
102
+ "members": {
103
+ "chunk": {
104
+ "type": "structure",
105
+ "members": {
106
+ "bytes": {
107
+ "type": "blob",
108
+ "sensitive": true
109
+ }
110
+ },
111
+ "event": true,
112
+ "sensitive": true
113
+ },
114
+ "internalServerException": {
115
+ "type": "structure",
116
+ "members": {
117
+ "message": {}
118
+ },
119
+ "error": {
120
+ "httpStatusCode": 500
121
+ },
122
+ "exception": true,
123
+ "fault": true
124
+ },
125
+ "modelStreamErrorException": {
126
+ "type": "structure",
127
+ "members": {
128
+ "message": {},
129
+ "originalMessage": {},
130
+ "originalStatusCode": {
131
+ "type": "integer"
132
+ }
133
+ },
134
+ "error": {
135
+ "httpStatusCode": 424,
136
+ "senderFault": true
137
+ },
138
+ "exception": true
139
+ },
140
+ "modelTimeoutException": {
141
+ "type": "structure",
142
+ "members": {
143
+ "message": {}
144
+ },
145
+ "error": {
146
+ "httpStatusCode": 408,
147
+ "senderFault": true
148
+ },
149
+ "exception": true
150
+ },
151
+ "throttlingException": {
152
+ "type": "structure",
153
+ "members": {
154
+ "message": {}
155
+ },
156
+ "error": {
157
+ "httpStatusCode": 429,
158
+ "senderFault": true
159
+ },
160
+ "exception": true
161
+ },
162
+ "validationException": {
163
+ "type": "structure",
164
+ "members": {
165
+ "message": {}
166
+ },
167
+ "error": {
168
+ "httpStatusCode": 400,
169
+ "senderFault": true
170
+ },
171
+ "exception": true
172
+ }
173
+ },
174
+ "eventstream": true
175
+ },
176
+ "contentType": {
177
+ "location": "header",
178
+ "locationName": "X-Amzn-Bedrock-Content-Type"
179
+ }
180
+ },
181
+ "payload": "body"
182
+ }
183
+ }
184
+ },
185
+ "shapes": {
186
+ "S3": {
187
+ "type": "blob",
188
+ "sensitive": true
189
+ }
190
+ }
191
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }