調用內部函數(shù)Fn::And代表AND運算符,最少包含兩個條件。如果所有指定條件計算為true,則返回true;如果任意條件計算為false,則返回false。
函數(shù)聲明
JSON
{ "Fn::And": [ "condition1", "condition2", ... ] }
YAML
完整函數(shù)的語法。
Fn::And: - condition1 - condition2 - ...
縮寫形式。
!And [condition1, condition2, ...]
參數(shù)信息
condition
:計算為true或false的條件。
返回值
true或false。
使用示例
您只能在Conditions和Rules中使用Fn::And定義條件。
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"}
]
}
]
}
}
}
支持的函數(shù)
文檔內容是否對您有幫助?