cdk-lambda-subminute 2.0.251 → 2.0.253

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 (35) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +10 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.examples.json +5 -0
  6. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +816 -0
  7. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +16 -0
  8. package/node_modules/aws-sdk/apis/bedrock-runtime-2023-09-30.examples.json +5 -0
  9. package/node_modules/aws-sdk/apis/bedrock-runtime-2023-09-30.min.json +180 -0
  10. package/node_modules/aws-sdk/apis/bedrock-runtime-2023-09-30.paginators.json +4 -0
  11. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1292 -1235
  12. package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.min.json +62 -13
  13. package/node_modules/aws-sdk/apis/metadata.json +7 -0
  14. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +681 -662
  15. package/node_modules/aws-sdk/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +9 -6
  16. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  17. package/node_modules/aws-sdk/clients/all.js +3 -1
  18. package/node_modules/aws-sdk/clients/bedrock.d.ts +840 -0
  19. package/node_modules/aws-sdk/clients/bedrock.js +18 -0
  20. package/node_modules/aws-sdk/clients/bedrockruntime.d.ts +138 -0
  21. package/node_modules/aws-sdk/clients/bedrockruntime.js +18 -0
  22. package/node_modules/aws-sdk/clients/budgets.d.ts +8 -7
  23. package/node_modules/aws-sdk/clients/ec2.d.ts +69 -4
  24. package/node_modules/aws-sdk/clients/iotfleetwise.d.ts +71 -1
  25. package/node_modules/aws-sdk/clients/sagemaker.d.ts +58 -31
  26. package/node_modules/aws-sdk/clients/sagemakerfeaturestoreruntime.d.ts +7 -2
  27. package/node_modules/aws-sdk/clients/wafv2.d.ts +2 -2
  28. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  29. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +82 -8
  30. package/node_modules/aws-sdk/dist/aws-sdk.js +1302 -1238
  31. package/node_modules/aws-sdk/dist/aws-sdk.min.js +74 -74
  32. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  33. package/node_modules/aws-sdk/lib/core.js +1 -1
  34. package/node_modules/aws-sdk/package.json +1 -1
  35. package/package.json +4 -4
@@ -0,0 +1,16 @@
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
+ }
16
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,180 @@
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
+ "throttlingException": {
141
+ "type": "structure",
142
+ "members": {
143
+ "message": {}
144
+ },
145
+ "error": {
146
+ "httpStatusCode": 429,
147
+ "senderFault": true
148
+ },
149
+ "exception": true
150
+ },
151
+ "validationException": {
152
+ "type": "structure",
153
+ "members": {
154
+ "message": {}
155
+ },
156
+ "error": {
157
+ "httpStatusCode": 400,
158
+ "senderFault": true
159
+ },
160
+ "exception": true
161
+ }
162
+ },
163
+ "eventstream": true
164
+ },
165
+ "contentType": {
166
+ "location": "header",
167
+ "locationName": "X-Amzn-Bedrock-Content-Type"
168
+ }
169
+ },
170
+ "payload": "body"
171
+ }
172
+ }
173
+ },
174
+ "shapes": {
175
+ "S3": {
176
+ "type": "blob",
177
+ "sensitive": true
178
+ }
179
+ }
180
+ }