ALIYUN::CMS::Contact類型用於建立警示連絡人。
文法
{
"Type": "ALIYUN::CMS::Contact",
"Properties": {
"Describe": String,
"ContactName": String,
"Channels": Map
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Channels | Map | 是 | 是 | 連絡方式 | 至少添加手機號碼、郵箱、DingTalk機器人、WangWang中的一種連絡方式。 |
ContactName | String | 是 | 否 | 警示連絡人姓名 | 長度為2~40個字元,以中英文字元開頭,可包含中文字元、英文字元、數字、英文句點(.)和底線(_)。 |
Describe | String | 是 | 是 | 描述詳情 | 無 |
Channels文法
"Channels": {
"Mail": String,
"AliIM": String,
"DingWebHook": String,
"SMS": String
}
Channels屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
AliIM | String | 否 | 是 | WangWang連絡方式 | 無 |
DingWebHook | String | 否 | 是 | DingTalk機器人Webhook | 無 |
String | 否 | 是 | Email地址 | 添加或者修改的Email會收到一個啟用連結,啟用之後對應Email才會被加到連絡人中。 | |
SMS | String | 否 | 是 | 手機號碼、簡訊或者電話連絡方式 | 添加或者修改的手機號碼會收到一個啟用連結, 啟用之後才會被加到連絡人中。 |
傳回值
Fn::GetAtt
ContactName:警示連絡人姓名。
樣本
說明
請您根據實際情況更改模板中已脫敏的參數取值。
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
Contact:
Type: ALIYUN::CMS::Contact
Properties:
Describe: Test Contact
ContactName: DemoContact
Channels:
Mail: test****@163.com
DingWebHook: https://webhook.com
SMS: 1631792327****
Outputs:
ContactName:
Description: The name of the alarm contact.
Value:
Fn::GetAtt:
- Contact
- ContactName
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"Contact": {
"Type": "ALIYUN::CMS::Contact",
"Properties": {
"Describe": "Test Contact",
"ContactName": "DemoContact",
"Channels": {
"Mail": "test****@163.com",
"DingWebHook": "https://webhook.com",
"SMS": "1631792327****"
}
}
}
},
"Outputs": {
"ContactName": {
"Description": "The name of the alarm contact.",
"Value": {
"Fn::GetAtt": [
"Contact",
"ContactName"
]
}
}
}
}