aws_api
for Deno
From-scratch Typescript AWS API client built for Deno.
A leading focus of this library is to be as lean as possible
on the number of files downloaded to use a specific service.
Each service has its own isolated Typescript module;
you'll need to make an ApiFactory
from client/mod.ts
and then pass it to the service you want to use.
Package layout:
client/
: A handwritten generic AWS API client (credentials, signing, etc)encoding/
: Shared modules for dealing with XML, JSON, & querystringsservices/
: Generated Typescript classes and interfaces for a few most useful AWS servicesdemo.ts
: A trivial example of using this libraryexamples/
: Several full examples of using individual services
A full listing of all AWS services and their import URLs can be found on the [/x/aws_api Web Service][web service]. More information on the accompanying Wiki page.
Please reach out on Github Issues about missing features, weird exceptions, or API issues,
or ping dantheman#8546
in the Deno Discord if you just wanna chat about this effort.
Usage
Basic example: (a subset of demo.ts
)
import { ApiFactory } from 'https://deno.land/x/aws_api/client/mod.ts';
const factory = new ApiFactory();
import { STS } from 'https://deno.land/x/aws_api/services/sts/mod.ts';
const sts = new STS(factory);
const identity = await sts.getCallerIdentity();
console.log('You are', identity.UserId, 'in account', identity.Account);
console.log('Identity ARN:', identity.Arn);
A couple more-detailed examples are in examples/
and show concepts such as
managing an EC2 instance's lifecycle, redriving SQS messages,
and working directly with a Kinesis stream.
To use a customized build, or a less-common service, you can import from the web service:
import { ApiFactory } from 'https://deno.land/x/aws_api/client/mod.ts';
const factory = new ApiFactory();
import { Pricing } from 'https://deno.land/x/aws_api/services/pricing.ts';
const pricing = new Pricing(factory);
const identity = await pricing.describeServices('AmazonEC2');
console.log('You are', identity.UserId, 'in account', identity.Account);
console.log('Identity ARN:', identity.Arn);
⚠️ BREAKING CHANGES ⚠️ v0.4.0 ⚠️
- Version 0.4.0 of this library stopped including every service's API in the published module. Instead, the code-generation process is running on Deno Deploy and allows importing extremely precise modules, generated on the fly based on multiple configuration options. Check out this Web Service wiki page for more details on this new URL endpoint.
This is a bit experimental! Please report any issues or concerns with this new approach.
For services that are still bundled (SQS, S3, SNS, etc), the import URL no longer includes an API version (the
@year-month-date
part). Only the most recent API version gets bundled.The primary class export on each service module is no longer 'default'. So instead of
import SQS from ...
, you'll doimport { SQS } from ....
.Removed
AbortSignal
inputs which were allowed everywhere previously. These never did anything, and I'll add them back once Deno itself supports request cancellation.
Changelog
v0.4.0
on2021-05-01
: Deno 1.9 compatibility. Remove most less-common AWS services.- To use a service that is no longer bundled, use the Web Service.
- API Version has been removed from module filenames.
- The primary export of each service module is no longer
export default
.
v0.3.1
on2021-03-28
: Fix ini-parsing edgecase. Remove zero-field API types.- Using definitions from
aws-sdk-js@2.874.0
- Using definitions from
v0.3.0
on2021-02-14
: Clean up generation, rename modules to match AWS-SDK- Using definitions from
aws-sdk-js@2.839.0
- Using definitions from
v0.2.1
on2020-12-21
: Add EC2 instance metadata integration (IMDSv2)- Now supports using EC2 Instance IAM Roles automatically.
- Using definitions from
aws-sdk-js@2.814.0
v0.2.0
on2020-11-07
: Completed bindings for all API services.- Using definitions from
aws-sdk-js@2.784.0
- Using definitions from
v0.1.1
on2020-11-02
: Generation improvements, most services have been generated.- Using definitions from
aws-sdk-js@2.780.0
- Using definitions from
v0.1.0
on2020-10-15
: Initial publication with about half of the services bound.- Using definitions from
aws-sdk-js@2.768.0
- Using definitions from
Disclaimer
This is NOT a port of the official AWS SDK JS. Though every AWS service has an API module here, most have not actually been used yet and the bindings might make bad assumptions about the API contracts.
Do not use this module in mission critical stuff. It's supposed to be for automation scripts, quick & dirty pieces of infrastructure, and prototype microservices and so on.
If you just want the real, full-fat AWS SDK, a port of it has been uploaded at /x/aws_sdk.
The generated source code is still pretty messy. I used this project to learn more about the practicallity of API codegen. I'll be going through and neatening up the services/ source which shouldn't affect the published APIs.
Finally, the APIs within client/
and encoding/
are liable to change.
For best upgradability, stick to making an ApiFactory
object
and passing it to the services.
At some point (before 1.0.0) the APIs should be ready to lock in.
Methodology
All of the clients are compiled from aws-sdk-js
's JSON data files.
The code to generate clients isn't uploaded to /x/
,
so if you want to read through it, make sure you're in the source Git repo.
"Most" of the heavy lifting (such as compiling waiter JMESPaths) runs in the generation step so that the downloaded code is ready to run.
Completeness
The following clients have been used in actual scripts and should work quite well:
- SQS
- STS
- EC2
- S3
- Kinesis
- DynamoDB
The following credential sources are supported:
- Environment variables
- Static credentials in
~/.aws/credentials
- EKS Pod Identity (web identity token files)
- EC2 instance credentials
Some individual features that are implemented:
- Waiters (as
.waitForXYZ({...})
) - Automatic credential detection / loading
- EC2 instance metadata server v2
Multiple bits are missing:
- Automatic pagination (#1)
- AssumeRole credentials (#4)
- Debug logging/tracing of API calls
- Automatic retries
- Getting EKS credentials from regional STS endpoints (#2)
- AWS endpoints other than
**.amazonaws.com
(#3)- govcloud, China AWS, IPv6, etc.
List of Pre-Generated API Clients
All API definitions are current as of aws-sdk-js v2.874.0
.
Class | Module | Protocol | File size | Approx check time |
---|---|---|---|---|
CloudWatch |
cloudwatch/mod.ts |
query | 58 KiB | 3.3 sec |
DynamoDB |
dynamodb/mod.ts |
json | 121 KiB | 5.1 sec |
EC2 |
ec2/mod.ts |
ec2 | 1093 KiB | 13.6 sec |
ECR |
ecr/mod.ts |
json | 47 KiB | 3.3 sec |
Kinesis |
kinesis/mod.ts |
json | 30 KiB | 2.7 sec |
KMS |
kms/mod.ts |
json | 46 KiB | 2.9 sec |
Lambda |
lambda/mod.ts |
rest-json | 97 KiB | 4.5 sec |
Route53 |
route53/mod.ts |
rest-xml | 95 KiB | 4.0 sec |
S3 |
s3/mod.ts |
rest-xml | 256 KiB | 7.1 sec |
SESV2 |
sesv2/mod.ts |
rest-json | 107 KiB | 4.2 sec |
SNS |
sns/mod.ts |
query | 31 KiB | 3.5 sec |
SQS |
sqs/mod.ts |
query | 28 KiB | 3.6 sec |
STS |
sts/mod.ts |
query | 14 KiB | 2.1 sec |
For any other services, please check out the code generation web service which performs on-the-fly code generation. You can import the generated URL directly in your application, or download a copy of the file and save it in your source code for safe keeping.
The last version of this library to include every then-current API client
on /x/
is v0.3.1.