serverless-spy 0.0.39 → 0.0.40
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.
- package/.jsii +2 -2
- package/cli/android-chrome-192x192.png +0 -0
- package/cli/android-chrome-512x512.png +0 -0
- package/cli/apple-touch-icon.png +0 -0
- package/cli/browserconfig.xml +9 -0
- package/cli/cli.ts +8 -4
- package/cli/favicon-16x16.png +0 -0
- package/cli/favicon-32x32.png +0 -0
- package/cli/favicon.ico +0 -0
- package/cli/full_logo.svg +25 -0
- package/cli/index.html +12 -0
- package/cli/mstile-144x144.png +0 -0
- package/cli/mstile-150x150.png +0 -0
- package/cli/mstile-310x150.png +0 -0
- package/cli/mstile-310x310.png +0 -0
- package/cli/mstile-70x70.png +0 -0
- package/cli/safari-pinned-tab.svg +63 -0
- package/cli/site.webmanifest +19 -0
- package/cli/style.css +4 -0
- package/dist/releasetag.txt +1 -1
- package/lib/cli/android-chrome-192x192.png +0 -0
- package/lib/cli/android-chrome-512x512.png +0 -0
- package/lib/cli/apple-touch-icon.png +0 -0
- package/lib/cli/browserconfig.xml +9 -0
- package/lib/cli/cli.js +7 -5
- package/lib/cli/cli.mjs +7 -5
- package/lib/cli/cli.ts +176 -0
- package/lib/cli/favicon-16x16.png +0 -0
- package/lib/cli/favicon-32x32.png +0 -0
- package/lib/cli/favicon.ico +0 -0
- package/lib/cli/full_logo.svg +25 -0
- package/lib/cli/icons/Arch_AWS-Lambda_16.svg +18 -0
- package/lib/cli/icons/Arch_Amazon-DynamoDB_16.svg +18 -0
- package/lib/cli/icons/Arch_Amazon-EventBridge_16.svg +18 -0
- package/lib/cli/icons/Arch_Amazon-Simple-Notification-Service_16.svg +18 -0
- package/lib/cli/icons/Arch_Amazon-Simple-Queue-Service_16.svg +18 -0
- package/lib/cli/icons/Arch_Amazon-Simple-Storage-Service_16.svg +18 -0
- package/lib/cli/index.html +114 -0
- package/lib/cli/mstile-144x144.png +0 -0
- package/lib/cli/mstile-150x150.png +0 -0
- package/lib/cli/mstile-310x150.png +0 -0
- package/lib/cli/mstile-310x310.png +0 -0
- package/lib/cli/mstile-70x70.png +0 -0
- package/lib/cli/package.json +23 -0
- package/lib/cli/safari-pinned-tab.svg +63 -0
- package/lib/cli/sampleData.ts +518 -0
- package/lib/cli/site.webmanifest +19 -0
- package/lib/cli/spy_log.json +0 -0
- package/lib/cli/style.css +71 -0
- package/lib/cli/webServerlessSpy.ts +461 -0
- package/lib/src/ServerlessSpy.js +1 -1
- package/logo/favicon/android-chrome-192x192.png +0 -0
- package/logo/favicon/android-chrome-512x512.png +0 -0
- package/logo/favicon/apple-touch-icon.png +0 -0
- package/logo/favicon/browserconfig.xml +9 -0
- package/logo/favicon/favicon-16x16.png +0 -0
- package/logo/favicon/favicon-32x32.png +0 -0
- package/logo/favicon/favicon.ico +0 -0
- package/logo/favicon/mstile-144x144.png +0 -0
- package/logo/favicon/mstile-150x150.png +0 -0
- package/logo/favicon/mstile-310x150.png +0 -0
- package/logo/favicon/mstile-310x310.png +0 -0
- package/logo/favicon/mstile-70x70.png +0 -0
- package/logo/favicon/safari-pinned-tab.svg +63 -0
- package/logo/favicon/site.webmanifest +19 -0
- package/logo/full_logo.svg +25 -0
- package/logo/info.txt +1 -0
- package/logo/logo.svg +11 -0
- package/package.json +1 -1
package/lib/cli/cli.ts
ADDED
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
import * as fs from 'fs';
|
|
2
|
+
import * as http from 'http';
|
|
3
|
+
import * as path from 'path';
|
|
4
|
+
import { promisify } from 'util';
|
|
5
|
+
import * as progam from 'caporal';
|
|
6
|
+
import { getInstalledPath } from 'get-installed-path';
|
|
7
|
+
import open from 'open';
|
|
8
|
+
import { getSignedWebSocketUrl } from '../common/getWebSocketUrl';
|
|
9
|
+
|
|
10
|
+
const readFileAsync = promisify(fs.readFile);
|
|
11
|
+
|
|
12
|
+
async function run() {
|
|
13
|
+
let stackList: string[] | undefined;
|
|
14
|
+
let cdkOutput: Record<string, Record<string, string>>;
|
|
15
|
+
|
|
16
|
+
let options: any;
|
|
17
|
+
|
|
18
|
+
progam
|
|
19
|
+
.description('ServerlessSpy')
|
|
20
|
+
.option('--ws <ws>', 'Websocket link')
|
|
21
|
+
.option(
|
|
22
|
+
'--cdkoutput <cdkoutput>',
|
|
23
|
+
'CDK output file that contains Websocket link in a property ServerlessSpyWsUrl'
|
|
24
|
+
)
|
|
25
|
+
.option(
|
|
26
|
+
'--cdkstack <cdkstack>',
|
|
27
|
+
'CDK stack in cdk output file. If not specified the first one is picked.'
|
|
28
|
+
)
|
|
29
|
+
.option('--open', 'Open browser', undefined, true)
|
|
30
|
+
.option(
|
|
31
|
+
'--port <p>',
|
|
32
|
+
`CDK stack in cdk output file. If not specified the first one is picked.`,
|
|
33
|
+
undefined,
|
|
34
|
+
'3456'
|
|
35
|
+
)
|
|
36
|
+
.action((_args, opt, _logger) => {
|
|
37
|
+
options = opt;
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
progam.parse(process.argv);
|
|
41
|
+
|
|
42
|
+
if (!options.ws && !options.cdkoutput) {
|
|
43
|
+
throw new Error('--ws or --cdkstack parameter not specified');
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (options.cdkoutput) {
|
|
47
|
+
const rawdata = fs.readFileSync(path.join(__dirname, options.cdkoutput));
|
|
48
|
+
cdkOutput = JSON.parse(rawdata.toString());
|
|
49
|
+
stackList = Object.keys(cdkOutput);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
http
|
|
53
|
+
.createServer((request, response) => {
|
|
54
|
+
void (async () => {
|
|
55
|
+
try {
|
|
56
|
+
//console.log('request ', request.url);
|
|
57
|
+
let filePath: string = `.${request.url}`;
|
|
58
|
+
//remove query parameters
|
|
59
|
+
filePath = filePath.split('?')[0];
|
|
60
|
+
let rootFolder = __dirname;
|
|
61
|
+
|
|
62
|
+
if (request.url?.startsWith('/webServerlessSpy.js')) {
|
|
63
|
+
//get transpiled TS to JS files
|
|
64
|
+
rootFolder = path.join(__dirname, `../lib/cli`);
|
|
65
|
+
} else if (request.url?.startsWith('/bootstrap/')) {
|
|
66
|
+
filePath = filePath.substring('/bootstrap/'.length);
|
|
67
|
+
const bootstrapFolder = await getInstalledPath('bootstrap', {
|
|
68
|
+
local: true,
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
rootFolder = bootstrapFolder;
|
|
72
|
+
} else if (request.url?.startsWith('/bootstrap-icons/')) {
|
|
73
|
+
filePath = filePath.substring('/bootstrap-icons/'.length);
|
|
74
|
+
const bootstrapFolder = await getInstalledPath('bootstrap-icons', {
|
|
75
|
+
local: true,
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
rootFolder = bootstrapFolder;
|
|
79
|
+
} else {
|
|
80
|
+
if (filePath === './') {
|
|
81
|
+
filePath = './index.html';
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
filePath = path.join(rootFolder, filePath);
|
|
86
|
+
//console.log(`${request.url} --> ${filePath}`);
|
|
87
|
+
|
|
88
|
+
const extname = String(path.extname(filePath)).toLowerCase();
|
|
89
|
+
const mimeTypes: any = {
|
|
90
|
+
'.html': 'text/html',
|
|
91
|
+
'.js': 'text/javascript',
|
|
92
|
+
'.css': 'text/css',
|
|
93
|
+
'.json': 'application/json',
|
|
94
|
+
'.png': 'image/png',
|
|
95
|
+
'.jpg': 'image/jpg',
|
|
96
|
+
'.gif': 'image/gif',
|
|
97
|
+
'.svg': 'image/svg+xml',
|
|
98
|
+
'.wav': 'audio/wav',
|
|
99
|
+
'.mp4': 'video/mp4',
|
|
100
|
+
'.woff': 'application/font-woff',
|
|
101
|
+
'.ttf': 'application/font-ttf',
|
|
102
|
+
'.eot': 'application/vnd.ms-fontobject',
|
|
103
|
+
'.otf': 'application/font-otf',
|
|
104
|
+
'.wasm': 'application/wasm',
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
const contentType = mimeTypes[extname] || 'application/octet-stream';
|
|
108
|
+
|
|
109
|
+
if (request.url === '/stackList') {
|
|
110
|
+
response.writeHead(200, { 'Content-Type': 'application/json' });
|
|
111
|
+
response.end(JSON.stringify(stackList), 'utf-8');
|
|
112
|
+
} else if (request.url?.match('^/wsUrl')) {
|
|
113
|
+
let wsUrl: string | undefined;
|
|
114
|
+
if (options.ws) {
|
|
115
|
+
wsUrl = options.ws;
|
|
116
|
+
} else {
|
|
117
|
+
// options.cdkoutput
|
|
118
|
+
const urlPaths = request.url.split('/');
|
|
119
|
+
let stack = urlPaths[2];
|
|
120
|
+
|
|
121
|
+
if (!stack) {
|
|
122
|
+
stack = options.cdkstack;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if (stack) {
|
|
126
|
+
wsUrl = cdkOutput[stack].ServerlessSpyWsUrl;
|
|
127
|
+
} else {
|
|
128
|
+
if (cdkOutput && cdkOutput[Object.keys(cdkOutput)[0]]) {
|
|
129
|
+
wsUrl =
|
|
130
|
+
cdkOutput[Object.keys(cdkOutput)[0]].ServerlessSpyWsUrl;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
if (!wsUrl) {
|
|
136
|
+
throw new Error('Missing websocket url');
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
//console.log(`WS URL: ${wsUrl}`);
|
|
140
|
+
const signedWSUrl = await getSignedWebSocketUrl(wsUrl);
|
|
141
|
+
response.writeHead(200, { 'Content-Type': 'text/html' });
|
|
142
|
+
response.end(signedWSUrl, 'utf-8');
|
|
143
|
+
} else {
|
|
144
|
+
try {
|
|
145
|
+
const content = await readFileAsync(filePath);
|
|
146
|
+
|
|
147
|
+
response.writeHead(200, { 'Content-Type': contentType });
|
|
148
|
+
response.end(content, 'utf-8');
|
|
149
|
+
} catch (error: any) {
|
|
150
|
+
if (error.code === 'ENOENT') {
|
|
151
|
+
response.writeHead(404, { 'Content-Type': 'text/html' });
|
|
152
|
+
response.end(
|
|
153
|
+
`No such file or directory ${request.url}`,
|
|
154
|
+
'utf-8'
|
|
155
|
+
);
|
|
156
|
+
} else {
|
|
157
|
+
response.writeHead(500);
|
|
158
|
+
response.end(`Error: ${error.code} ..\n`);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
} catch (err: any) {
|
|
163
|
+
response.writeHead(500, { 'Content-Type': 'text/html' });
|
|
164
|
+
response.end(err.message, 'utf-8');
|
|
165
|
+
}
|
|
166
|
+
})();
|
|
167
|
+
})
|
|
168
|
+
.listen(options.port);
|
|
169
|
+
|
|
170
|
+
console.log(
|
|
171
|
+
`ServerlessSoy console runing at http://localhost:${options.port}`
|
|
172
|
+
);
|
|
173
|
+
await open(`http://localhost:${options.port}`);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
run().catch(console.error);
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="43 30 408 70"
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<g transform="matrix(0.406173, 0, 0, 0.406173, -222.411926, 548.25647)" style="">
|
|
5
|
+
<path d="M 743.522 -1113.787 C 721.666 -1121.105 698.598 -1136.902 691.437 -1180.755 C 693.451 -1180.311 695.514 -1179.903 697.637 -1179.529 C 698.772 -1165.84 706.342 -1159.064 720.354 -1159.203 C 738.045 -1159.377 733.373 -1167.601 739.259 -1171.227 C 742.274 -1173.085 744.825 -1173.085 747.839 -1171.227 C 753.726 -1167.601 749.053 -1159.377 766.745 -1159.203 C 779.723 -1159.075 787.176 -1164.879 789.106 -1176.615 C 789.845 -1175.816 790.61 -1175.041 791.4 -1174.29 C 790.503 -1172.993 789.609 -1171.707 788.725 -1170.445 C 773.497 -1148.788 764.135 -1134.465 760.813 -1127.994 C 759.519 -1125.406 759.303 -1124.543 759.26 -1121.954 C 759.26 -1121.539 759.266 -1121.165 759.281 -1120.82 C 754.117 -1117.802 748.785 -1115.549 743.522 -1113.787 Z M 745.177 -1176.272 C 760.246 -1176.272 772.629 -1176.858 783.397 -1178.157 C 760.428 -1175.18 734.038 -1175.039 710.747 -1177.736 C 720.616 -1176.731 731.845 -1176.272 745.177 -1176.272 Z" style="fill-opacity: 1; fill-rule: evenodd; stroke: none;" id="path12"/>
|
|
6
|
+
<path d="M 725.521 -1263.976 C 740.95 -1254.2 749.382 -1254.056 761.761 -1263.401 C 764.811 -1265.557 768.219 -1266.707 770.731 -1266.419 C 775.97 -1265.926 782.005 -1256.839 786.9 -1242.531 C 780.691 -1234.855 776.69 -1225.319 775.863 -1214.89 C 761.003 -1212.815 713.584 -1213.826 703.813 -1216.246 C 697.713 -1217.827 696.995 -1218.546 696.995 -1222.572 C 697.175 -1228.753 703.096 -1250.462 706.863 -1257.506 C 708.298 -1260.525 710.989 -1264.119 712.604 -1265.557 C 716.551 -1269.007 717.806 -1268.864 725.521 -1263.976 Z" stroke="none" style=""/>
|
|
7
|
+
<path d="M 696.379 -1213.05 C 703.735 -1208.385 723.11 -1204.976 744.459 -1204.976 C 757.75 -1204.976 767.713 -1205.608 775.84 -1207.097 C 776.633 -1196.329 780.807 -1186.5 787.305 -1178.67 C 775.639 -1177.011 762.102 -1176.272 745.177 -1176.272 C 716.293 -1176.272 697.276 -1178.425 680.592 -1183.628 C 654.04 -1191.701 653.322 -1203.183 678.797 -1211.973 C 691.894 -1216.458 691.356 -1216.279 696.379 -1213.05 Z" stroke="none" style="" fill="#000000"/>
|
|
8
|
+
<path d="M 867.838 -1210.76 C 867.838 -1187.456 848.947 -1168.565 825.643 -1168.565 C 802.339 -1168.565 783.447 -1187.456 783.447 -1210.76 C 783.447 -1234.064 802.339 -1252.956 825.643 -1252.956 C 848.947 -1252.956 867.838 -1234.064 867.838 -1210.76 Z M 825.643 -1240.809 C 809.048 -1240.809 795.595 -1227.355 795.595 -1210.76 C 795.595 -1194.165 809.048 -1180.712 825.643 -1180.712 C 842.238 -1180.712 855.691 -1194.165 855.691 -1210.76 C 855.691 -1227.355 842.238 -1240.809 825.643 -1240.809 Z" style="stroke: rgb(0, 0, 0);"/>
|
|
9
|
+
<path d="M 796.994 -1148.01 C 793.218 -1140.063 786.568 -1126.904 784.37 -1122.987 C 781.834 -1118.45 780.763 -1117.126 778.763 -1116.027 C 777.41 -1115.266 776.988 -1115.181 774.846 -1115.181 C 772.789 -1115.21 772.225 -1115.322 770.957 -1115.999 C 768.843 -1117.069 767.097 -1118.788 766.195 -1120.648 C 765.547 -1121.916 765.406 -1122.592 765.406 -1124.198 C 765.434 -1125.889 765.575 -1126.453 766.42 -1128.143 C 768.59 -1132.371 774.705 -1141.726 784.652 -1155.872 C 790.964 -1164.889 798.121 -1175.794 799.08 -1177.907 C 799.087 -1177.924 799.094 -1177.94 799.101 -1177.956 C 802.159 -1175.479 805.571 -1173.42 809.248 -1171.868 C 807.382 -1168.821 800.896 -1156.246 796.994 -1148.01 Z" fill="#000000" stroke="none" style=""/>
|
|
10
|
+
<path d="M 827.07 -1210.811 C 826.919 -1210.595 826.791 -1210.417 826.668 -1210.238 C 824.704 -1207.348 822.741 -1204.458 820.779 -1201.569 C 818.954 -1198.881 817.126 -1196.195 815.297 -1193.511 C 815.235 -1193.426 815.141 -1193.37 815.036 -1193.359 C 812.453 -1193.382 809.872 -1193.409 807.29 -1193.443 C 807.262 -1193.443 807.232 -1193.452 807.176 -1193.46 C 807.197 -1193.514 807.221 -1193.567 807.248 -1193.618 C 809.05 -1196.41 810.851 -1199.203 812.652 -1201.994 C 814.25 -1204.468 815.848 -1206.941 817.448 -1209.413 C 819.221 -1212.161 820.993 -1214.91 822.763 -1217.661 C 823.025 -1218.067 823.297 -1218.465 823.545 -1218.878 C 823.608 -1218.989 823.628 -1219.12 823.598 -1219.244 C 823.121 -1220.765 822.634 -1222.283 822.149 -1223.8 C 821.94 -1224.45 821.723 -1225.096 821.528 -1225.75 C 821.465 -1225.96 821.361 -1226.024 821.146 -1226.023 C 819.524 -1226.016 817.911 -1226.018 816.293 -1226.018 C 815.986 -1226.018 815.985 -1226.018 815.985 -1226.322 C 815.985 -1228.311 815.985 -1230.299 815.979 -1232.289 C 815.979 -1232.51 816.052 -1232.56 816.26 -1232.56 C 819.517 -1232.554 822.775 -1232.554 826.033 -1232.56 C 826.19 -1232.58 826.336 -1232.48 826.376 -1232.328 C 828.094 -1228.007 829.812 -1223.687 831.53 -1219.37 C 833.535 -1214.334 835.539 -1209.298 837.543 -1204.261 C 838.165 -1202.698 838.792 -1201.136 839.408 -1199.569 C 839.481 -1199.378 839.558 -1199.341 839.751 -1199.401 C 841.458 -1199.929 843.169 -1200.442 844.876 -1200.971 C 845.091 -1201.038 845.169 -1200.993 845.236 -1200.78 C 845.818 -1198.95 846.412 -1197.124 847.001 -1195.297 C 847.021 -1195.234 847.037 -1195.17 847.061 -1195.082 C 846.938 -1195.037 846.824 -1194.987 846.706 -1194.954 C 842.825 -1193.724 838.946 -1192.493 835.069 -1191.262 C 834.884 -1191.204 834.829 -1191.267 834.767 -1191.423 C 833.583 -1194.423 832.396 -1197.423 831.206 -1200.421 C 830.042 -1203.356 828.878 -1206.292 827.713 -1209.228 C 827.538 -1209.669 827.366 -1210.112 827.192 -1210.553 C 827.164 -1210.628 827.126 -1210.694 827.07 -1210.811 Z" fill="#fa7e14" style=""/>
|
|
11
|
+
</g>
|
|
12
|
+
<path d="M 160.944 55.871 Q 159.605 55.709 156.235 55.424 Q 154.367 55.343 153.23 55.343 Q 151.769 55.343 150.47 55.424 L 150.47 49.131 L 151.485 49.131 Q 154.814 49.131 158.387 49.578 Q 159.523 49.74 160.944 50.025 L 160.944 55.871 Z M 154.245 69.147 Q 154.245 68.295 154.124 67.909 Q 154.002 67.523 153.718 67.381 Q 153.433 67.239 152.743 67.158 L 147.749 66.549 Q 143.324 66.062 141.781 63.666 Q 141.091 62.651 140.847 61.19 Q 140.604 59.728 140.604 57.617 Q 140.604 53.11 142.918 51.121 Q 144.786 49.497 148.764 49.213 L 148.764 57.373 Q 148.764 57.901 148.805 58.266 Q 148.846 58.632 148.967 58.835 Q 149.089 59.078 149.373 59.18 Q 149.658 59.281 150.226 59.322 L 155.829 60.012 Q 157.575 60.256 158.671 60.621 Q 159.767 60.987 160.538 61.758 Q 162.365 63.666 162.365 68.538 Q 162.365 73.694 160.092 75.765 Q 159.077 76.699 157.636 77.125 Q 156.194 77.551 154.245 77.673 Z M 152.094 77.714 Q 148.034 77.714 144.542 77.348 Q 142.471 77.145 141.416 76.942 L 141.416 71.015 Q 143.811 71.218 146.897 71.421 Q 148.846 71.502 149.658 71.502 Q 151.85 71.502 152.54 71.38 L 152.54 77.714 L 152.094 77.714 Z" style="white-space: pre;"/>
|
|
13
|
+
<path d="M 166.528 49.456 L 174.648 49.456 L 174.648 77.389 L 166.528 77.389 Z M 176.353 49.456 L 186.666 49.456 L 186.666 55.668 L 176.353 55.668 Z M 176.353 60.175 L 184.758 60.175 L 184.758 66.386 L 176.353 66.386 Z M 176.353 71.177 L 186.666 71.177 L 186.666 77.389 L 176.353 77.389 Z" style="white-space: pre;"/>
|
|
14
|
+
<path d="M 191.528 49.456 L 199.648 49.456 L 199.648 77.389 L 191.528 77.389 Z M 202.977 67.889 L 201.353 67.889 L 201.353 61.677 L 202.734 61.677 Q 203.992 61.677 204.642 61.575 Q 205.292 61.474 205.657 61.19 Q 205.982 60.905 206.104 60.337 Q 206.225 59.769 206.225 58.672 Q 206.225 57.576 206.104 56.987 Q 205.982 56.399 205.657 56.115 Q 205.332 55.83 204.703 55.749 Q 204.074 55.668 202.734 55.668 L 201.353 55.668 L 201.353 49.456 L 205.535 49.456 Q 208.418 49.456 210.204 50.025 Q 211.991 50.593 212.965 51.77 Q 213.858 52.867 214.163 54.491 Q 214.467 56.115 214.467 58.672 Q 214.467 61.961 213.858 63.747 Q 213.006 66.021 210.854 66.955 L 215.076 77.389 L 206.55 77.389 Z" style="white-space: pre;"/>
|
|
15
|
+
<path d="M 224.15 76.212 Q 223.622 74.588 223.216 73.045 L 221.917 68.579 Q 221.267 66.386 220.902 65.29 Q 220.577 64.072 220.374 63.463 L 216.233 49.456 L 224.515 49.456 L 232.107 77.389 L 224.515 77.389 Z M 230.524 65.006 L 234.625 49.456 L 242.745 49.456 L 238.603 63.463 L 237.101 68.579 Q 236.37 70.934 235.761 73.045 Q 235.355 74.588 234.828 76.212 L 234.462 77.389 L 233.894 77.389 Z" style="white-space: pre;"/>
|
|
16
|
+
<path d="M 245.575 49.456 L 253.695 49.456 L 253.695 77.389 L 245.575 77.389 Z M 255.4 49.456 L 265.713 49.456 L 265.713 55.668 L 255.4 55.668 Z M 255.4 60.175 L 263.804 60.175 L 263.804 66.386 L 255.4 66.386 Z M 255.4 71.177 L 265.713 71.177 L 265.713 77.389 L 255.4 77.389 Z" style="white-space: pre;"/>
|
|
17
|
+
<path d="M 270.575 49.456 L 278.695 49.456 L 278.695 77.389 L 270.575 77.389 Z M 282.024 67.889 L 280.4 67.889 L 280.4 61.677 L 281.781 61.677 Q 283.039 61.677 283.689 61.575 Q 284.338 61.474 284.704 61.19 Q 285.029 60.905 285.15 60.337 Q 285.272 59.769 285.272 58.672 Q 285.272 57.576 285.15 56.987 Q 285.029 56.399 284.704 56.115 Q 284.379 55.83 283.75 55.749 Q 283.12 55.668 281.781 55.668 L 280.4 55.668 L 280.4 49.456 L 284.582 49.456 Q 287.465 49.456 289.251 50.025 Q 291.037 50.593 292.012 51.77 Q 292.905 52.867 293.21 54.491 Q 293.514 56.115 293.514 58.672 Q 293.514 61.961 292.905 63.747 Q 292.052 66.021 289.901 66.955 L 294.123 77.389 L 285.597 77.389 Z" style="white-space: pre;"/>
|
|
18
|
+
<path d="M 297.919 49.456 L 306.039 49.456 L 306.039 77.389 L 297.919 77.389 Z M 307.744 70.852 L 316.432 70.852 L 316.432 77.389 L 307.744 77.389 Z" style="white-space: pre;"/>
|
|
19
|
+
<path d="M 319.872 49.456 L 327.992 49.456 L 327.992 77.389 L 319.872 77.389 Z M 329.697 49.456 L 340.009 49.456 L 340.009 55.668 L 329.697 55.668 Z M 329.697 60.175 L 338.101 60.175 L 338.101 66.386 L 329.697 66.386 Z M 329.697 71.177 L 340.009 71.177 L 340.009 77.389 L 329.697 77.389 Z" style="white-space: pre;"/>
|
|
20
|
+
<path d="M 364.116 55.871 Q 362.776 55.709 359.407 55.424 Q 357.539 55.343 356.402 55.343 Q 354.941 55.343 353.641 55.424 L 353.641 49.131 L 354.656 49.131 Q 357.986 49.131 361.558 49.578 Q 362.695 49.74 364.116 50.025 L 364.116 55.871 Z M 357.417 69.147 Q 357.417 68.295 357.295 67.909 Q 357.174 67.523 356.889 67.381 Q 356.605 67.239 355.915 67.158 L 350.921 66.549 Q 346.496 66.062 344.953 63.666 Q 344.263 62.651 344.019 61.19 Q 343.776 59.728 343.776 57.617 Q 343.776 53.11 346.09 51.121 Q 347.957 49.497 351.936 49.213 L 351.936 57.373 Q 351.936 57.901 351.977 58.266 Q 352.017 58.632 352.139 58.835 Q 352.261 59.078 352.545 59.18 Q 352.829 59.281 353.398 59.322 L 359.001 60.012 Q 360.746 60.256 361.843 60.621 Q 362.939 60.987 363.71 61.758 Q 365.537 63.666 365.537 68.538 Q 365.537 73.694 363.264 75.765 Q 362.249 76.699 360.807 77.125 Q 359.366 77.551 357.417 77.673 Z M 355.265 77.714 Q 351.205 77.714 347.714 77.348 Q 345.643 77.145 344.588 76.942 L 344.588 71.015 Q 346.983 71.218 350.069 71.421 Q 352.017 71.502 352.829 71.502 Q 355.022 71.502 355.712 71.38 L 355.712 77.714 L 355.265 77.714 Z" style="white-space: pre;"/>
|
|
21
|
+
<path d="M 388.944 55.871 Q 387.605 55.709 384.235 55.424 Q 382.367 55.343 381.23 55.343 Q 379.769 55.343 378.47 55.424 L 378.47 49.131 L 379.485 49.131 Q 382.814 49.131 386.387 49.578 Q 387.523 49.74 388.944 50.025 L 388.944 55.871 Z M 382.245 69.147 Q 382.245 68.295 382.124 67.909 Q 382.002 67.523 381.718 67.381 Q 381.433 67.239 380.743 67.158 L 375.749 66.549 Q 371.324 66.062 369.781 63.666 Q 369.091 62.651 368.847 61.19 Q 368.604 59.728 368.604 57.617 Q 368.604 53.11 370.918 51.121 Q 372.786 49.497 376.764 49.213 L 376.764 57.373 Q 376.764 57.901 376.805 58.266 Q 376.846 58.632 376.967 58.835 Q 377.089 59.078 377.373 59.18 Q 377.658 59.281 378.226 59.322 L 383.829 60.012 Q 385.575 60.256 386.671 60.621 Q 387.767 60.987 388.538 61.758 Q 390.365 63.666 390.365 68.538 Q 390.365 73.694 388.092 75.765 Q 387.077 76.699 385.636 77.125 Q 384.194 77.551 382.245 77.673 Z M 380.094 77.714 Q 376.034 77.714 372.542 77.348 Q 370.471 77.145 369.416 76.942 L 369.416 71.015 Q 371.811 71.218 374.897 71.421 Q 376.846 71.502 377.658 71.502 Q 379.85 71.502 380.54 71.38 L 380.54 77.714 L 380.094 77.714 Z" style="white-space: pre;"/>
|
|
22
|
+
<path d="M 392.499 63.369 Q 391.16 63.207 387.79 62.922 Q 385.922 62.841 384.785 62.841 Q 383.324 62.841 382.025 62.922 L 382.025 56.629 L 383.04 56.629 Q 386.369 56.629 389.942 57.076 Q 391.078 57.238 392.499 57.523 L 392.499 63.369 Z M 385.8 76.645 Q 385.8 75.793 385.679 75.407 Q 385.557 75.021 385.273 74.879 Q 384.988 74.737 384.298 74.656 L 379.304 74.047 Q 374.879 73.56 373.336 71.164 Q 372.646 70.149 372.402 68.688 Q 372.159 67.226 372.159 65.115 Q 372.159 60.608 374.473 58.619 Q 376.341 56.995 380.319 56.711 L 380.319 64.871 Q 380.319 65.399 380.36 65.764 Q 380.401 66.13 380.522 66.333 Q 380.644 66.576 380.928 66.678 Q 381.213 66.779 381.781 66.82 L 387.384 67.51 Q 389.13 67.754 390.226 68.119 Q 391.322 68.485 392.093 69.256 Q 393.92 71.164 393.92 76.036 Q 393.92 81.192 391.647 83.263 Q 390.632 84.197 389.19 84.623 Q 387.749 85.049 385.8 85.171 Z M 383.649 85.212 Q 379.589 85.212 376.097 84.846 Q 374.026 84.643 372.971 84.44 L 372.971 78.513 Q 375.366 78.716 378.452 78.919 Q 380.401 79 381.213 79 Q 383.405 79 384.095 78.878 L 384.095 85.212 L 383.649 85.212 Z" style="fill: rgb(247, 152, 31); white-space: pre;"/>
|
|
23
|
+
<path d="M 398.083 56.954 L 406.203 56.954 L 406.203 84.887 L 398.083 84.887 Z M 407.908 69.987 L 408.883 69.987 Q 410.182 69.987 410.811 69.885 Q 411.441 69.784 411.806 69.418 Q 412.171 69.094 412.273 68.464 Q 412.374 67.835 412.374 66.576 Q 412.374 65.318 412.273 64.689 Q 412.171 64.059 411.806 63.694 Q 411.441 63.369 410.791 63.268 Q 410.141 63.166 408.883 63.166 L 407.908 63.166 L 407.908 56.954 L 411.278 56.954 Q 414.283 56.954 416.17 57.543 Q 418.058 58.132 419.033 59.35 Q 419.967 60.486 420.291 62.212 Q 420.616 63.937 420.616 66.576 Q 420.616 69.094 420.312 70.758 Q 420.007 72.423 419.114 73.56 Q 418.099 74.859 416.211 75.529 Q 414.323 76.199 411.278 76.199 L 407.908 76.199 Z" style="fill: rgb(247, 152, 31); white-space: pre;"/>
|
|
24
|
+
<path d="M 430.182 75.671 L 429.817 74.859 L 428.761 72.788 L 427.746 70.636 Q 427.584 70.352 427.34 69.784 L 425.676 66.333 L 421.21 56.954 L 429.492 56.954 L 438.302 75.711 L 438.302 84.887 L 430.182 84.887 Z M 435.42 65.602 L 439.196 56.954 L 447.316 56.954 L 444.149 63.531 L 442.809 66.292 L 440.251 71.611 L 439.236 73.722 Z" style="fill: rgb(247, 152, 31); white-space: pre;"/>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
|
|
4
|
+
<title>Icon-Architecture/16/Arch_AWS-Lambda_16</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient x1="0%" y1="100%" x2="100%" y2="0%" id="linearGradient-1">
|
|
8
|
+
<stop stop-color="#C8511B" offset="0%"></stop>
|
|
9
|
+
<stop stop-color="#FF9900" offset="100%"></stop>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
</defs>
|
|
12
|
+
<g id="Icon-Architecture/16/Arch_AWS-Lambda_16" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
13
|
+
<g id="Icon-Architecture-BG/16/Compute" fill="url(#linearGradient-1)">
|
|
14
|
+
<rect id="Rectangle" x="0" y="0" width="24" height="24"></rect>
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M8.35471698,19 L5.33377354,19 L8.87677893,11.806 L10.3893141,14.832 L8.35471698,19 Z M9.3369363,10.435 C9.25026989,10.262 9.06971487,10.153 8.87265196,10.153 L8.87058847,10.153 C8.67352556,10.153 8.49297054,10.264 8.40733588,10.437 L4.05028527,19.285 C3.97393629,19.439 3.98528546,19.622 4.07917407,19.767 C4.17409443,19.912 4.33814156,20 4.51560135,20 L8.68074777,20 C8.8809059,20 9.06249267,19.889 9.14812734,19.714 L11.4282793,15.043 C11.4943109,14.907 11.4932791,14.748 11.4262158,14.611 L9.3369363,10.435 Z M18.968257,19 L15.7987426,19 L10.1747116,7.289 C10.0901087,7.113 9.90749017,7 9.70733203,7 L7.61598901,7 L7.6180525,5 L11.7883576,5 L17.386595,16.71 C17.471198,16.887 17.6548482,17 17.8550063,17 L18.968257,17 L18.968257,19 Z M19.4841285,16 L18.1841324,16 L12.5869267,4.29 C12.5023238,4.113 12.3186735,4 12.1174836,4 L7.10321275,4 C6.81845169,4 6.58734126,4.224 6.58734126,4.5 L6.58424603,7.5 C6.58424603,7.632 6.63892841,7.759 6.73591225,7.854 C6.83186434,7.947 6.9628957,8 7.10011752,8 L9.37820602,8 L15.002237,19.711 C15.0868399,19.887 15.2694584,20 15.4696166,20 L19.4841285,20 C19.7688896,20 20,19.776 20,19.5 L20,16.5 C20,16.224 19.7688896,16 19.4841285,16 L19.4841285,16 Z" id="AWS-Lambda_Icon_16_Squid" fill="#FFFFFF"></path>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
|
|
4
|
+
<title>Icon-Architecture/16/Arch_Amazon-DynamoDB_16</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient x1="0%" y1="100%" x2="100%" y2="0%" id="linearGradient-1">
|
|
8
|
+
<stop stop-color="#2E27AD" offset="0%"></stop>
|
|
9
|
+
<stop stop-color="#527FFF" offset="100%"></stop>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
</defs>
|
|
12
|
+
<g id="Icon-Architecture/16/Arch_Amazon-DynamoDB_16" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
13
|
+
<g id="Icon-Architecture-BG/16/Database" fill="url(#linearGradient-1)">
|
|
14
|
+
<rect id="Rectangle" x="0" y="0" width="24" height="24"></rect>
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M14.3871979,13.0634319 L15.4218955,9.61738691 C15.468467,9.46474602 15.4391067,9.29896386 15.3439388,9.17058378 C15.2487709,9.04220369 15.0979197,8.96739955 14.9379567,8.96739955 L14.2383715,8.96739955 L15.2507958,6.94566591 L17.7798316,6.94566591 L16.9881159,9.313116 C16.9374946,9.46676775 16.9628052,9.63659338 17.0589856,9.76800607 C17.153141,9.90042962 17.3060171,9.97826636 17.4690174,9.97826636 L18.095708,9.97826636 L14.3871979,13.0634319 Z M19.9697053,9.29997473 C19.8968108,9.10083397 19.7074875,8.96739955 19.4938659,8.96739955 L18.1706274,8.96739955 L18.9623432,6.59994946 C19.0129644,6.4462977 18.9876538,6.27647207 18.8914735,6.14404852 C18.7963056,6.01263584 18.644442,5.93479909 18.4814417,5.93479909 L14.9379567,5.93479909 C14.7455961,5.93479909 14.5714591,6.04296184 14.485403,6.21379833 L12.9667666,9.24639879 C12.88881,9.40308314 12.8958969,9.58908264 12.9880275,9.73768006 C13.0811706,9.88728835 13.2441709,9.97826636 13.4193203,9.97826636 L14.2576076,9.97826636 L12.9343691,14.3816022 C12.8705863,14.595906 12.9536051,14.8253728 13.1409036,14.9486985 C13.2259472,15.0042962 13.3221275,15.0326005 13.4193203,15.0326005 C13.5347366,15.0326005 13.6491406,14.9931766 13.743296,14.9153399 L19.8178417,9.86100581 C19.980842,9.72453879 20.0425999,9.50113723 19.9697053,9.29997473 L19.9697053,9.29997473 Z M14.8346894,17.6285064 C14.8346894,18.0904726 13.2775809,18.9891332 10.4235568,18.9891332 C7.56953281,18.9891332 6.01242428,18.0904726 6.01242428,17.6285064 L6.01242428,16.562042 C7.04914673,17.1786707 8.74293255,17.495072 10.4235568,17.495072 C12.1041811,17.495072 13.797967,17.1786707 14.8346894,16.562042 L14.8346894,17.6285064 Z M14.8346894,15.1235785 C14.8346894,15.5855446 13.2775809,16.4842052 10.4235568,16.4842052 C7.56953281,16.4842052 6.01242428,15.5855446 6.01242428,15.1235785 C6.01242428,15.0275461 6.08633125,14.9133182 6.21187186,14.7950468 C7.21214704,15.316654 8.74698225,15.6239575 10.4235568,15.6239575 C10.4438053,15.6239575 11.9948393,15.5916098 11.9948393,15.5916098 L11.9948393,14.580743 C11.9745908,14.580743 10.4235568,14.6130907 10.4235568,14.6130907 C8.77128043,14.6130907 7.24656947,14.2886025 6.44574187,13.7680061 C6.17542458,13.5900935 6.0134367,13.3980288 6.01242428,13.252464 L6.01242428,12.1859995 C7.04914673,12.8026283 8.74293255,13.1200404 10.4235568,13.1200404 C10.6898244,13.1200404 11.8348763,13.0391711 12.1922621,13.0138994 L12.213523,12.5054334 L12.1203799,12.0050543 C11.7761557,12.0293151 10.6786878,12.1091736 10.4235568,12.1091736 C7.56953281,12.1091736 6.01242428,11.2095021 6.01242428,10.747536 C6.01242428,10.6474602 6.09139337,10.5281779 6.22503337,10.405863 C7.01877401,10.7566338 8.57183285,11.1508719 12.3178027,11.1963609 L12.3299518,10.1854941 C9.27951741,10.1491029 7.3437622,9.88223402 6.44574187,9.39095274 C6.17542458,9.21304018 6.0134367,9.02097549 6.01242428,8.87541066 L6.01242428,7.80995704 C7.04914673,8.4265858 8.74293255,8.74298711 10.4235568,8.74298711 C10.5015135,8.74298711 12.480803,8.70659591 12.5587596,8.70356331 L12.5152254,7.69370735 C12.4079084,7.69775082 10.5187247,7.73212029 10.4235568,7.73212029 C7.56953281,7.73212029 6.01242428,6.83345969 6.01242428,6.37149356 C6.01242428,5.90952742 7.56953281,5.01086682 10.4235568,5.01086682 C11.7447705,5.01086682 13.0001766,5.21809452 13.8668118,5.5809957 L14.25862,4.64796563 C13.2573324,4.23047763 11.8956217,4 10.4235568,4 C7.72949585,4 5.00101242,4.81374779 5,6.36947182 L5,8.88147587 C5,8.88147587 5.09213061,9.46070255 5.40092001,9.80742987 C5.08808091,10.1551681 5,10.4938084 5,10.7465251 L5,13.2625727 C5.00101242,13.510235 5.09213061,13.8438211 5.39788274,14.1875158 C5.08808091,14.5342431 5,14.8718726 5,15.1235785 L5,17.6335608 C5.00506212,19.1872631 7.7315207,20 10.4235568,20 C13.1186303,20 15.8471137,19.1862522 15.8471137,17.6305282 L15.8471137,15.1235785 L14.8346894,15.1235785 Z" id="Amazon-DynamoDB_Icon_16_Squid" fill="#FFFFFF"></path>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
|
|
4
|
+
<title>Icon-Architecture/16/Arch_Amazon-EventBridge_16</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient x1="0%" y1="100%" x2="100%" y2="0%" id="linearGradient-1">
|
|
8
|
+
<stop stop-color="#B0084D" offset="0%"></stop>
|
|
9
|
+
<stop stop-color="#FF4F8B" offset="100%"></stop>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
</defs>
|
|
12
|
+
<g id="Icon-Architecture/16/Arch_Amazon-EventBridge_16" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
13
|
+
<g id="Icon-Architecture-BG/16/Application-Integration" fill="url(#linearGradient-1)">
|
|
14
|
+
<rect id="Rectangle" x="0" y="0" width="24" height="24"></rect>
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M6.5485452,16.461 C6.00062039,16.461 5.55592779,16.012 5.55592779,15.461 C5.55592779,14.91 6.00062039,14.461 6.5485452,14.461 C7.09647,14.461 7.5411626,14.91 7.5411626,15.461 C7.5411626,16.012 7.09647,16.461 6.5485452,16.461 L6.5485452,16.461 Z M7.89254917,16.924 C8.28463304,16.558 8.53378001,16.041 8.53378001,15.461 C8.53378001,14.358 7.6434022,13.461 6.5485452,13.461 C6.34406601,13.461 6.15050561,13.502 5.96389354,13.56 L5.06954526,11.998 L6.3718593,9.723 L5.51324524,9.223 L4.06700168,11.748 C3.97766611,11.902 3.97766611,12.093 4.06700168,12.248 L5.11818351,14.081 C4.77672312,14.44 4.56331038,14.925 4.56331038,15.461 C4.56331038,16.564 5.45368819,17.461 6.5485452,17.461 C6.71133445,17.461 6.86717538,17.436 7.01904585,17.398 L7.79527266,18.753 C7.88361561,18.908 8.04739748,19.003 8.22408338,19.003 L10.998449,19.003 L10.998449,18.003 L8.51194243,18.003 L7.89254917,16.924 Z M17.4504622,9.517 C16.90353,9.517 16.4578448,9.068 16.4578448,8.517 C16.4578448,7.965 16.90353,7.517 17.4504622,7.517 C17.998387,7.517 18.4430796,7.965 18.4430796,8.517 C18.4430796,9.068 17.998387,9.517 17.4504622,9.517 L17.4504622,9.517 Z M18.8818165,9.896 C19.2232769,9.537 19.435697,9.052 19.435697,8.517 C19.435697,7.414 18.5453192,6.517 17.4504622,6.517 C17.2876729,6.517 17.1328246,6.542 16.9809542,6.58 L16.20572,5.225 C16.117377,5.07 15.9535951,4.975 15.7759166,4.975 L13.001551,4.975 L13.001551,5.975 L15.4890502,5.975 L16.1074508,7.054 C15.715367,7.419 15.4652274,7.937 15.4652274,8.517 C15.4652274,9.62 16.3565978,10.517 17.4504622,10.517 C17.6549414,10.517 17.8494944,10.476 18.0351138,10.418 L18.9314474,11.981 L17.6271481,14.254 L18.4857621,14.754 L19.9329983,12.231 C20.0223339,12.076 20.0223339,11.885 19.9329983,11.731 L18.8818165,9.896 Z M15.9794032,19 C15.4314784,19 14.9867858,18.551 14.9867858,18 C14.9867858,17.448 15.4314784,17 15.9794032,17 C16.527328,17 16.9720206,17.448 16.9720206,18 C16.9720206,18.551 16.527328,19 15.9794032,19 L15.9794032,19 Z M12.9836839,14.1 L10.7949625,14.1 L9.59091755,12 L10.7066195,10.053 L10.9607296,9.899 L13.2010671,9.899 L14.405112,12 L13.3162107,13.898 L12.9836839,14.1 Z M8.03846392,7 C7.49053912,7 7.04584652,6.551 7.04584652,6 C7.04584652,5.448 7.49053912,5 8.03846392,5 C8.58638873,5 9.03108133,5.448 9.03108133,6 C9.03108133,6.551 8.58638873,7 8.03846392,7 L8.03846392,7 Z M15.9794032,16 C15.6577951,16 15.3570321,16.085 15.0880328,16.222 L14.0914449,14.547 L15.4076556,12.25 C15.4969911,12.095 15.4969911,11.904 15.4076556,11.75 L13.9177368,9.149 C13.8293939,8.995 13.665612,8.899 13.4879335,8.899 L10.7264719,8.899 L9.67231218,7.13 C9.89366586,6.808 10.0236987,6.419 10.0236987,6 C10.0236987,4.897 9.13332093,4 8.03846392,4 C6.94360692,4 6.05322911,4.897 6.05322911,6 C6.05322911,7.103 6.94360692,8 8.03846392,8 C8.35113841,8 8.64396054,7.919 8.90799677,7.789 L9.9016068,9.459 L8.58936659,11.75 C8.50003102,11.904 8.50003102,12.095 8.58936659,12.25 L10.0792853,14.85 C10.1676283,15.004 10.3314101,15.1 10.508096,15.1 L13.2626093,15.1 L14.3286804,16.891 C14.1182455,17.209 13.9941684,17.589 13.9941684,18 C13.9941684,19.103 14.8845462,20 15.9794032,20 C17.0742602,20 17.964638,19.103 17.964638,18 C17.964638,16.897 17.0742602,16 15.9794032,16 L15.9794032,16 Z" id="Amazon-EventBridge_Icon_16_Squid" fill="#FFFFFF"></path>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
|
|
4
|
+
<title>Icon-Architecture/16/Arch_AWS-Simple-Notification-Service_16</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient x1="0%" y1="100%" x2="100%" y2="0%" id="linearGradient-1">
|
|
8
|
+
<stop stop-color="#B0084D" offset="0%"></stop>
|
|
9
|
+
<stop stop-color="#FF4F8B" offset="100%"></stop>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
</defs>
|
|
12
|
+
<g id="Icon-Architecture/16/Arch_AWS-Simple-Notification-Service_16" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
13
|
+
<g id="Icon-Architecture-BG/16/Application-Integration" fill="url(#linearGradient-1)">
|
|
14
|
+
<rect id="Rectangle" x="0" y="0" width="24" height="24"></rect>
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M6.4951189,11.5607705 C6.4951189,11.9743992 6.15969962,12.3097195 5.74818523,12.3097195 C5.33667084,12.3097195 5.00125156,11.9743992 5.00125156,11.5607705 C5.00125156,11.1471419 5.33667084,10.8118215 5.74818523,10.8118215 C6.15969962,10.8118215 6.4951189,11.1471419 6.4951189,11.5607705 L6.4951189,11.5607705 Z M12.4395494,18.9960469 C9.28861076,18.9960469 6.52015019,16.6006149 5.7261577,13.3116647 C5.73316646,13.3116647 5.74017522,13.3136726 5.74818523,13.3136726 C6.71239049,13.3136726 7.49637046,12.5275773 7.49637046,11.5607705 C7.49637046,10.6441614 6.78948686,9.89822426 5.89436796,9.82292778 C6.84155194,6.99579595 9.47083855,5.00395307 12.4395494,5.00395307 C13.7481852,5.00395307 14.8715895,5.23486227 15.7787234,5.68965301 L16.2272841,4.79111502 C15.1789737,4.26604756 13.9043805,4 12.4395494,4 C8.82202753,4 5.62302879,6.56610403 4.74593242,10.1291335 C4.29637046,10.4463826 4,10.9684382 4,11.5607705 C4,12.0958775 4.24530663,12.5697434 4.62377972,12.8910083 C5.29461827,16.9570183 8.61677096,20 12.4395494,20 C13.58398,20 14.9296621,19.6395808 16.2282854,18.9850035 L15.7777222,18.0874694 C14.6162703,18.673778 13.4307885,18.9960469 12.4395494,18.9960469 L12.4395494,18.9960469 Z M8.75994994,9.96046935 L12.2392991,9.96046935 L11.0217772,12.8056723 C10.9947434,12.8689214 10.9807259,12.9361862 10.9807259,13.0034511 L10.9807259,14.7061555 L10.0455569,15.1910648 L10.0455569,13.0034511 C10.0455569,12.9341783 10.0305382,12.8659095 10.0035044,12.8016565 L8.75994994,9.96046935 Z M9.28460576,16.4450022 C9.36370463,16.4931919 9.45481852,16.5172868 9.54493116,16.5172868 C9.62403004,16.5172868 9.70212766,16.4992157 9.77421777,16.4620694 L11.7116395,15.4581163 C11.8778473,15.3717764 11.9819775,15.2001004 11.9819775,15.0123612 L11.9819775,13.1068583 L13.4588235,9.65727552 C13.5249061,9.5016628 13.5098874,9.32295915 13.4177722,9.18240572 C13.3246558,9.04185229 13.1674593,8.95651628 12.9992491,8.95651628 L7.99299124,8.95651628 C7.82377972,8.95651628 7.66658323,9.04285625 7.57346683,9.18441363 C7.48135169,9.32597101 7.46733417,9.50567861 7.53441802,9.66028738 L9.04430538,13.1088662 L9.04430538,16.0153103 C9.04430538,16.1910021 9.13541927,16.3536425 9.28460576,16.4450022 L9.28460576,16.4450022 Z M18.2518148,14.823618 C18.6633292,14.823618 18.9987484,15.1589383 18.9987484,15.572567 C18.9987484,15.9861956 18.6633292,16.3225199 18.2518148,16.3225199 C17.8403004,16.3225199 17.5048811,15.9861956 17.5048811,15.572567 C17.5048811,15.1589383 17.8403004,14.823618 18.2518148,14.823618 L18.2518148,14.823618 Z M18.2518148,6.75384326 C18.6633292,6.75384326 18.9987484,7.09016753 18.9987484,7.50279224 C18.9987484,7.91642091 18.6633292,8.25274518 18.2518148,8.25274518 C17.8403004,8.25274518 17.5048811,7.91642091 17.5048811,7.50279224 C17.5048811,7.09016753 17.8403004,6.75384326 18.2518148,6.75384326 L18.2518148,6.75384326 Z M18.2518148,10.8118215 C18.6633292,10.8118215 18.9987484,11.1471419 18.9987484,11.5607705 C18.9987484,11.9743992 18.6633292,12.3097195 18.2518148,12.3097195 C17.8403004,12.3097195 17.5048811,11.9743992 17.5048811,11.5607705 C17.5048811,11.1471419 17.8403004,10.8118215 18.2518148,10.8118215 L18.2518148,10.8118215 Z M16.0030038,12.0627471 L16.5857322,12.0627471 C16.8030038,12.7835854 17.4628285,13.3136726 18.2518148,13.3136726 C19.21602,13.3136726 20,12.5275773 20,11.5607705 C20,10.5939637 19.21602,9.80786848 18.2518148,9.80786848 C17.4628285,9.80786848 16.8030038,10.3379557 16.5857322,11.058794 L16.0030038,11.058794 L16.0030038,8.00476878 L16.5857322,8.00476878 C16.8030038,8.72661103 17.4628285,9.25669825 18.2518148,9.25669825 C19.21602,9.25669825 20,8.46959905 20,7.50279224 C20,6.5369894 19.21602,5.74989019 18.2518148,5.74989019 C17.4628285,5.74989019 16.8030038,6.27997741 16.5857322,7.00081571 L15.502378,7.00081571 C15.2260325,7.00081571 15.0017522,7.2257012 15.0017522,7.50279224 L15.0017522,11.058794 L14.0005006,11.058794 L14.0005006,12.0627471 L15.0017522,12.0627471 L15.0017522,15.572567 C15.0017522,15.849658 15.2260325,16.0745435 15.502378,16.0745435 L16.5857322,16.0745435 C16.8030038,16.7953818 17.4628285,17.326473 18.2518148,17.326473 C19.21602,17.326473 20,16.5393738 20,15.572567 C20,14.6057602 19.21602,13.8196649 18.2518148,13.8196649 C17.4628285,13.8196649 16.8030038,14.3497521 16.5857322,15.0705904 L16.0030038,15.0705904 L16.0030038,12.0627471 Z" id="AWS-Simple-Notification-Service_Icon_16_Squid" fill="#FFFFFF"></path>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
|
|
4
|
+
<title>Icon-Architecture/16/Arch_AWS-Simple-Queue-Service_16</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient x1="0%" y1="100%" x2="100%" y2="0%" id="linearGradient-1">
|
|
8
|
+
<stop stop-color="#B0084D" offset="0%"></stop>
|
|
9
|
+
<stop stop-color="#FF4F8B" offset="100%"></stop>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
</defs>
|
|
12
|
+
<g id="Icon-Architecture/16/Arch_AWS-Simple-Queue-Service_16" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
13
|
+
<g id="Icon-Architecture-BG/16/Application-Integration" fill="url(#linearGradient-1)">
|
|
14
|
+
<rect id="Rectangle" x="0" y="0" width="24" height="24"></rect>
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M8.00538392,12.9850432 L9.00704291,12.9850432 L9.00704291,11.9942745 L8.00538392,11.9942745 L8.00538392,12.9850432 Z M15.0169969,12.986034 L16.0186559,12.986034 L16.0186559,11.9952653 L15.0169969,11.9952653 L15.0169969,12.986034 Z M12.7903089,11.2234565 C12.2824678,11.3522564 11.741572,11.3522564 11.2337309,11.2234565 C11.4350643,12.005173 11.4350643,12.8780402 11.2337309,13.6597567 C11.4881523,13.5953567 11.7485836,13.5626614 12.0120199,13.5626614 C12.2754562,13.5626614 12.5358876,13.5953567 12.7903089,13.6597567 C12.5889755,12.8780402 12.5889755,12.005173 12.7903089,11.2234565 L12.7903089,11.2234565 Z M14.3699252,10.3149216 C13.4053276,11.2690318 13.4053276,13.6141813 14.3699252,14.5682916 C14.4670861,14.6653869 14.5161674,14.7922053 14.5161674,14.9190237 C14.5161674,15.0458421 14.4670861,15.1726605 14.3699252,15.2687651 C14.2717626,15.3658604 14.1435503,15.4144081 14.0153379,15.4144081 C13.8871256,15.4144081 13.7589132,15.3658604 13.6617523,15.2687651 C12.7282061,14.3463594 11.2958337,14.3463594 10.3632892,15.2687651 C10.166964,15.4629557 9.85043979,15.4629557 9.65511629,15.2687651 C9.5569537,15.1726605 9.50787241,15.0458421 9.50787241,14.9190237 C9.50787241,14.7922053 9.5569537,14.6653869 9.65511629,14.5682916 C10.6187122,13.6141813 10.6187122,11.2690318 9.65511629,10.3149216 C9.5569537,10.218817 9.50787241,10.0919986 9.50787241,9.96518021 C9.50787241,9.83836181 9.5569537,9.71154342 9.65511629,9.61444809 C9.85043979,9.42124819 10.166964,9.42124819 10.3632892,9.61444809 C11.2958337,10.5378445 12.7282061,10.5378445 13.6617523,9.61444809 C13.8570758,9.42124819 14.1736,9.42124819 14.3699252,9.61444809 C14.4670861,9.71154342 14.5161674,9.83836181 14.5161674,9.96518021 C14.5161674,10.0919986 14.4670861,10.218817 14.3699252,10.3149216 L14.3699252,10.3149216 Z M18.8162895,12.0794806 C18.6980937,11.9635607 18.5418349,11.8991607 18.3755595,11.8991607 C18.2082825,11.8991607 18.051022,11.9635607 17.9328262,12.0794806 C17.6894231,12.3212282 17.6894231,12.7125818 17.9328262,12.9533386 C18.1692178,13.1851785 18.5788963,13.18716 18.8162895,12.9533386 C19.0596926,12.7125818 19.0596926,12.3212282 18.8162895,12.0794806 L18.8162895,12.0794806 Z M19.5244624,13.6538121 C19.2169531,13.9569873 18.8092779,14.1244272 18.3755595,14.1244272 C17.9398379,14.1244272 17.5321626,13.9569873 17.2246533,13.6538121 C16.5906032,13.0266555 16.5906032,12.0061637 17.2246533,11.3790071 C17.8376686,10.7726567 18.9094438,10.7716659 19.5244624,11.3790071 C20.1585125,12.0061637 20.1585125,13.0266555 19.5244624,13.6538121 L19.5244624,13.6538121 Z M6.0661721,12.0854252 C5.94797634,11.9695053 5.79171753,11.9051053 5.62544214,11.9051053 C5.45816509,11.9051053 5.30190628,11.9695053 5.18371052,12.0854252 C4.93930573,12.326182 4.93930573,12.7185264 5.18371052,12.9592832 C5.42010204,13.1911231 5.82978057,13.1931046 6.0661721,12.9592832 C6.31057689,12.7185264 6.31057689,12.326182 6.0661721,12.0854252 L6.0661721,12.0854252 Z M6.77534667,13.6597567 C6.46783736,13.9629319 6.06016214,14.1303718 5.62544214,14.1303718 C5.18972047,14.1303718 4.78204526,13.9629319 4.47553761,13.6597567 C3.84148746,13.0326001 3.84148746,12.0121083 4.47553761,11.3849518 C5.08955457,10.7776105 6.15932638,10.7776105 6.77534667,11.3849518 C7.40839515,12.0121083 7.40839515,13.0326001 6.77534667,13.6597567 L6.77534667,13.6597567 Z M15.8844336,16.4081491 C13.7248568,18.5432556 10.2130403,18.5422649 8.05546687,16.4081491 C7.47650797,15.8354848 7.10889911,15.3371281 6.86148934,14.7922053 L5.94797634,15.196439 C6.24647072,15.8562909 6.67818575,16.4467891 7.34729396,17.1086225 C8.6214042,18.3698711 10.2951764,19 11.9699502,19 C13.6437224,19 15.3184963,18.3698711 16.5926065,17.1086225 C17.1044543,16.6033305 17.6753999,15.9821185 18.0400038,15.2013928 L17.1294957,14.7862607 C16.8330047,15.423325 16.356215,15.9424878 15.8844336,16.4081491 L15.8844336,16.4081491 Z M6.8795192,10.1722509 L5.97001283,9.75711878 C6.26750556,9.12104527 6.70523054,8.52856559 7.34929727,7.89051055 C9.8965161,5.36999497 14.0433844,5.36999497 16.5906032,7.88951978 C17.0563746,8.35121799 17.6393402,8.97936535 18.0139606,9.7501834 L17.1124675,10.1791862 C16.8670611,9.67587575 16.4994522,9.20129754 15.8824303,8.58999325 C13.7238551,6.45686824 10.214042,6.45884977 8.05747018,8.58999325 C7.49153285,9.15076834 7.12893229,9.63822654 6.8795192,10.1722509 L6.8795192,10.1722509 Z" id="AWS-Simple-Queue-Service_Icon_16_Squid" fill="#FFFFFF"></path>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Icon-Architecture/16/Arch_Amazon-Simple-Storage-Service_16</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient x1="0%" y1="100%" x2="100%" y2="0%" id="linearGradient-1">
|
|
6
|
+
<stop stop-color="#1B660F" offset="0%"></stop>
|
|
7
|
+
<stop stop-color="#6CAE3E" offset="100%"></stop>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
</defs>
|
|
10
|
+
<g id="Icon-Architecture/16/Arch_Amazon-Simple-Storage-Service_16" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
11
|
+
<g id="Rectangle" fill="url(#linearGradient-1)">
|
|
12
|
+
<rect x="0" y="0" width="24" height="24"></rect>
|
|
13
|
+
</g>
|
|
14
|
+
<g id="Icon-Service/16/Amazon-Simple-Storage-Service_16" transform="translate(4.000000, 4.000000)" fill="#FFFFFF">
|
|
15
|
+
<path d="M13.9082,9.0508 L13.9492,8.8068 C14.2152,8.9598 14.4192,9.0888 14.5642,9.1918 C14.3942,9.1638 14.1662,9.1138 13.9082,9.0508 L13.9082,9.0508 Z M12.0492,14.0928 C11.9992,14.3958 10.9792,14.9998 7.4782,14.9998 C4.0442,14.9998 3.0432,14.3968 2.9932,14.0898 L1.2592,3.9648 C2.6962,4.6678 5.1522,4.9998 7.5002,4.9998 C9.8502,4.9998 12.3112,4.6658 13.7482,3.9618 L12.9402,8.7748 C11.3852,8.2668 9.5682,7.3978 8.6442,6.9548 L8.4742,6.8728 C8.4092,6.3838 8.0072,5.9998 7.5002,5.9998 C6.9482,5.9998 6.5002,6.4488 6.5002,6.9998 C6.5002,7.5508 6.9482,7.9998 7.5002,7.9998 C7.7212,7.9998 7.9142,7.9138 8.0792,7.7928 L8.2132,7.8568 C9.1842,8.3228 11.1192,9.2468 12.7732,9.7698 L12.0492,14.0928 Z M7.5002,0.9998 C11.7612,0.9998 13.9712,2.0368 14.0002,2.4898 L14.0002,2.5188 C13.9462,2.9768 11.7352,3.9998 7.5002,3.9998 C3.2702,3.9998 1.0592,2.9798 1.0002,2.5208 L1.0002,2.4888 C1.0302,2.0348 3.2422,0.9998 7.5002,0.9998 L7.5002,0.9998 Z M15.0002,2.4998 C15.0002,0.7818 11.1122,-0.0002 7.5002,-0.0002 C3.8872,-0.0002 0.0002,0.7818 0.0002,2.4998 L0.0472,2.8158 L2.0072,14.2548 C2.1972,15.4248 3.9362,15.9998 7.4782,15.9998 C12.2072,15.9998 12.9142,14.9908 13.0352,14.2568 L13.7422,10.0428 C14.3202,10.1828 14.7312,10.2388 15.0232,10.2388 C15.4852,10.2388 15.6612,10.1038 15.7832,9.9598 C15.9292,9.7858 15.9852,9.5668 15.9422,9.3428 C15.8492,8.8678 15.3302,8.4158 14.1252,7.7598 L14.9542,2.8138 L15.0002,2.4998 Z" id="Amazon-Simple-Storage-Service-Icon_16_Squid"></path>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<title>ServerlessSpy</title>
|
|
6
|
+
<meta charset="utf-8">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
+
|
|
9
|
+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
10
|
+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
11
|
+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
12
|
+
<link rel="manifest" href="/site.webmanifest">
|
|
13
|
+
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
|
14
|
+
<meta name="msapplication-TileColor" content="#da532c">
|
|
15
|
+
<meta name="theme-color" content="#ffffff">
|
|
16
|
+
|
|
17
|
+
<link href="bootstrap/dist/css/bootstrap.css" rel="stylesheet">
|
|
18
|
+
<link rel="stylesheet" href="bootstrap-icons/font/bootstrap-icons.css">
|
|
19
|
+
<script src="bootstrap/dist/js/bootstrap.bundle.js"></script>
|
|
20
|
+
<link rel="stylesheet" href="style.css">
|
|
21
|
+
</link>
|
|
22
|
+
<script src="webServerlessSpy.js"></script>
|
|
23
|
+
</head>
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
<body>
|
|
27
|
+
<div class="container-fluid">
|
|
28
|
+
<div class="d-flex justify-content-center">
|
|
29
|
+
<img class="logo" src="full_logo.svg">
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
<div class="mb-1 row" id="stackListContainer">
|
|
33
|
+
<label for="stackList" class="col col-form-label w-auto">Stack:</label>
|
|
34
|
+
<select class="col form-select w-auto" id="stackList">
|
|
35
|
+
</select>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
<div class="table-responsive">
|
|
39
|
+
<table class="table table-striped table-bordered">
|
|
40
|
+
<thead>
|
|
41
|
+
<tr>
|
|
42
|
+
<th class="col-time" scope="col">
|
|
43
|
+
</th>
|
|
44
|
+
<th class="col-servicekey" scope="col">
|
|
45
|
+
|
|
46
|
+
<div class="input-group input-group-sm" data-bs-toggle="tooltip" data-bs-html="true"
|
|
47
|
+
title="<p class='text-start'>Examples:</p><p class='text-start font-monospace'>MyFunction</p><p class='text-start font-monospace'>^Function</p><p class='text-start font-monospace'>^Function.*Response$</p>">
|
|
48
|
+
|
|
49
|
+
<div class="input-group-text"><i class="bi bi-funnel-fill"></i></div>
|
|
50
|
+
<input type="text" class="form-control" id="serviceKeyFilter" placeholder="Filter (regex)">
|
|
51
|
+
</div>
|
|
52
|
+
|
|
53
|
+
</th>
|
|
54
|
+
<th class="col-data" scope="col">
|
|
55
|
+
<div class="input-group input-group-sm">
|
|
56
|
+
<div class="input-group-text"><i class="bi bi-funnel-fill"></i></div>
|
|
57
|
+
<input type="text" class="form-control" id="dataFilter" placeholder="Filter (regex)">
|
|
58
|
+
</div>
|
|
59
|
+
</th>
|
|
60
|
+
</tr>
|
|
61
|
+
</thead>
|
|
62
|
+
<tbody id="tableBody" class="log">
|
|
63
|
+
|
|
64
|
+
</tbody>
|
|
65
|
+
</table>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<div id="detailsModal" class="modal fade" tabindex="-1">
|
|
72
|
+
<div class="modal-dialog modal-dialog-scrollable modal-xl">
|
|
73
|
+
<div class="modal-content">
|
|
74
|
+
<div class="modal-header">
|
|
75
|
+
<h5 class="modal-title">Details</h5>
|
|
76
|
+
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
77
|
+
</div>
|
|
78
|
+
<div class="modal-body">
|
|
79
|
+
<p>Time:
|
|
80
|
+
<span class="fw-bold" id="time">2022-09-19T10:12:15.489Z</span>
|
|
81
|
+
</p>
|
|
82
|
+
<p>Service key:
|
|
83
|
+
<span class="fw-bold" id="serviceKey">Function#ToSnsAndDynamoDb#Response</span>
|
|
84
|
+
</p>
|
|
85
|
+
<p>Data:</p>
|
|
86
|
+
<pre id="data"></pre>
|
|
87
|
+
</div>
|
|
88
|
+
<div class="modal-footer">
|
|
89
|
+
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Close</button>
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
</div>
|
|
93
|
+
</div>
|
|
94
|
+
|
|
95
|
+
<div id="errorModal" class="modal fade" tabindex="-1">
|
|
96
|
+
<div class="modal-dialog">
|
|
97
|
+
<div class="modal-content">
|
|
98
|
+
<div class="modal-header">
|
|
99
|
+
<h5 class="modal-title">Error</h5>
|
|
100
|
+
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
101
|
+
</div>
|
|
102
|
+
<div class="modal-body" id="errorContent">
|
|
103
|
+
</div>
|
|
104
|
+
<div class="modal-footer">
|
|
105
|
+
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Close</button>
|
|
106
|
+
</div>
|
|
107
|
+
</div>
|
|
108
|
+
</div>
|
|
109
|
+
</div>
|
|
110
|
+
</body>
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
</html>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "webServerlessSpy.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"author": "",
|
|
11
|
+
"license": "ISC",
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"bootstrap": "^5.2.1",
|
|
14
|
+
"bootstrap-icons": "^1.9.1",
|
|
15
|
+
"caporal": "^1.4.0",
|
|
16
|
+
"get-installed-path": "^4.0.8",
|
|
17
|
+
"json-format-highlight": "^1.0.4",
|
|
18
|
+
"open": "^8.4.0"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@types/get-installed-path": "^4.0.1"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
<metadata>
|
|
8
|
+
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
|
9
|
+
</metadata>
|
|
10
|
+
<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
|
|
11
|
+
fill="#000000" stroke="none">
|
|
12
|
+
<path d="M1995 5855 c-61 -41 -83 -63 -143 -144 -94 -126 -165 -286 -249 -561
|
|
13
|
+
-19 -63 -36 -122 -38 -130 -2 -8 -20 -76 -39 -150 -19 -74 -38 -151 -41 -170
|
|
14
|
+
-3 -19 -8 -42 -10 -50 -11 -38 -17 -81 -22 -161 -7 -102 8 -139 65 -168 111
|
|
15
|
+
-56 286 -81 737 -106 490 -27 1328 -22 1593 10 l62 7 1 36 c0 21 2 46 5 57 2
|
|
16
|
+
11 6 34 8 50 31 216 149 484 304 690 l22 30 -21 55 c-75 198 -136 327 -212
|
|
17
|
+
450 -26 41 -73 101 -104 134 -136 141 -254 136 -483 -18 -219 -148 -306 -180
|
|
18
|
+
-490 -180 -110 0 -135 3 -210 28 -99 33 -220 92 -351 172 -90 54 -112 68 -196
|
|
19
|
+
115 -21 12 -63 24 -93 26 -48 4 -60 1 -95 -22z"/>
|
|
20
|
+
<path d="M5298 5425 c-2 -2 -22 -5 -45 -8 -139 -19 -320 -83 -451 -158 -581
|
|
21
|
+
-334 -823 -1022 -582 -1648 62 -161 170 -321 308 -458 l93 -92 -32 -53 c-67
|
|
22
|
+
-111 -262 -402 -429 -643 -239 -344 -428 -626 -476 -710 -6 -11 -25 -44 -43
|
|
23
|
+
-73 -51 -87 -60 -116 -57 -189 4 -79 20 -116 80 -177 64 -65 123 -89 216 -89
|
|
24
|
+
71 0 81 2 131 36 86 57 134 140 430 737 334 675 470 942 490 964 4 5 51 -5
|
|
25
|
+
106 -22 152 -49 253 -65 398 -66 155 -1 224 7 348 38 166 42 323 117 467 221
|
|
26
|
+
87 64 233 214 297 306 98 143 186 347 212 496 6 32 13 74 17 93 23 128 4 378
|
|
27
|
+
-41 533 -45 157 -137 344 -220 446 -230 283 -499 445 -840 505 -66 12 -367 20
|
|
28
|
+
-377 11z m264 -409 c256 -26 505 -178 657 -399 48 -71 105 -200 131 -297 17
|
|
29
|
+
-65 23 -113 23 -205 0 -66 -2 -133 -6 -150 -3 -16 -9 -43 -12 -60 -59 -303
|
|
30
|
+
-312 -579 -621 -680 -254 -82 -559 -39 -784 110 -332 221 -486 630 -380 1012
|
|
31
|
+
73 265 279 500 528 602 59 24 117 43 124 40 2 0 17 5 33 11 17 6 73 14 125 17
|
|
32
|
+
52 3 97 7 99 9 2 2 7 2 10 0 3 -2 36 -7 73 -10z"/>
|
|
33
|
+
<path d="M5195 4780 l-40 -5 0 -97 c0 -80 3 -98 15 -99 8 -1 47 -2 85 -3 l70
|
|
34
|
+
-1 32 -95 c17 -52 32 -102 32 -111 1 -8 -48 -92 -108 -185 -60 -93 -172 -265
|
|
35
|
+
-248 -383 -76 -118 -141 -219 -145 -225 -5 -9 26 -13 117 -14 l124 -3 103 152
|
|
36
|
+
c57 83 109 157 116 164 6 8 12 16 12 18 0 3 31 51 70 107 l69 103 19 -44 c10
|
|
37
|
+
-24 63 -156 117 -294 54 -137 103 -255 108 -262 6 -8 16 -9 30 -3 12 5 95 32
|
|
38
|
+
184 60 l162 52 -5 28 c-15 72 -50 157 -64 154 -8 -2 -48 -12 -88 -24 -41 -12
|
|
39
|
+
-75 -20 -76 -18 -1 2 -82 206 -181 453 -98 248 -189 478 -203 512 l-25 62
|
|
40
|
+
-121 3 c-67 2 -139 1 -161 -2z"/>
|
|
41
|
+
<path d="M1165 4230 c-274 -71 -632 -223 -725 -307 -95 -86 -126 -133 -134
|
|
42
|
+
-200 -20 -152 156 -298 509 -426 82 -29 290 -89 391 -113 l72 -17 7 -51 c5
|
|
43
|
+
-28 9 -53 10 -56 2 -9 17 -84 21 -110 13 -70 78 -301 120 -420 59 -169 141
|
|
44
|
+
-350 212 -465 17 -27 39 -63 48 -80 77 -136 282 -367 444 -500 163 -133 444
|
|
45
|
+
-290 662 -369 l97 -36 78 29 c110 41 270 112 346 154 l64 36 5 70 c6 83 32
|
|
46
|
+
143 143 327 80 133 460 705 610 919 46 66 120 172 164 236 l80 116 -34 33
|
|
47
|
+
c-25 24 -36 29 -39 19 -2 -8 -10 -36 -16 -64 -24 -97 -83 -206 -146 -271 -57
|
|
48
|
+
-59 -150 -124 -177 -124 -7 0 -17 -4 -23 -9 -10 -10 -117 -37 -183 -46 -61 -9
|
|
49
|
+
-225 -9 -291 -1 -182 24 -263 77 -335 220 -63 126 -144 188 -245 188 -103 -1
|
|
50
|
+
-178 -56 -241 -177 -50 -96 -68 -120 -117 -156 -42 -30 -141 -65 -217 -74 -70
|
|
51
|
+
-9 -241 -9 -295 -1 -25 4 -58 10 -74 12 -55 9 -151 46 -206 79 -153 93 -238
|
|
52
|
+
242 -276 480 -3 22 -8 44 -12 49 -3 5 9 6 29 2 45 -9 219 -33 294 -41 33 -3
|
|
53
|
+
69 -8 80 -10 32 -6 175 -18 227 -19 27 -1 48 -3 48 -6 0 -3 28 -5 63 -5 34 0
|
|
54
|
+
65 -4 68 -9 4 -4 15 -3 26 2 11 6 24 7 29 2 14 -13 194 -18 186 -5 -3 5 2 4
|
|
55
|
+
11 -4 14 -11 84 -14 370 -14 414 -1 517 3 536 17 11 8 13 8 7 -1 -7 -13 5 -18
|
|
56
|
+
17 -7 3 3 45 7 94 9 48 1 88 3 88 4 0 1 36 4 80 6 44 3 100 7 125 9 25 3 77 7
|
|
57
|
+
115 11 39 3 81 8 95 10 14 2 52 7 84 11 33 3 67 8 75 9 9 2 24 4 34 4 16 1 14
|
|
58
|
+
7 -13 44 -177 234 -286 502 -316 772 -7 61 -18 79 -43 70 -19 -7 -133 -23
|
|
59
|
+
-217 -31 -38 -3 -80 -8 -94 -10 -147 -24 -950 -24 -1160 1 -19 2 -64 6 -100
|
|
60
|
+
10 -36 4 -76 8 -90 10 -14 2 -45 6 -70 9 -38 5 -118 19 -245 41 -57 11 -255
|
|
61
|
+
65 -312 87 -63 23 -179 82 -203 104 -46 40 -122 48 -215 24z"/>
|
|
62
|
+
</g>
|
|
63
|
+
</svg>
|