class AWS::S3::PresignedPost::ConditionBuilder

def is(value)

provided value.
Specifies that the value of the field must equal the
def is(value)
  if @field == :content_length
    self.in(value)
  else
    @post.with_equality_condition(@field, value)
  end
end