π
π
π
π
Shypyard Documentation
Searchβ¦
π
π
π
π
Shypyard Documentation
βWhat is Shypyard?
π
Need bespoke integration?
Resources
Getting started
Task library
Core concepts
Task triggers
Task code
Task runs
App
Platform services
Observability (logging)
Shypyard SDK
auths
Shypyard API
Email SMTP
Shopify
AWS
SFTP
Mongodb
API Clients
Integration to apps
List of supported integrations
Interacting with Shopify
Techniques
Limitations
Changelog
Privacy Policy
Powered By
GitBook
AWS
libs.aws.get().getService('SERVICE_NAME')
Requires the AWS integration to be set up
Returns an instance of
aws-sdk
service instance.
S3 as an example
1
// get AWS service client (s3 as an example)
2
const
s3
=
await
libs
.
aws
.
get
().
getService
(
'S3'
);
3
β
4
// get file content
5
const
params
=
{
6
Key
:
`
path/to/file
`
,
7
Bucket
:
'BUCKET'
,
8
};
9
const
{
Body
}
=
await
s3
.
getObject
(
params
).
promise
();
Copied!
β
β
Previous
Shopify
Next
SFTP
Last modified
1yr ago
Copy link