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"
]
}
}
}
}