ALIYUN::ROCKETMQ::Instance類型用於建立標準版執行個體。
文法
{
"Type": "ALIYUN::ROCKETMQ::Instance",
"Properties": {
"Remark": String,
"InstanceName": String,
"Tags": List,
"DeletionForce": Boolean
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Remark | String | 否 | 是 | 備忘。 | 最大長度為128個字元。 |
InstanceName | String | 是 | 是 | 執行個體名稱。 | 長度為3~64個字元,可包含英文字母、漢字、數字、短劃線(-)和底線(_)。 |
Tags | List | 否 | 是 | 標籤。 | 最多支援添加20個標籤。 更多資訊,請參見Tags屬性。 |
DeletionForce | Boolean | 否 | 是 | 是否強制移除。 | 無 |
Tags文法
"Tags": [
{
"Key": String,
"Value": String
}
]
Tags屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Key | String | 是 | 否 | 標籤鍵。 | 長度為1~128個字元,不能以 |
Value | String | 否 | 否 | 標籤值。 | 長度為0~128個字元,不能以 |
傳回值
Fn::GetAtt
InstanceId:執行個體ID。
InstanceType:執行個體類型,1表示標準版。
HttpInternetEndpoint:HTTP公網存取點。
HttpInternetSecureEndpoint:HTTPS公網存取點。
TcpEndpoint:TCP協議存取點。
HttpInternalEndpoint:HTTP內網存取點。
InstanceName:執行個體名稱。
樣本
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
Instance:
Type: ALIYUN::ROCKETMQ::Instance
Properties:
InstanceName: TestRocketMQ
Outputs:
InstanceName:
Description: Instance name
Value:
Fn::GetAtt:
- Instance
- InstanceName
HttpInternalEndpoint:
Description: The internal HTTP endpoint for the Message Queue for Apache RocketMQ instance.
Value:
Fn::GetAtt:
- Instance
- HttpInternalEndpoint
InstanceId:
Description: Instance ID created
Value:
Fn::GetAtt:
- Instance
- InstanceId
TcpEndpoint:
Description: The TCP endpoint for the Message Queue for Apache RocketMQ instance.
Value:
Fn::GetAtt:
- Instance
- TcpEndpoint
HttpInternetEndpoint:
Description: The Internet HTTP endpoint for the Message Queue for Apache RocketMQ instance.
Value:
Fn::GetAtt:
- Instance
- HttpInternetEndpoint
InstanceType:
Description: Instance Type
Value:
Fn::GetAtt:
- Instance
- InstanceType
HttpInternetSecureEndpoint:
Description: The Internet HTTPS endpoint for the Message Queue for Apache RocketMQ instance.
Value:
Fn::GetAtt:
- Instance
- HttpInternetSecureEndpoint
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"Instance": {
"Type": "ALIYUN::ROCKETMQ::Instance",
"Properties": {
"InstanceName": "TestRocketMQ"
}
}
},
"Outputs": {
"InstanceName": {
"Description": "Instance name",
"Value": {
"Fn::GetAtt": [
"Instance",
"InstanceName"
]
}
},
"HttpInternalEndpoint": {
"Description": "The internal HTTP endpoint for the Message Queue for Apache RocketMQ instance.",
"Value": {
"Fn::GetAtt": [
"Instance",
"HttpInternalEndpoint"
]
}
},
"InstanceId": {
"Description": "Instance ID created",
"Value": {
"Fn::GetAtt": [
"Instance",
"InstanceId"
]
}
},
"TcpEndpoint": {
"Description": "The TCP endpoint for the Message Queue for Apache RocketMQ instance.",
"Value": {
"Fn::GetAtt": [
"Instance",
"TcpEndpoint"
]
}
},
"HttpInternetEndpoint": {
"Description": "The Internet HTTP endpoint for the Message Queue for Apache RocketMQ instance.",
"Value": {
"Fn::GetAtt": [
"Instance",
"HttpInternetEndpoint"
]
}
},
"InstanceType": {
"Description": "Instance Type",
"Value": {
"Fn::GetAtt": [
"Instance",
"InstanceType"
]
}
},
"HttpInternetSecureEndpoint": {
"Description": "The Internet HTTPS endpoint for the Message Queue for Apache RocketMQ instance.",
"Value": {
"Fn::GetAtt": [
"Instance",
"HttpInternetSecureEndpoint"
]
}
}
}
}