@openfn/language-aws-s3 1.0.0
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/LICENSE +674 -0
- package/LICENSE.LESSER +165 -0
- package/README.md +53 -0
- package/ast.json +993 -0
- package/configuration-schema.json +42 -0
- package/dist/index.cjs +33983 -0
- package/dist/index.js +33970 -0
- package/package.json +51 -0
- package/types/Adaptor.d.ts +83 -0
- package/types/Utils.d.ts +14 -0
- package/types/index.d.ts +3 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"properties": {
|
|
4
|
+
"accessKeyId": {
|
|
5
|
+
"title": "AWS Access Key ID",
|
|
6
|
+
"type": "string",
|
|
7
|
+
"description": "AWS access key id",
|
|
8
|
+
"examples": ["AKIA..."]
|
|
9
|
+
},
|
|
10
|
+
"secretAccessKey": {
|
|
11
|
+
"title": "AWS Secret Access Key",
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "AWS secret key",
|
|
14
|
+
"writeOnly": true
|
|
15
|
+
},
|
|
16
|
+
"sessionToken": {
|
|
17
|
+
"title": "AWS Session Token",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"description": "Optional temporary session token (for STS).",
|
|
20
|
+
"writeOnly": true
|
|
21
|
+
},
|
|
22
|
+
"region": {
|
|
23
|
+
"title": "AWS Region",
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "AWS region to use (e.g. us-east-1).",
|
|
26
|
+
"examples": ["us-east-1"]
|
|
27
|
+
},
|
|
28
|
+
"endpoint": {
|
|
29
|
+
"title": "Override endpoint",
|
|
30
|
+
"type": "string",
|
|
31
|
+
"description": "Optional S3 endpoint (useful for LocalStack or S3-compatible services).",
|
|
32
|
+
"format": "uri"
|
|
33
|
+
},
|
|
34
|
+
"bucket": {
|
|
35
|
+
"title": "Bucket",
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "Optional bucket name to use"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"type": "object",
|
|
41
|
+
"additionalProperties": false
|
|
42
|
+
}
|