ALIYUN::OOS::Parameter類型用于創建一個普通參數。
語法
{
"Type": "ALIYUN::OOS::Parameter",
"Properties": {
"Type": String,
"Constraints": String,
"Description": String,
"Value": String,
"Name": String,
"ResourceGroupId": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
---|---|---|---|---|---|
Type | String | 是 | 否 | 參數類型。 | 取值:
|
Constraints | String | 否 | 否 | 參數的約束條件。 | 取值:
|
Description | String | 否 | 是 | 參數的描述信息。 | 長度不超過200個字符。 |
Value | String | 是 | 是 | 參數值。 | 長度不超過4096個字符。 |
Name | String | 是 | 否 | 參數名稱。 | 長度不超過200個字符。不能以ALIYUN 、ACS 、ALIBABA 、ALICLOUD 、OOS 開頭,可包含英文字母、數字、短劃線(-)和下劃線(_)。 |
ResourceGroupId | String | 否 | 是 | 資源組ID。 | 無 |
返回值
Fn::GetAtt
- Name:參數名稱。
- Value:參數值。
示例
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { }, "Resources": { "Parameter": { "Type": "ALIYUN::OOS::Parameter", "Properties": { "Type": "String", "Value": "echo hello world", "Description": "Prefix for Interruption Handler parameters", "Name": { "Fn::Join": [ "", [ "/ecs-test-handler/run_commands/test-SampleWebAppAutoScalingGroup-", { "Ref": "ALIYUN::StackId" } ] ] } } } }, "Outputs": { "Value": { "Description": "The Value of the parameter.", "Value": { "Fn::GetAtt": [ "Parameter", "Value" ] } }, "Name": { "Description": "The Name of the parameter.", "Value": { "Fn::GetAtt": [ "Parameter", "Name" ] } } } }