-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
44 lines (30 loc) · 1005 Bytes
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { ApiGateway } from "./services/apigateway.ts";
import { CloudWatch } from "./services/cloudwatch.ts";
import { DynamoDB } from "./services/dynamodb.ts";
import { EC2 } from "./services/ec2.ts";
import { ECR } from "./services/ecr.ts";
import { ECS } from "./services/ecs.ts";
import { Events } from "./services/events.ts";
import { IAM } from "./services/iam.ts";
import { KMS } from "./services/kms.ts";
import { Lambda } from "./services/lambda.ts";
import { Logs } from "./services/logs.ts";
import { Route53 } from "./services/route53.ts";
import { S3 } from "./services/s3.ts";
import { SQS } from "./services/sqs.ts";
export class AWS {
static ApiGateway = ApiGateway;
static CloudWatch = CloudWatch;
static DynamoDB = DynamoDB;
static EC2 = EC2;
static ECR = ECR;
static ECS = ECS;
static Events = Events;
static IAM = IAM;
static KMS = KMS;
static Lambda = Lambda;
static Logs = Logs;
static Route53 = Route53;
static S3 = S3;
static SQS = SQS;
}