ALIYUN::ARMS::AlertContactGroup類型用於建立警示連絡人分組。
文法
{
"Type": "ALIYUN::ARMS::AlertContactGroup",
"Properties": {
"ContactIds": List,
"RegionId": String,
"ContactGroupName": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
ContactGroupName | String | 是 | 是 | 警示連絡人分組名稱。 | 無 |
ContactIds | List | 是 | 是 | 警示連絡人分組內的連絡人ID。 | 多個連絡人ID以空格分隔。 |
RegionId | String | 否 | 否 | 地區ID。預設為資源棧的地區ID。 | 取值:
|
傳回值
Fn::GetAtt
ContactGroupId:警示連絡人分組ID。
樣本
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
ContactIds:
Type: Json
Description: 'The list of alert contact ID. '
Resources:
AlertContactGroup:
Type: ALIYUN::ARMS::AlertContactGroup
Properties:
ContactIds:
Ref: ContactIds
ContactGroupName: TestContactGroup
Outputs:
ContactGroupId:
Description: The ID of the alert contact group that you created.
Value:
Fn::GetAtt:
- AlertContactGroup
- ContactGroupId
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"ContactIds": {
"Type": "Json",
"Description": "The list of alert contact ID. "
}
},
"Resources": {
"AlertContactGroup": {
"Type": "ALIYUN::ARMS::AlertContactGroup",
"Properties": {
"ContactIds": {
"Ref": "ContactIds"
},
"ContactGroupName": "TestContactGroup"
}
}
},
"Outputs": {
"ContactGroupId": {
"Description": "The ID of the alert contact group that you created.",
"Value": {
"Fn::GetAtt": [
"AlertContactGroup",
"ContactGroupId"
]
}
}
}
}