DATASOURCE::VPC::CustomerGateways類型用於查詢使用者網關的資訊。
文法
{
"Type": "DATASOURCE::VPC::CustomerGateways",
"Properties": {
"CustomerGatewayId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
CustomerGatewayId | String | 否 | 是 | 使用者網關的執行個體ID。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
傳回值
Fn::GetAtt
CustomerGateways:使用者網關的執行個體詳情列表。
CustomerGatewayIds:使用者網關的執行個體ID列表。
屬性名稱 | 類型 | 描述 | 約束 |
CustomerGatewayIds | List | 使用者網關的執行個體ID列表。 | 無 |
CustomerGateways | List | 使用者網關的執行個體詳情列表。 | 無 |
CustomerGatewayName | String | 使用者網關的名稱。 | 無 |
Description | String | 使用者網關的描述資訊。 | 無 |
Asn | Number | 本機資料中心網關裝置的自治系統號。 | 無 |
AuthKey | String | 本機資料中心網關裝置BGP路由協議的認證密鑰。 | 無 |
CustomerGatewayId | String | 使用者網關的執行個體ID。 | 無 |
IpAddress | String | 本機資料中心網關裝置的公網IP地址。 | 無 |
CreateTime | String | 建立使用者網關的時間戳記。 | 單位:毫秒。 時間戳記的格式採用Unix時間戳記,表示從格林威治時間1970年01月01日00時00分00秒至建立使用者網關時的總時間長度。 |
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
CustomerGatewayId:
Description: The ID of the customer gateway.
Type: String
Resources:
ExtensionDataSource:
Properties:
CustomerGatewayId:
Ref: CustomerGatewayId
Type: DATASOURCE::VPC::CustomerGateways
Outputs:
CustomerGatewayIds:
Description: The list of customer gateway IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- CustomerGatewayIds
CustomerGateways:
Description: The list of customer gateways.
Value:
Fn::GetAtt:
- ExtensionDataSource
- CustomerGateways
JSON格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"CustomerGatewayId": {
"Type": "String",
"Description": "The ID of the customer gateway."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::VPC::CustomerGateways",
"Properties": {
"CustomerGatewayId": {
"Ref": "CustomerGatewayId"
}
}
}
},
"Outputs": {
"CustomerGateways": {
"Description": "The list of customer gateways.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"CustomerGateways"
]
}
},
"CustomerGatewayIds": {
"Description": "The list of customer gateway IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"CustomerGatewayIds"
]
}
}
}
}