-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathschema.json
46 lines (46 loc) · 1.44 KB
/
schema.json
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
{
"typeName": "AwsCommunity::SSM::ResizeVolume::MODULE",
"description": "Schema for Module Fragment of type AwsCommunity::SSM::ResizeVolume::MODULE",
"properties": {
"Parameters": {
"type": "object",
"properties": {
"VolumeSize": {
"type": "object",
"properties": {
"Type": {
"type": "string"
},
"Description": {
"type": "string"
}
},
"required": [
"Type",
"Description"
],
"description": "The Size in GB of the Instance Volume."
}
}
},
"Resources": {
"properties": {
"ResizeEBSVolumeDoc": {
"type": "object",
"properties": {
"Type": {
"type": "string",
"const": "AWS::SSM::Document"
},
"Properties": {
"type": "object"
}
}
}
},
"type": "object",
"additionalProperties": false
}
},
"additionalProperties": true
}