MCPcopy
hub / github.com/CapSoftware/Cap / Resource

Interface Resource

infra/sst-env.d.ts:7–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5
6declare module "sst" {
7 export interface Resource {
8 AuroraDB: {
9 clusterArn: string;
10 database: string;
11 host: string;
12 password: string;
13 port: number;
14 reader: string;
15 secretArn: string;
16 type: "sst.aws.Aurora";
17 username: string;
18 };
19 DATABASE_URL_MYSQL: {
20 type: "sst.sst.Secret";
21 value: string;
22 };
23 GITHUB_PAT: {
24 type: "sst.sst.Secret";
25 value: string;
26 };
27 MyApi: {
28 type: "sst.aws.ApiGatewayV2";
29 url: string;
30 };
31 Runner: {
32 service: string;
33 type: "sst.aws.Service";
34 };
35 ShardManager: {
36 service: string;
37 type: "sst.aws.Service";
38 };
39 Vpc: {
40 type: "sst.aws.Vpc";
41 };
42 }
43}
44/// <reference path="sst-env.d.ts" />
45

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected