-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathreference.json
More file actions
88 lines (88 loc) · 2.16 KB
/
Copy pathreference.json
File metadata and controls
88 lines (88 loc) · 2.16 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://json-schema.org/draft-07/schema#",
"title": "ServerlessFrameworkConfiguration",
"description": "Schema for Serverless Framework v4 (AWS provider) configuration files. https://www.serverless.com/framework/docs/providers/aws/guide/serverless.yml",
"fileMatch": ["serverless.yml", "serverless.yaml"],
"type": "object",
"required": ["provider", "service"],
"properties": {
"app": {
"type": "string"
},
"custom": {
"$ref": "components/custom.json#/ServerlessCustom"
},
"frameworkVersion": {
"type": "string"
},
"functions": {
"$ref": "components/lambda.json#/AwsFunctions"
},
"layers": {
"$ref": "components/layers.json#/AwsLayers"
},
"org": {
"type": "string"
},
"package": {
"$ref": "components/common.json#/AwsPackage"
},
"plugins": {
"oneOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"title": "LocalPlugin",
"type": "object",
"properties": {
"localPath": {
"description": "The path to the local .js file that contains the plugin",
"type": "string"
},
"modules": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
]
},
"provider": {
"$ref": "components/provider.json#/AwsProvider"
},
"resources": {
"oneOf": [
{
"$ref": "components/resources.json#/ServerlessFrameworkResources"
},
{
"items": {
"$ref": "components/resources.json#/ServerlessFrameworkResources"
},
"type": "array"
}
]
},
"service": {
"type": "string"
},
"stages": {
"$ref": "components/stages.json#/ServerlessStages"
},
"params": {
"$ref": "components/stages.json#/ServerlessParams"
},
"ai": {
"$ref": "components/custom.json#/ServerlessAi"
},
"stepFunctions": {
"$ref": "plugins/step_functions.json#/definitions/AwsStepFunctions"
}
}
}