DATASOURCE::VPC::CustomerGateways类型用于查询用户网关的信息。

语法

{
  "Type": "DATASOURCE::VPC::CustomerGateways",
  "Properties": {
    "CustomerGatewayId": String
  }
}

属性

属性名称类型必须允许更新描述约束
CustomerGatewayIdString用户网关的实例ID。

返回值

Fn::GetAtt

  • CustomerGateways:用户网关的实例详情列表。
  • CustomerGatewayIds:用户网关的实例ID列表。
属性名称类型描述约束
CustomerGatewayIdsList用户网关的实例ID列表。
CustomerGatewaysList用户网关的实例详情列表。
CustomerGatewayNameString用户网关的名称。
DescriptionString用户网关的描述信息。
AsnNumber本地数据中心网关设备的自治系统号。
AuthKeyString本地数据中心网关设备BGP路由协议的认证密钥。
CustomerGatewayIdString用户网关的实例ID。
IpAddressString本地数据中心网关设备的公网IP地址。
CreateTimeString创建用户网关的时间戳。单位:毫秒。

时间戳的格式采用Unix时间戳,表示从格林威治时间1970年01月01日00时00分00秒至创建用户网关时的总时长。

示例

  • YAML格式

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