日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

DATASOURCE::ECS::KeyPairs

DATASOURCE::ECS::KeyPairs類型用于查詢一個或多個密鑰對。

語法

{
  "Type": "DATASOURCE::ECS::KeyPairs",
  "Properties": {
    "KeyPairFingerPrint": String,
    "KeyPairName": String,
    "ResourceGroupId": String,
    "Tags": List,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

KeyPairFingerPrint

String

密鑰對的指紋。

根據RFC4716定義的公鑰指紋格式,采用MD5信息摘要算法。

KeyPairName

String

密鑰對名稱。

支持正則表達式模糊搜索,使用*匹配子表達式,取值示例:

  • *SshKey:查詢以SshKey結尾的密鑰對名稱,包括SshKey。

  • SshKey*:查詢以SshKey開頭的密鑰對名稱,包括SshKey。

  • *SshKey*:查詢名稱中間有SshKey的密鑰對,包括SshKey。

  • SshKey:精確匹配SshKey。

ResourceGroupId

String

密鑰對所在的資源組ID。

Tags

List

密鑰對的標簽。

最多支持20個標簽。

更多信息,請參見Tags屬性。

RefreshOptions

String

當資源棧更新時,數據源資源的刷新策略。

有效值:

  • Never(默認值):更新堆棧時,從不刷新數據源資源。

  • Always:更新堆棧時,始終刷新數據源資源。

Tags語法

"Tags": [
  {
    "Value": String,
    "Key": String
  }
]

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Value

String

密鑰對的標簽值。

長度為0~128個字符,不能以aliyunacs:開頭,不能包含http://https:// 。

Key

String

密鑰對的標簽鍵。

長度為1~128個字符,不能以aliyunacs:開頭,不能包含http://https://

返回數據(Fn::GetAtt)

  • KeyPairNames:密鑰對名稱列表。

  • KeyPairs:密鑰對詳情列表。

屬性名稱

類型

描述

約束

KeyPairNames

List

密鑰對名稱列表。

KeyPairs

List

密鑰對詳情列表。

KeyPairName

String

密鑰對的名稱。

取值示例:testKeyPairName。

KeyPairFingerPrint

String

密鑰對的指紋。

取值示例:ABC1234567。

ResourceGroupId

String

資源組ID。

取值示例:rg-amnhr7u7c7hj****。

Tags

List

密鑰對的標簽。

示例

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "KeyPairName": {
      "Type": "String",
      "Description": "The name of the key pair. You can use the asterisk (*) symbol as a wildcard in regular expressions to query key pairs by performing a fuzzy search. Sample patterns:\n*SshKey: queries key pairs whose names end with SshKey, including the key pair named SshKey.\nSshKey*: queries key pairs whose names start with SshKey, including the key pair named SshKey.\n*SshKey*: queries key pairs whose names include SshKey, including the key pair named SshKey.\nSshKey: queries the key pair named SshKey."
    }
  },
  "Resources": {
    "KeyPairs": {
      "Type": "DATASOURCE::ECS::KeyPairs",
      "Properties": {
        "KeyPairName": {
          "Ref": "KeyPairName"
        }
      }
    }
  },
  "Outputs": {
    "KeyPairs": {
      "Value": {
        "Fn::GetAtt": [
          "KeyPairs",
          "KeyPairs"
        ]
      }
    },
    "KeyPairNames": {
      "Value": {
        "Fn::GetAtt": [
          "KeyPairs",
          "KeyPairNames"
        ]
      }
    }
  }
}