ALIYUN::SAG::Qos類型用于創建QoS策略實例。

語法

{
  "Type": "ALIYUN::SAG::Qos",
  "Properties": {
    "QosName": String,
    "QosDescription": String
  }
}

屬性

屬性名稱 類型 必須 允許更新 描述 約束
QosName String QoS策略實例的名稱。 長度為2~100個字符,以英文字母或漢字開頭,可包含英文字母、漢字、數字、半角句號(.)、下劃線(_)和短劃線(-)。
QosDescription String QoS策略實例的描述。 長度為1~512個字符,以英文字母或漢字開頭,可包含英文字母、漢字、數字、下劃線(_)和短劃線(-)。

返回值

Fn::GetAtt

QosId:QoS策略實例ID。

示例

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "QosName": {
      "Type": "String",
      "Description": "The name of the QoS policy.\nThe name must be 2 to 100 characters in length and can contain letters, digits, periods\n(.), underscores (_), and hyphens (-). It must start with a letter."
    },
    "QosDescription": {
      "Type": "String",
      "Description": "The description of the QoS policy.\nThe description must be 1 to 512 characters in length and can contain letters, digits,\nunderscores (_), and hyphens (-). It must start with a letter."
    }
  },
  "Resources": {
    "Qos": {
      "Type": "ALIYUN::SAG::Qos",
      "Properties": {
        "QosName": {
          "Ref": "QosName"
        },
        "QosDescription": {
          "Ref": "QosDescription"
        }
      }
    }
  },
  "Outputs": {
    "QosId": {
      "Description": "The ID of the QoS policy.",
      "Value": {
        "Fn::GetAtt": [
          "Qos",
          "QosId"
        ]
      }
    }
  }
}