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"
]
}
}
}
}
文檔內容是否對您有幫助?