ALIYUN::CMS::MonitorGroupInstances類型用於添加資源到應用分組。
文法
{
"Type": "ALIYUN::CMS::MonitorGroupInstances",
"Properties": {
"Instances": List,
"GroupId": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Instances | List | 是 | 否 | 資源執行個體。 | 更多資訊,請參見Instances屬性。 |
GroupId | String | 是 | 否 | 應用分組ID。 | 無 |
Instances文法
"Instances": [
{
"InstanceName": String,
"Category": String,
"InstanceId": String,
"RegionId": String
}
]
Instances屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
InstanceName | String | 是 | 否 | 執行個體名稱。 | 無 |
Category | String | 是 | 否 | 資源執行個體所屬的雲產品名稱或規格。 | 取值:
|
InstanceId | String | 是 | 否 | 資源執行個體ID。 | 無 |
RegionId | String | 是 | 否 | 執行個體所在的地區ID。 | 無 |
傳回值
Fn::GetAtt
GroupId:應用分組ID。
樣本
YAML
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
InstanceId:
Type: String
AssociationProperty: ALIYUN::ECS::Instance::InstanceId
GroupId:
Type: String
Description: The ID of the application group.
Resources:
MonitorGroupInstances:
Type: ALIYUN::CMS::MonitorGroupInstances
Properties:
Instances:
- InstanceName: TestECS
Category: ecs
InstanceId:
Ref: InstanceId
RegionId:
Ref: ALIYUN::Region
GroupId:
Ref: GroupId
Outputs:
GroupId:
Description: The ID of the application group.
Value:
Fn::GetAtt:
- MonitorGroupInstances
- GroupId
JSON
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"InstanceId": {
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::Instance::InstanceId"
},
"GroupId": {
"Type": "String",
"Description": "The ID of the application group."
}
},
"Resources": {
"MonitorGroupInstances": {
"Type": "ALIYUN::CMS::MonitorGroupInstances",
"Properties": {
"Instances": [
{
"InstanceName": "TestECS",
"Category": "ecs",
"InstanceId": {
"Ref": "InstanceId"
},
"RegionId": {
"Ref": "ALIYUN::Region"
}
}
],
"GroupId": {
"Ref": "GroupId"
}
}
}
},
"Outputs": {
"GroupId": {
"Description": "The ID of the application group.",
"Value": {
"Fn::GetAtt": [
"MonitorGroupInstances",
"GroupId"
]
}
}
}
}