ALIYUN::ECS::Command类型用于新建云助手命令。
语法
{
"Type": "ALIYUN::ECS::Command",
"Properties": {
"Name": String,
"WorkingDir": String,
"CommandContent": String,
"Timeout": Integer,
"Type": String,
"Description": String,
"EnableParameter": Boolean,
"Tags": List,
"ResourceGroupId": String,
"ContentEncoding": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Name | String | 否 | 是 | 命令名称。 | 长度为1~128个字符。支持全字符集。 |
WorkingDir | String | 否 | 是 | 您创建的命令在ECS实例中运行的目录。 | 默认值:
说明 设置为其他目录时,请确保实例中存在该目录。 |
CommandContent | String | 否 | 否 | 命令Base64编码后的内容。 | 命令Base64编码后的内容。
|
Timeout | Integer | 否 | 是 | 您创建的命令在ECS实例中执行时的超时时间。 | 当因为某种原因无法运行您创建的命令时,会出现超时现象;超时后,会强制终止命令进程,即取消命令的PID。 默认值:60。 单位:秒。 |
Type | String | 是 | 否 | 命令的类型。 | 取值:
|
Description | String | 否 | 是 | 命令描述。 | 长度为1~512个字符。支持全字符集。 |
EnableParameter | Boolean | 否 | 否 | 创建的命令是否使用自定义参数。 | 取值
|
Tags | List | 否 | 否 | 实例的标签。最多支持添加20个标签。 | 更多信息,请参见Tags属性。 |
ContentEncoding | String | 否 | 否 | 命令内容(CommandContent)的编码方式。 | 取值范围:
说明 错填该取值会当作Base64处理。 |
ResourceGroupId | String | 否 | 是 | 命令所属的资源组ID。 | 无 |
Tags语法
"Tags": [
{
"Key": String,
"Value": String
}
]
Tags属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Key | String | 是 | 否 | 标签键。 | 长度为1~128个字符,不能以 |
Value | String | 否 | 否 | 标签值。 | 长度为0~128个字符,不能以 |
返回值
Fn::GetAtt
CommandId:命令ID。
如果您只需要执行一次性命令,请参见ALIYUN::ECS::RunCommand。
示例
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
Command:
Type: ALIYUN::ECS::Command
Properties:
CommandContent:
Fn::Base64Encode: |
#!/bin/bash
echo "hello" >> /root/test.sh
Type: RunShellScript
Name:
Ref: ALIYUN::StackName
Outputs:
CommandId:
Description: The id of command created.
Value:
Fn::GetAtt:
- Command
- CommandId
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"Command": {
"Type": "ALIYUN::ECS::Command",
"Properties": {
"CommandContent": {
"Fn::Base64Encode": "#!/bin/bash\necho \"hello\" >> /root/test.sh\n"
},
"Type": "RunShellScript",
"Name": {
"Ref": "ALIYUN::StackName"
}
}
}
},
"Outputs": {
"CommandId": {
"Description": "The id of command created.",
"Value": {
"Fn::GetAtt": [
"Command",
"CommandId"
]
}
}
}
}