全部產品
Search
文件中心

:ALIYUN::CMS::MonitorGroup

更新時間:Jul 27, 2024

ALIYUN::CMS::MonitorGroup類型用於建立一個應用分組。

文法

{
  "Type": "ALIYUN::CMS::MonitorGroup",
  "Properties": {
    "ContactGroups": String,
    "GroupName": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

GroupName

String

應用分組名稱。

無。

ContactGroups

String

警示連絡人群組。應用分組的警示通知會發送給此處指定的警示連絡人群組。

無。

傳回值

Fn::GetAtt

GroupId: 建立組以後產生的應用分組ID。

樣本

YAML

ROSTemplateFormatVersion: '2015-09-01'
Resources:
  MonitorGroup:
    Type: ALIYUN::CMS::MonitorGroup
    Properties:
      GroupName: DemoGroup
Outputs:
  GroupId:
    Description: 'Application group ID generated after the group is created. '
    Value:
      Fn::GetAtt:
        - MonitorGroup
        - GroupId

JSON

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Resources": {
    "MonitorGroup": {
      "Type": "ALIYUN::CMS::MonitorGroup",
      "Properties": {
        "GroupName": "DemoGroup"
      }
    }
  },
  "Outputs": {
    "GroupId": {
      "Description": "Application group ID generated after the group is created. ",
      "Value": {
        "Fn::GetAtt": [
          "MonitorGroup",
          "GroupId"
        ]
      }
    }
  }
}