-
Notifications
You must be signed in to change notification settings - Fork 27
/
awscommunity-applicationautoscaling-scheduledaction.json
113 lines (113 loc) · 2.77 KB
/
awscommunity-applicationautoscaling-scheduledaction.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"typeName": "AwsCommunity::ApplicationAutoscaling::ScheduledAction",
"description": "Application Autoscaling Scheduled Action.",
"sourceUrl": "https://github.com/aws-cloudformation/community-registry-extensions",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"EndTime": {
"type": "string"
},
"ResourceId": {
"type": "string",
"pattern": "[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
},
"ScalableDimension": {
"type": "string"
},
"ScalableTargetAction": {
"type": "object",
"additionalProperties": false,
"anyOf": [
{
"required": [
"MaxCapacity"
]
},
{
"required": [
"MinCapacity"
]
}
],
"properties": {
"MaxCapacity": {
"type": "number",
"minimum": 0
},
"MinCapacity": {
"type": "number",
"minimum": 0
}
}
},
"Schedule": {
"type": "string",
"pattern": "[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
},
"ScheduledActionName": {
"type": "string",
"pattern": "(?!((^[ ]+.*)|(.*([\\u0000-\\u001f]|[\\u007f-\\u009f]|[:/|])+.*)|(.*[ ]+$))).+"
},
"ServiceNamespace": {
"type": "string"
},
"StartTime": {
"type": "string"
},
"Timezone": {
"type": "string",
"default": "UTC",
"pattern": "[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
},
"ScheduledActionARN": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"ScalableDimension",
"ResourceId",
"ScheduledActionName",
"ServiceNamespace",
"Schedule",
"ScalableTargetAction"
],
"readOnlyProperties": [
"/properties/ScheduledActionARN"
],
"primaryIdentifier": [
"/properties/ScheduledActionARN"
],
"createOnlyProperties": [
"/properties/ScheduledActionName",
"/properties/ResourceId",
"/properties/ScalableDimension",
"/properties/ServiceNamespace",
"/properties/ScheduledActionName"
],
"handlers": {
"create": {
"permissions": [
"application-autoscaling:DescribeScheduledActions",
"application-autoscaling:PutScheduledAction"
]
},
"read": {
"permissions": [
"application-autoscaling:DescribeScheduledActions"
]
},
"update": {
"permissions": [
"application-autoscaling:DescribeScheduledActions",
"application-autoscaling:PutScheduledAction"
]
},
"delete": {
"permissions": [
"application-autoscaling:DescribeScheduledActions",
"application-autoscaling:DeleteScheduledAction"
]
}
}
}