本文由簡體中文內容自動轉碼而成。阿里雲不保證此自動轉碼的準確性、完整性及時效性。本文内容請以簡體中文版本為準。

Fn::And

更新時間:2024-11-19 20:05

調用內建函式Fn::And代表AND運算子,最少包含兩個條件。如果所有指定條件計算為true,則返回true;如果任意條件計算為false,則返回false。

函式宣告

  • JSON

    {
      "Fn::And": [
        "condition1",
        "condition2",
        ...
      ]
    }
  • YAML

    • 完整函數的文法。

      Fn::And:
        - condition1
        - condition2
        - ...
    • 縮寫形式。

      !And [condition1, condition2, ...]

參數資訊

condition:計算為true或false的條件。

傳回值

true或false。

使用樣本

只能在Conditions和Rules中使用Fn::And定義條件。

YAML
JSON
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  EnvType:
    Default: pre
    Type: String
Conditions:
  TestEqualsCond:
    !Equals
      - prod
      - !Ref EnvType
  TestAndCond:
    !And
      - TestEqualsCond
      - !Equals
          - pre
          - !Ref EnvType
{
  "Parameters": {
    "EnvType": {
      "Default": "pre",
      "Type": "String"
    }
  },
  "Conditions": {
    "TestEqualsCond": {
      "Fn::Equals": [
        "prod",
        {"Ref": "EnvType"}
      ]
    },
    "TestAndCond": {
      "Fn::And": [
        "TestEqualsCond",
        {
          "Fn::Equals": [
            "pre",
            {"Ref": "EnvType"}
          ]
        }
      ]
    }
  }
}

支援的函數

  • 本頁導讀 (1, M)
  • 函式宣告
  • 參數資訊
  • 傳回值
  • 使用樣本
  • 支援的函數
文檔反饋
phone 聯絡我們