ALIYUN::ARMS::AlertContact類型用於建立警示連絡人。
文法
{
"Type": "ALIYUN::ARMS::AlertContact",
"Properties": {
"DingRobotWebhookUrl": String,
"PhoneNum": String,
"RegionId": String,
"SystemNoc": Boolean,
"ContactName": String,
"Email": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
ContactName | String | 是 | 是 | 警示連絡人姓名 | 無 |
DingRobotWebhookUrl | String | 否 | 是 | DingTalk機器人Webhook URL。 | DingTalk機器人安全設定中的自訂關鍵詞請填寫“警示”。 |
String | 否 | 是 | 警示連絡人郵箱 | 無 | |
PhoneNum | String | 否 | 是 | 警示連絡人手機號碼 | 郵箱地址、手機號碼和DingTalk機器人Webhook URL這三種連絡方式必須至少填寫一種。 |
RegionId | String | 否 | 否 | 地區ID。預設為資源棧的地區ID。 | 取值:
|
SystemNoc | Boolean | 否 | 是 | 是否接收系統通知 | 無 |
傳回值
Fn::GetAtt
ContactId:警示連絡人ID。
樣本
說明
請您根據實際情況更改脫敏參數的取值,例如Email。
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Resources:
AlertContact:
Type: ALIYUN::ARMS::AlertContact
Properties:
ContactName: DemoContact
Email: Demo****@163.com
RegionId:
Ref: ALIYUN::Region
Outputs:
ContactId:
Description: The ID of the alert contact that you created.
Value:
Fn::GetAtt:
- AlertContact
- ContactId
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Resources": {
"AlertContact": {
"Type": "ALIYUN::ARMS::AlertContact",
"Properties": {
"ContactName": "DemoContact",
"Email": "Demo****@163.com",
"RegionId": {
"Ref": "ALIYUN::Region"
}
}
}
},
"Outputs": {
"ContactId": {
"Description": "The ID of the alert contact that you created.",
"Value": {
"Fn::GetAtt": [
"AlertContact",
"ContactId"
]
}
}
}
}