Uses of Interface
software.amazon.awscdk.core.ICfnRuleConditionExpression
Packages that use ICfnRuleConditionExpression
Package
Description
AWS Cloud Development Kit Core Library
AWS Service Catalog Construct Library
- 
Uses of ICfnRuleConditionExpression in software.amazon.awscdk.core
Subinterfaces of ICfnRuleConditionExpression in software.amazon.awscdk.coreModifier and TypeInterfaceDescriptionstatic interfaceInternal default implementation forICfnRuleConditionExpression.Classes in software.amazon.awscdk.core that implement ICfnRuleConditionExpressionModifier and TypeClassDescriptionstatic final classA proxy class which represents a concrete javascript instance of this type.Methods in software.amazon.awscdk.core that return ICfnRuleConditionExpressionModifier and TypeMethodDescriptionstatic ICfnRuleConditionExpressionFn.conditionAnd(@NotNull ICfnConditionExpression... conditions) Returns true if all the specified conditions evaluate to true, or returns false if any one of the conditions evaluates to false.static ICfnRuleConditionExpressionFn.conditionContains(List<String> listOfStrings, String value) Returns true if a specified string matches at least one value in a list of strings.static ICfnRuleConditionExpressionFn.conditionEachMemberEquals(List<String> listOfStrings, String value) Returns true if a specified string matches all values in a list.static ICfnRuleConditionExpressionFn.conditionEachMemberIn(List<String> stringsToCheck, List<String> stringsToMatch) Returns true if each member in a list of strings matches at least one value in a second list of strings.static ICfnRuleConditionExpressionFn.conditionEquals(Object lhs, Object rhs) Compares if two values are equal.static ICfnRuleConditionExpressionFn.conditionIf(String conditionId, Object valueIfTrue, Object valueIfFalse) Returns one value if the specified condition evaluates to true and another value if the specified condition evaluates to false.static ICfnRuleConditionExpressionFn.conditionNot(ICfnConditionExpression condition) Returns true for a condition that evaluates to false or returns false for a condition that evaluates to true.static ICfnRuleConditionExpressionFn.conditionOr(@NotNull ICfnConditionExpression... conditions) Returns true if any one of the specified conditions evaluate to true, or returns false if all of the conditions evaluates to false. - 
Uses of ICfnRuleConditionExpression in software.amazon.awscdk.services.servicecatalog
Methods in software.amazon.awscdk.services.servicecatalog that return ICfnRuleConditionExpressionModifier and TypeMethodDescriptionTemplateRuleAssertion.getAssertValue()The assertion condition.TemplateRuleAssertion.Jsii$Proxy.getAssertValue()default ICfnRuleConditionExpressionTemplateRule.getCondition()Specify when to apply rule with a rule-specific intrinsic function.TemplateRule.Jsii$Proxy.getCondition()Methods in software.amazon.awscdk.services.servicecatalog with parameters of type ICfnRuleConditionExpressionModifier and TypeMethodDescriptionTemplateRuleAssertion.Builder.assertValue(ICfnRuleConditionExpression assertValue) Sets the value ofTemplateRuleAssertion.getAssertValue()TemplateRule.Builder.condition(ICfnRuleConditionExpression condition) Sets the value ofTemplateRule.getCondition()