ALIYUN::ESS::AlarmTaskEnable is used to start an alarm task. You can call this operation to enable alarm tasks when the task is stopped.
Statement
{
"Type": "ALIYUN::ESS::AlarmTaskEnable",
"Properties": {
"AlarmTaskId": String,
"Enable": Boolean
}
}
Properties
Parameter | Type | Required | Editable | Description | Constraint |
---|---|---|---|---|---|
AlarmTaskId | String | No | No | The ID of the monitoring task. | None |
Enable | String | Retained | Yes | Specifies whether to enable the alarm task. | Valid values: 1025 to 10000. You cannot use the following commonly used port numbers: 2222, 4500, 4510, 4560, 7505, 9000, 9001, and 9002. |
Response parameters
Fn::GetAtt
None
Sample request
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"Enable": {
"Type": "Boolean",
"Description": "Enable alarm task or not",
"AllowedValues": [
"True",
"true",
"False",
"false"
]
},
"AlarmTaskId": {
"Type": "String",
"Description": "The id of alarm task."
}
},
"Resources": {
"AlarmTaskEnable": {
"Type": "ALIYUN::ESS::AlarmTaskEnable",
"Properties": {
"Enable": {
"Ref": "Enable"
},
"AlarmTaskId": {
"Ref": "AlarmTaskId"
}
}
}
},
"Outputs": {}
}