java.lang.Object
software.amazon.awssdk.codegen.jmespath.component.AndExpression

public class AndExpression extends Object
An and expression will evaluate to either the left expression or the right expression. If the expression on the left hand side is a truth-like value, then the value on the right hand side is returned. Otherwise the result of the expression on the left hand side is returned. Examples:
  • True invalid input: '&'invalid input: '&' False
  • Number invalid input: '&'invalid input: '&' EmptyList
  • a == `1` invalid input: '&'invalid input: '&' b == `2`
https://jmespath.org/specification.html#and-expressions
  • Constructor Details

  • Method Details

    • leftExpression

      public Expression leftExpression()
    • rightExpression

      public Expression rightExpression()